Metadata-Version: 2.4
Name: vibetrimright
Version: 0.1.1
Summary: String right-trimming library that uses GPT to remove trailing whitespace
Author-email: Taha Parker <tahayparker@gmail.com>
License-File: LICENSE
Requires-Python: >=3.10
Requires-Dist: openai>=1.95.1
Requires-Dist: pydantic>=2.11.7
Requires-Dist: typing-extensions>=4.14.1
Description-Content-Type: text/markdown

# vibetrimright

AI-powered string right-trimming using GPT.

## Usage

Install the package:
```bash
pip install vibetrimright
```

Set your OpenAI API key as an environment variable.
```bash
export OPENAI_API_KEY=your_key_here
```

```python
from vibetrimright import vibetrimright

result = vibetrimright("hello world   ")
print(repr(result))  # 'hello world'
```

## Test

```bash
pytest tests/
```

## Dependencies

- openai
- pydantic
- typing-extensions

⚠️ Requires OpenAI API key. Experimental project - not for production use.

## DISCLAIMER
Will not work half the time :) Enjoy!