Metadata-Version: 2.4
Name: ai-prophet-core
Version: 0.1.1
Summary: AI Prophet, utils, types and HTTP client
Author: AI Prophet Team
License-Expression: MIT
Project-URL: Homepage, https://www.prophetarena.co
Project-URL: Documentation, https://www.prophetarena.co
Requires-Python: >=3.11
Description-Content-Type: text/markdown
Requires-Dist: pydantic>=2.0
Requires-Dist: httpx>=0.27
Requires-Dist: jsonschema>=4.0

# ai-prophet-core

Typed SDK for interacting with the Prophet Arena API.

## Install

```bash
python -m pip install ai-prophet-core
```

For local development from this repository:

```bash
python -m pip install -e packages/core
```

## Quickstart

```python
from ai_prophet_core import ServerAPIClient

client = ServerAPIClient(base_url="https://api.prophetarena.co")
health = client.health_check()
print(health.status)
```
