Metadata-Version: 2.4
Name: omnicall
Version: 1.0.0
Summary: Omnicall — 248 LLMs + image/video/voice/music + live crypto/DeFi/markets/web tools in one keyless, pay-per-call endpoint. OpenAI-compatible. No API key, no signup.
Author: Omnicall
License: MIT
Project-URL: Homepage, https://omnicall.gocreativeai.com
Project-URL: Source, https://github.com/gocreativeai/omnicall
Keywords: llm,ai,openai,ai-gateway,x402,omnicall,agent,crypto,pay-per-call,mcp
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Provides-Extra: openai
Requires-Dist: openai>=1.0; extra == "openai"

# omnicall

**Every AI tool your agent needs, in one keyless endpoint.** [Omnicall](https://omnicall.gocreativeai.com) gives you **248 LLMs** (GPT, Claude, Gemini, Grok, DeepSeek, Llama, Qwen, Mistral) plus **image / video / voice / music generation** and **live crypto / DeFi / markets / web / research** tools — OpenAI-compatible, **pay-per-call in USDC** (Base or Solana) via x402, with **no API key and no signup**. Or use a funded `gck_` credit key.

```bash
pip install omnicall
```

```python
import omnicall

# OpenAI-compatible client, already wired to Omnicall  (pip install openai)
client = omnicall.client()
r = client.chat.completions.create(
    model="claude-4-sonnet",
    messages=[{"role": "user", "content": "Hi"}],
)
print(r.choices[0].message.content)

# ...or one free keyless call — no wallet, no key:
print(omnicall.free("say hello in French"))
```

Already using the OpenAI SDK? Just point it at the gateway — zero code changes, 248 models:

```python
from openai import OpenAI
client = OpenAI(base_url="https://omnicall.gocreativeai.com/v1", api_key="x402")
```

## Why Omnicall
- **248 models** vs ~69 elsewhere — one base_url, every frontier model.
- **Keyless & pay-per-call** — USDC on Base or Solana, no account, no monthly fee.
- **More than LLMs** — image/video/voice/music + live crypto/DeFi/markets/web/research, same endpoint.
- **Free tier** to try instantly (`omnicall.free(...)`).

MIT licensed · https://omnicall.gocreativeai.com
