Metadata-Version: 2.4
Name: caether
Version: 1.0.0
Summary: Official Python SDK for the CaetherAI API
Project-URL: Homepage, https://caether.ai
Project-URL: Documentation, https://docs.caether.ai
Author: CaetherAI
License: MIT
License-File: LICENSE
Keywords: ai,api,caether,caether-ai,caetherai,llm,sdk
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.8
Requires-Dist: httpx>=0.24.0
Provides-Extra: dev
Requires-Dist: pytest-asyncio>=0.21; extra == 'dev'
Requires-Dist: pytest>=7.0; extra == 'dev'
Requires-Dist: respx>=0.20; extra == 'dev'
Description-Content-Type: text/markdown

# CaetherAI Python SDK

Official Python SDK for the [CaetherAI](https://caether.ai) API. Synchronous and asynchronous
clients with a unified interface across products.

## Installation

```bash
pip install caether
```

## Quickstart

```python
import os
from caether import Client
from caether.chat import user, system

client = Client(api_key=os.getenv("CAETHER_API_KEY"))

chat = client.chat.create(model="caether-1.1")
chat.append(system("You are Caether, an AI agent built to answer helpful questions."))
chat.append(user("How big is the universe?"))
response = chat.sample()

print(response)
print(response.id)
```

See [docs.caether.ai](https://docs.caether.ai) for full documentation.
