Metadata-Version: 2.4
Name: proxyllm-sdk
Version: 0.1.0
Summary: Python client for the ProxyLLM OpenAI-compatible gateway.
Author: ProxyLLM
License: MIT
Keywords: proxyllm,openai,llm
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# ProxyLLM Python SDK

```python
from proxyllm import ProxyLLMClient

client = ProxyLLMClient(api_key="pk_...")

completion = client.chat.completions.create(
    model="gpt-4o-mini",
    messages=[{"role": "user", "content": "Say hello."}],
)
```

Set `PROXYLLM_BASE_URL` to override the default `https://proxyllm.ericslab.ai/v1`.
