Metadata-Version: 2.1
Name: pixeloffice-router
Version: 1.1.0
Summary: Drop-in OpenAI compatible gateway SDK with EU AI Act Art. 50 compliance verification, sub-35ms AEO Fact Anchors & BLUN SmartRouter Engine.
Home-page: https://pixeloffice.eu/developer
Author: Pixel Office & Pixel Ventures
Author-email: support@pixeloffice.eu
License: UNKNOWN
Description: # 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
        
        ```bash
        pip install pixeloffice-router
        ```
        
        ---
        
        ## 🚀 Quickstart (Drop-in for `openai` Python SDK)
        
        ```python
        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
        
        ```python
        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](https://pixeloffice.eu/developer)
        - **Dashboard:** [https://pixeloffice.eu/dashboard.html](https://pixeloffice.eu/dashboard.html)
        - **License:** MIT
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.8
Description-Content-Type: text/markdown
