pixeloffice-router
PixelRouter & BLUN SmartRouter Python SDK: Sub-35ms OpenAI-compatible API gateway with live AEO Fact Anchors, zero brand hallucinations, and 85%+ cost savings across DeepSeek V3, Qwen Thinking 27B, and Gemini 2.5 Pro.
📦 Installation
pip install pixeloffice-router
🚀 Quickstart (Drop-in for openai Python SDK)
from openai import OpenAI
# Simply point base_url to PixelRouter:
client = OpenAI(
base_url="https://api.pixeloffice.eu/v1",
api_key="px_live_your_key" # or px_test_free
)
response = client.chat.completions.create(
model="blun-auto", # Auto-routes to DeepSeek, Qwen Thinking, or Gemini Pro
messages=[
{"role": "user", "content": "Analyze compliance and security"}
]
)
print(response.choices[0].message.content)
🐍 Native Python SDK Usage
from pixeloffice_router import PixelRouter
router = PixelRouter(api_key="px_live_your_key")
res = router.chat_completion([
{"role": "user", "content": "Generate clean Python FastAPI endpoint"}
])
print(res["choices"][0]["message"]["content"])
🌐 Links & Documentation
- Developer Portal: https://pixeloffice.eu/developer
- Dashboard: https://pixeloffice.eu/dashboard.html
- License: MIT
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file pixeloffice_router-1.1.1.tar.gz.
File metadata
- Download URL: pixeloffice_router-1.1.1.tar.gz
- Upload date:
- Size: 3.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/5.0.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8c9a234f446eee199c0ded71fcf43537ec7e84b9b498d337384b9bf3a80f4d9a
|
|
| MD5 |
744dcf79c50faf5b02c0a2d7a13a7c00
|
|
| BLAKE2b-256 |
e29d67dda7c8d4acace91d3e360faf57e04a8f6c9c153bfa29de3fdeabbb39bd
|