Metadata-Version: 2.4
Name: babyapi
Version: 0.0.2
Summary: Official Python client for BabyAPI.org
Project-URL: Homepage, https://babyapi.org
Project-URL: Source, https://github.com/your-org/babyapi-python
Author-email: "BabyAPI.org" <agustin@babyapi.org>
License: MIT
Requires-Python: >=3.9
Requires-Dist: requests>=2.31.0
Description-Content-Type: text/markdown

# babyapi (Python)

Official Python client for [BabyAPI.org](https://babyapi.org).

```python
from babyapi import BabyAPI

client = BabyAPI(api_key="YOUR_KEY")  # or set BABYAPI_API_KEY

text = client.call_llm(
    model="mistral",
    prompt="Explain BabyAPI in one line."
)
print(text)
```