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.
⚡ 10-Second Quickstart (Standard openai Drop-In)
Works instantly with standard Python openai library — no credit card required:
pip install openai pixeloffice-router
from openai import OpenAI
# 1. Point base_url to PixelRouter gateway:
client = OpenAI(
base_url="https://api.pixeloffice.eu/v1",
api_key="px_test_free" # or your px_live_... key from pixeloffice.eu/dashboard.html
)
# 2. Call chat completions with sub-35ms intelligent routing:
response = client.chat.completions.create(
model="blun-auto", # Automatically routes to DeepSeek V3, Qwen Thinking 27B, or Gemini Pro
messages=[
{"role": "system", "content": "You are an expert Python architect."},
{"role": "user", "content": "Write a high-performance asyncio rate limiter in Python"}
]
)
print(response.choices[0].message.content)
🤖 LiteLLM / LangChain / CrewAI Integration
Simply set environment variables to use PixelRouter across your entire AI stack:
import os
from langchain_openai import ChatOpenAI
os.environ["OPENAI_BASE_URL"] = "https://api.pixeloffice.eu/v1"
os.environ["OPENAI_API_KEY"] = "px_test_free"
llm = ChatOpenAI(model="blun-auto")
response = llm.invoke("Summarize key trends in AI Agent orchestration")
print(response.content)
🔑 Get Production API Key & Dashboard Analytics
- Free Sandbox: 50 requests/day included automatically.
- Production Key (1,000 free requests + EU AI Act Certificate): https://pixeloffice.eu/dashboard.html
- Developer Portal: https://pixeloffice.eu/developer
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.2.0.tar.gz.
File metadata
- Download URL: pixeloffice_router-1.2.0.tar.gz
- Upload date:
- Size: 4.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/5.0.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ada368de519ccc453ee8f13db520b5c3fca8d0718d823d954ed014b437c24552
|
|
| MD5 |
9044c12c0926c4b1cb38d108f36cf9fd
|
|
| BLAKE2b-256 |
b434bab3aae4e3ee7f2e85b179cc1e1b1ca3dca8aa309020fbe0bcd0989f8cc1
|