Metadata-Version: 2.4
Name: hydracept
Version: 0.1.4
Summary: One API for AI workloads in games — Python client and CLI for Hydracept (BYOK, durable jobs, receipts).
Author: Zencode
License: MIT
Project-URL: Homepage, https://hydracept.com
Project-URL: Documentation, https://docs.hydracept.com
Project-URL: Repository, https://github.com/hydracept/hydracept-public
Project-URL: Issues, https://github.com/hydracept/hydracept-public/issues
Project-URL: Changelog, https://docs.hydracept.com
Keywords: hydracept,game,gamedev,unity,unreal,ai,llm,image-generation,audio,byok,api,cli
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Games/Entertainment
Classifier: Topic :: Software Development :: Libraries
Classifier: Typing :: Typed
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: httpx>=0.27.0
Requires-Dist: typer>=0.15.0
Requires-Dist: rich>=13.9.0
Requires-Dist: PyYAML>=6.0

# hydracept

Python client and CLI for the Hydracept public API — **one API for AI workloads in games**.

Free for individual developers. BYOK. No inference markup.

```bash
pip install hydracept
```

## Activate (CLI)

```bash
python -m hydracept login
python -m hydracept init --apply --yes
python -m hydracept doctor
```

## Copy-paste job

```python
from hydracept import HydraceptClient

client = HydraceptClient("https://api.hydracept.com", token="...")
job = client.submit_capability_job(
    "image.generate.v1",
    {
        "context": {
            "productId": "my-game",
            "projectId": "cpr_...",
            "environment": "development",
        },
        "input": {"prompt": "cute slime icon, flat game art"},
        "execution": {"executionPreference": "automatic"},
        "idempotencyKey": "demo-1",
    },
)
print(job["jobId"])
```

Activate at https://hydracept.com/start · Docs: https://docs.hydracept.com

A Zencode product · © Zencode Consulting Inc.
