══════════════════════════════════════════════════════════════════════════════ Dnotitia Demo API Gateway ══════════════════════════════════════════════════════════════════════════════ Dnotitia's demonstration API gateway for LLM inference. ────────────────────────────────────────────────────────────────────────────── Available endpoints (OpenAI-compatible, Bearer auth required) ────────────────────────────────────────────────────────────────────────────── POST /v1/chat/completions Chat completions (streaming & non-streaming) GET /v1/models List available models GET /metrics Prometheus metrics GET /metrics/requests Running / waiting request gauges ────────────────────────────────────────────────────────────────────────────── Example: ``` $ curl https://llm-api.dnotitia.ai/v1/chat/completions \ -H "Content-Type: application/json" \ -H "Authorization: Bearer dna-router_xxxx" \ -d '{ "model": "DNA3.0-122B-A10B", "messages": [ { "role": "user", "content": "넌 꿈이 뭐니?" } ] }' | jq ``` ────────────────────────────────────────────────────────────────────────────── Made with ❤️ by Dnotitia Inc.