Metadata-Version: 2.4
Name: stevai
Version: 0.1.0
Summary: Official Stevai SDK for Python — call the Stevai network. No third-party AI SDK required.
Project-URL: Homepage, https://stevai.com
Project-URL: Documentation, https://stevai.com/docs
License: MIT
Keywords: ai,assistant,llm,sdk,stevai
Requires-Python: >=3.8
Requires-Dist: requests>=2.25
Description-Content-Type: text/markdown

# stevai

The official Stevai SDK for Python — call the Stevai network with no third-party AI library.

```bash
pip install stevai
```

```python
from stevai import Stevai

stevai = Stevai(api_key="sk_live_...")  # or set STEVAI_API_KEY
res = stevai.chat.completions.create(
    messages=[{"role": "user", "content": "Draft a friendly reminder email."}],
)
print(res["choices"][0]["message"]["content"])
```

Supports chat + streaming, tool calling, images, videos, audio, moderations, and models. HTTPS enforced. Get a key at https://stevai.com/app/keys.
