🤖 AI Router

OpenAI-compatible API router for Fatal Creations

Authentication Required
This is not an open node. All API requests require a valid AILLM API key from Gitea.

API Endpoints

POST /v1/chat/completions Chat completions
GET /v1/models List available models
GET /health Health check

Quick Start

Use your AILLM API key from Gitea:

curl https://ai.fatalcreations.com/v1/chat/completions \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model": "local", "messages": [{"role": "user", "content": "Hello!"}]}'