🚀 ZAIA Gateway

Welcome to the API Gateway! All external APIs are proxied through this gateway.

📡 Gateway Endpoints

Gateway Documentation: /docs

Health Check: /api/healthz

Performance Tests:

🌐 External APIs (3 configured)

🔗 ZAIA Core API /core/

Main ZAIA backend API for tasks, environments, and users

📚 View Docs 📄 OpenAPI Spec

🔗 ZAIA LLM Service /llm-service/

LLM service for AI-powered features and prompt processing

📚 View Docs 📄 OpenAPI Spec

🔗 ZAIA Legacy API /legacy/

Legacy ZAIA Core API (older version)

📚 View Docs 📄 OpenAPI Spec

➕ How to Add More APIs

Edit EXTERNAL_APIS in gateway/app/main.py:

EXTERNAL_APIS = {
    "your-api": {
        "name": "Your API Name",
        "base_url": "https://your-api.com",
        "api_path": "/api/v1",
        "description": "Description of your API"
    }
}
        

Restart the gateway and your new API will be available at /your-api/docs automatically! ✨