Metadata-Version: 2.4
Name: az-gateway
Version: 0.0.1
Summary: Reserved namespace for the upcoming Global AI Gateway Python SDK. Real release coming soon — do not depend on this package yet.
Project-URL: Homepage, https://github.com/alona-zubenko/global-ai-gateway
Project-URL: Repository, https://github.com/alona-zubenko/global-ai-gateway
Author-email: Alona Zubenko <platmargo@gmail.com>
License: MIT
Keywords: ai,gateway,placeholder,reserved
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# az-gateway

> ⚠️ **Namespace reserved.** This package is a placeholder while the real
> Python SDK for [Global AI Gateway](https://github.com/alona-zubenko/global-ai-gateway)
> is being prepared.
>
> The first usable release will be **0.1.0**. Until then, **do not install
> this package** — `import az_gateway` raises `RuntimeError`.
>
> Track progress: https://github.com/alona-zubenko/global-ai-gateway

## What is Global AI Gateway?

A B2B AI routing layer with multi-provider fallback, privacy modes, RAG,
batch API, EU residency, and OpenAI-compatible `/v1/chat/completions`.
The Python SDK lets you replace OpenAI's SDK with one line:

```python
# Coming in 0.1.0:
from az_gateway import GatewayClient
gw = GatewayClient(api_key="...")
resp = gw.chat.completions.create(
    model="az-auto",
    messages=[{"role": "user", "content": "hi"}],
)
```

## License

MIT
