Metadata-Version: 2.4
Name: aether-ai-sdk
Version: 0.2.1
Summary: Official Python SDK for Aether AI (https://aiaether.ai.studio) - Chat with AI models via streaming API.
Project-URL: Homepage, https://aiaether.ai.studio
Project-URL: Documentation, https://aiaether.ai.studio
Project-URL: Repository, https://pypi.org/project/aether-ai-sdk
License: MIT
Requires-Python: >=3.10
Requires-Dist: httpx<1,>=0.27
Requires-Dist: pydantic<3,>=2.7
Provides-Extra: dev
Requires-Dist: mypy>=1.10; extra == 'dev'
Requires-Dist: pytest-asyncio>=0.23; extra == 'dev'
Requires-Dist: pytest>=8; extra == 'dev'
Requires-Dist: ruff>=0.6; extra == 'dev'
Description-Content-Type: text/markdown

# Aether AI SDK

Official Python SDK for [Aether AI](https://aiaether.ai.studio).

## Install

```bash
pip install aether-ai-sdk
```

## Usage

```python
from aether_ai_sdk import AI

client = AI(api_key="your-key")
response = client.chat.create(
    model="DeepSeek-R1-Distill-Llama-8B-OpenSource",
    messages=[{"role": "user", "content": "Hello"}]
)
print(response.output_text)
```

## Links

- Website: https://aiaether.ai.studio
- PyPI: https://pypi.org/project/aether-ai-sdk

## License

MIT