Metadata-Version: 2.1
Name: TamilAI
Version: 0.0.2
Summary: An AI assistant that responds in Tamil
License: MIT
Author: Mervin Praison
Requires-Python: >=3.9,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: click (>=8.1.7,<9.0.0)
Requires-Dist: openai (>=1.54.3,<2.0.0)
Requires-Dist: python-dotenv (>=1.0.1,<2.0.0)
Description-Content-Type: text/markdown

# TamilAI

A command-line AI assistant that responds in Tamil using OpenAI's API.

## Installation

### Using Poetry (Recommended)

```bash
poetry install
```

### Using pip

```bash
pip install -r requirements.txt
```

## Usage

```bash
# If installed with Poetry
tamilai "your question here"

# If installed with pip
python -m tamilai.cli "your question here"
```

## Requirements

```bash
- Python 3.9 or higher
- OpenAI API key
```

## Example

```bash
tamilai "How are you?"
# Will respond with Tamil text
```

## Features

- Natural Tamil language responses
- Command-line interface
- Powered by OpenAI's GPT models
- Context-aware conversations

## Configuration

1. Get an OpenAI API key from https://platform.openai.com/
2. Create a `.env` file and add:
```
OPENAI_API_KEY=your_api_key_here
```

## License

MIT License
