Metadata-Version: 2.4
Name: gocreative
Version: 0.2.0
Summary: Python SDK for GoCreative — a 17-model frontier LLM gateway + 350+ data/compliance tools for AI agents. Pay-per-call USDC on Base via x402, no API key.
Author-email: Colin Hughes <contact@gocreativeai.com>
License: MIT
Project-URL: Homepage, https://api.gocreativeai.com
Project-URL: Repository, https://github.com/ColinHughes2121/gocreative-agent-api
Project-URL: Model catalog, https://api.gocreativeai.com/v1/ai/models
Keywords: x402,llm,ai-agents,mcp,usdc,base,llm-gateway,pay-per-call
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: httpx>=0.24
Provides-Extra: pay
Requires-Dist: x402>=2.0; extra == "pay"
Requires-Dist: eth-account>=0.10; extra == "pay"

# gocreative

Python SDK for **GoCreative** — a 17-model frontier **LLM gateway** (GPT-5, Claude 4.5, Gemini 3, DeepSeek, and more) plus **350+ data, compliance & enrichment tools** for AI agents. Pay per call in **USDC on Base** via [x402](https://www.x402.org/). No API key. No signup.

```bash
pip install gocreative          # discovery + calls
pip install 'gocreative[pay]'   # + USDC autopay on Base
```

```python
from gocreative import GoCreative

gc = GoCreative()                 # no wallet needed for discovery
print(gc.models())                # full model menu (free)

# With a funded Base wallet, paid calls settle automatically:
gc = GoCreative(wallet_key="0xYOUR_BASE_KEY")
print(gc.ask("Summarize x402 in one sentence", model="gpt-5-mini"))   # $0.02
print(gc.pro("Compare these two architectures ...", model="claude"))  # $0.08
print(gc.call("/v1/data/sanctions-screen/Gazprom"))                   # $0.15
```

Without a wallet, paid calls raise `PaymentRequired` carrying the exact on-chain
price and `payTo` address, so you can settle with your own x402 layer.

**Also available as an MCP server** (357 tools, one-line install):

```bash
claude mcp add gocreative --transport http https://api.gocreativeai.com/mcp
```

- API: https://api.gocreativeai.com
- Model catalog: https://api.gocreativeai.com/v1/ai/models
- Repo: https://github.com/ColinHughes2121/gocreative-agent-api

MIT licensed.
