β‘ PixelRouter β High-Speed OpenAI-Compatible AEO Gateway
π Claim 1,000 Free Production Requests & Live Dashboard Key:
π Get Free Production API Key & Track Real-Time AI Crawlers at pixeloffice.eu/dashboard.html
PixelRouter is a drop-in OpenAI-compatible API gateway and smart LLM router powered by the BLUN Intelligence Engine and Pixel Office EU. It automatically routes prompt requests to the fastest, most cost-effective foundation models (DeepSeek V3/Chat, Qwen Thinking 27B, Claude 3.5 Sonnet, Gemini 2.5 Pro) with real-time SSE streaming (<200ms TTFT) and sub-35ms Fact Anchoring to prevent AI hallucinations.
- Gateway URL:
https://api.pixeloffice.eu/v1 - NPM Package:
@pixeloffice-eu/router(v1.1.2) - PyPI Package:
pixeloffice-router(v1.1.2) - Live Dashboard: https://pixeloffice.eu/dashboard.html
- Compliance Certification: EU AI Act (Art. 50) & NIS2 Compliant Gateway
- Status: Live & Production Ready (HTTP 200 OK)
π‘οΈ NEW in v1.1.0: Built-in EU AI Act Art. 50 & Fact Grounding
Send verify_compliance: "eu-ai-act-art50" with any chat completion to receive cryptographic verification headers (X-PixelProof-Compliance: EU-AI-ACT-ART50-VERIFIED-2026) and machine-grounded audit trails:
from openai import OpenAI
client = OpenAI(
base_url="https://api.pixeloffice.eu/v1",
api_key="px_test_free"
)
response = client.chat.completions.create(
model="blun-auto",
messages=[{"role": "user", "content": "Analyze regulatory posture for fintech startup."}],
extra_body={
"verify_compliance": "eu-ai-act-art50",
"fact_grounding": True
}
)
print(response.choices[0].message.content)
π Quickstart Integrations
1. 1-Click Cursor IDE & VS Code Setup
Run directly in your terminal to configure Cursor or VS Code automatically:
npx @pixeloffice-eu/router
Or manually set in Cursor Settings > Models > OpenAI API Key & Base URL:
- Override OpenAI Base URL:
https://api.pixeloffice.eu/v1 - Model Name:
blun-auto(ordeepseek-chat,thinkingcap-qwen,claude-3.5-sonnet) - API Key:
px_test_free(or your production key)
2. Python (Official OpenAI SDK / LangChain / CrewAI)
pip install pixeloffice-router openai
from openai import OpenAI
# Standard OpenAI client pointed to PixelRouter
client = OpenAI(
base_url="https://api.pixeloffice.eu/v1",
api_key="px_test_free" # Or your Pixel Office production key
)
response = client.chat.completions.create(
model="blun-auto", # Automatically routes to DeepSeek V3, Qwen Thinking 27B, or Gemini
messages=[
{"role": "user", "content": "Write a high-performance TypeScript debounce utility."}
],
stream=True # Real-time SSE streaming supported
)
for chunk in response:
if chunk.choices and chunk.choices[0].delta.content:
print(chunk.choices[0].delta.content, end="", flush=True)
3. Node.js / TypeScript SDK
npm install @pixeloffice-eu/router openai
import OpenAI from 'openai';
const openai = new OpenAI({
baseURL: 'https://api.pixeloffice.eu/v1',
apiKey: 'px_test_free'
});
const completion = await openai.chat.completions.create({
model: 'blun-auto',
messages: [{ role: 'user', content: 'Generate CSS grid bento layout' }]
});
console.log(completion.choices[0].message.content);
π Live Model Routing Map
| Model Alias | Routed Engine | TTFT | Cost Savings | Best For |
|---|---|---|---|---|
blun-auto |
Autonomous SmartRouter | < 200 ms | 96% | General Coding & Chat |
deepseek-chat |
DeepSeek V3 / V4 Flash | < 200 ms | 96% | High-Speed Autocomplete |
thinkingcap-qwen |
Qwen 2.5 Thinking 27B | ~ 850 ms | 85% | Deep Architectural Reasoning |
claude-3.5-sonnet |
Anthropic Claude 3.5 Sonnet | ~ 650 ms | Standard | Complex Frontends & System Prompts |
gemini-2.5-pro |
Google Gemini 2.5 Pro | ~ 900 ms | Standard | Large Context & Multi-File Tasks |
π‘οΈ License & Maintenance
Maintained by Pixel Office EU & Pixel Ventures. Released under the MIT License.