Metadata-Version: 2.4
Name: vibesort
Version: 0.1.1
Summary: Sorting library that uses GPT to sort arrays
Author-email: Aziz Berkay Yesilyurt <abyesilyurt@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

# Vibesort

AI-powered array sorting using GPT.

## Usage

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

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

```python
from vibesort import vibesort

result = vibesort([5, 2, 8, 1, 9])
print(result)  # [1, 2, 5, 8, 9]
```

## Test

```bash
pytest tests/
```

## Dependencies

- openai
- pydantic  
- typing-extensions

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