Metadata-Version: 2.4
Name: ai-prophet-core
Version: 0.0.1
Summary: Prophet Arena SDK core types and HTTP client
Author: Simon Mahns
License: 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
# From repository root
python -m pip install -e packages/core
```

PyPI publishing is not enabled yet for this package.

## Quickstart

```python
from ai_prophet_core.client import ServerAPIClient

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