Metadata-Version: 2.4
Name: orbigpu
Version: 0.0.1
Summary: OrbiGPU — Unified OpenAI-compatible API gateway for 100+ LLM models. Official SDK coming in v0.1.0.
Author: OrbiGPU
License: MIT
Project-URL: Homepage, https://orbigpu.com
Project-URL: Documentation, https://orbigpu.com/docs
Keywords: llm,ai,openai,anthropic,gpt,claude,deepseek,api,orbigpu
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# OrbiGPU

**Unified OpenAI-compatible API gateway for 100+ LLM models from 15+ providers.**

Official website: [https://orbigpu.com](https://orbigpu.com)

## Status

**v0.0.1 is a reserved placeholder.** The full Python SDK will be released in v0.1.0+.

## Coming in v0.1.0

- OpenAI-compatible `OrbiGPU()` and `AsyncOrbiGPU()` clients
- Drop-in replacement for `openai.OpenAI` — just change `base_url`
- Access 100+ models from OpenAI, Anthropic, DeepSeek, Google, Groq, Zhipu, and more
- $10 free credits on signup at [orbigpu.com](https://orbigpu.com)

## Quickstart (available in v0.1.0+)

```python
from orbigpu import OrbiGPU

client = OrbiGPU(api_key="sk-your-key-from-orbigpu-dot-com")
response = client.chat.completions.create(
    model="deepseek-chat",
    messages=[{"role": "user", "content": "Hello"}],
)
```

## License

MIT © OrbiGPU
