Metadata-Version: 2.4
Name: rephrase
Version: 0.1.1
Summary: A command-line tool to rephrase text in different styles using OpenAI's API.
Project-URL: Homepage, https://github.com/jayson-panganiban/rephrase
Project-URL: Source, https://github.com/jayson-panganiban/rephrase
Author-email: Jayson Panganiban <jsoncp@proton.me>
License: MIT License
License-File: LICENSE
Requires-Python: >=3.11
Requires-Dist: openai>=1.64.0
Requires-Dist: typer>=0.15.1
Description-Content-Type: text/markdown

# Rephrase

A command-line tool to rephrase text in different styles (`normal` (default), `casual`, `formal`, `academic`, or `filipino` taglish for some 🧂) using OpenAI's API.

## Installation

### Prerequisites
- Python 3.11 or higher
- An [OpenAI API key](https://platform.openai.com/api-keys)

### Steps
1. **Install via pip**  
   ```bash
   $ pip install rephrase
   ```

2. **Set Your OpenAI API Key** 
   ```bash
   $ export OPENAI_API_KEY="your-api-key-here"
   ```

   Add it to your .bashrc, .zshrc, or equivalent to persist it.

## Usage   

### Basic command
```bash
$ rephrase "The meeting is scheduled for tomorrow."
```

### Available Styles
- `--style normal` (default): Clear and natural rephrasing.
- `--style casual`: Relaxed and informal tone.
- `--style formal`: Polite and professional wording.
- `--style academic`: Precise and scholarly language.
- `--style filipino`: Taglish (Filipino-English mix).


## Examples

Here are some sample inputs and outputs to demonstrate how `rephrase` works with different styles:

| Command                                             | Output (example)                                 |
| --------------------------------------------------- | ------------------------------------------------ |
| `$ rephrase "I'm tired after work."`                | "I'm exhausted from work."                       |
| `$ rephrase "I'm tired after work." --style casual` | "I'm wiped out after work"                       |
| `$ rephrase "I'm tired after work." --style formal` | "I find myself fatigued following work."         |
| `$ rephrase "I'm tired after work." -s academic`    | "I experience fatigue subsequent to my workday." |
| `$ rephrase "I'm tired after work." -s filipino`    | "Pagod na ako after work."                       |

## Help

See all options:
```bash
rephrase --help
```