Metadata-Version: 2.1
Name: ayaya
Version: 0.1.0
Summary: Kamisato Ayaya for AI text generation
Author: billiez
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: openai>=1.0

```markdown
# ayaya

Python package for interacting with NVIDIA's AI API

## Installation

```bash
pip install ayaya
```

## Usage

### Basic Usage
```python
import ayaya

# Default usage
ayaya()

# Generate AI response with default model
ayaya(prompt="Tell me about AI")

```

### Advanced Usage
```python
import ayaya

# Custom model and parameters
response = ayaya(
    model="meta/llama3-70b-instruct",
    prompt="Explain quantum computing",
    temperature=0.7,
    max_tokens=1024,
    stream=False
)
```

## Parameters

- `model` (str): AI model to use (default: "deepseek-ai/deepseek-r1-distill-qwen-7b")
- `prompt` (str): Your query for the AI (returns Craftguy info if None)
- `temperature` (float): Controls randomness (0.0-1.0)
- `top_p` (float): Controls diversity (0.0-1.0) 
- `max_tokens` (int): Maximum length of response
- `stream` (bool): Stream response if True

## Requirements

- Python 3.6+
- `openai` package
