mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-07-31 20:32:20 +03:00
* chore(rtk): initialize compression roadmap branch * feat(compression): add RTK engine and compression combos Introduce RTK command-aware tool-output compression alongside stacked RTK -> Caveman pipelines for mixed prompt contexts. Add engine registration, declarative RTK filter packs, language-aware Caveman rule loading, compression combo persistence and assignments, analytics grouped by engine/combo, and new MCP/API endpoints for configuration, previews, filters, and combo management. Expose the new capabilities in the dashboard with dedicated Context & Cache pages for Caveman, RTK, and compression combos, and update docs, i18n strings, migrations, and tests to cover the expanded compression surface. * feat(compression): expand RTK DSL, filter catalog, and recovery APIs Add RTK parity features across the compression pipeline, dashboard, and management APIs. This expands the built-in filter catalog, adds trust-gated custom filter loading, inline filter verification, code stripping, smarter detection, and optional redacted raw-output retention for authenticated recovery. Also extend Caveman with file-based multilingual rule packs, localized output-mode instructions, stricter preview/config schemas, engine registry metadata, analytics fields, and broad unit test coverage for RTK, rule loading, and stacked compression behavior. * fix(auth): protect oauth routes and health reset operations Require authenticated dashboard access for OAuth endpoints that can create or import provider connections when login enforcement is enabled. Move `/api/monitoring/health` to the readonly public route list so safe methods remain public while DELETE now returns 401 for anonymous requests. Also update Next.js native `.node` handling to avoid webpack parse failures from external packages such as ngrok and keytar, and add coverage for the new auth behavior. * build(compression): ship RTK rule and filter assets with app bundles Include compression JSON assets in Next output tracing, prepublish copies, and pack artifact policy checks so standalone and packaged builds can load RTK filters and caveman rule packs at runtime. Also harden compression runtime behavior by resolving alternate asset directories, scoping rule cache entries by source path, carrying RTK raw output pointers through stacked runs, degrading oversized preview diffs, and applying combo language/output mode defaults during chat routing. Add coverage for packaging rules, provider-scoped model parsing, smart truncate edge cases, raw output retention, and combo-driven compression behavior. * docs(workflows): update local repo paths to OmniRoute Replace outdated `/home/diegosouzapw/dev/proxys/9router` references with the current `OmniRoute` directory across deploy, release, and version bump workflow guides so local command examples match the renamed repository layout * feat(compression): complete RTK parity coverage * test(build): align next config assertions --------- Co-authored-by: diegosouzapw <diego.souza.pw@gmail.com>
489 lines
20 KiB
Markdown
489 lines
20 KiB
Markdown
# API Reference
|
|
|
|
🌐 **Languages:** 🇺🇸 [English](API_REFERENCE.md) | 🇧🇷 [Português (Brasil)](i18n/pt-BR/API_REFERENCE.md) | 🇪🇸 [Español](i18n/es/API_REFERENCE.md) | 🇫🇷 [Français](i18n/fr/API_REFERENCE.md) | 🇮🇹 [Italiano](i18n/it/API_REFERENCE.md) | 🇷🇺 [Русский](i18n/ru/API_REFERENCE.md) | 🇨🇳 [中文 (简体)](i18n/zh-CN/API_REFERENCE.md) | 🇩🇪 [Deutsch](i18n/de/API_REFERENCE.md) | 🇮🇳 [हिन्दी](i18n/in/API_REFERENCE.md) | 🇹🇭 [ไทย](i18n/th/API_REFERENCE.md) | 🇺🇦 [Українська](i18n/uk-UA/API_REFERENCE.md) | 🇸🇦 [العربية](i18n/ar/API_REFERENCE.md) | 🇯🇵 [日本語](i18n/ja/API_REFERENCE.md) | 🇻🇳 [Tiếng Việt](i18n/vi/API_REFERENCE.md) | 🇧🇬 [Български](i18n/bg/API_REFERENCE.md) | 🇩🇰 [Dansk](i18n/da/API_REFERENCE.md) | 🇫🇮 [Suomi](i18n/fi/API_REFERENCE.md) | 🇮🇱 [עברית](i18n/he/API_REFERENCE.md) | 🇭🇺 [Magyar](i18n/hu/API_REFERENCE.md) | 🇮🇩 [Bahasa Indonesia](i18n/id/API_REFERENCE.md) | 🇰🇷 [한국어](i18n/ko/API_REFERENCE.md) | 🇲🇾 [Bahasa Melayu](i18n/ms/API_REFERENCE.md) | 🇳🇱 [Nederlands](i18n/nl/API_REFERENCE.md) | 🇳🇴 [Norsk](i18n/no/API_REFERENCE.md) | 🇵🇹 [Português (Portugal)](i18n/pt/API_REFERENCE.md) | 🇷🇴 [Română](i18n/ro/API_REFERENCE.md) | 🇵🇱 [Polski](i18n/pl/API_REFERENCE.md) | 🇸🇰 [Slovenčina](i18n/sk/API_REFERENCE.md) | 🇸🇪 [Svenska](i18n/sv/API_REFERENCE.md) | 🇵🇭 [Filipino](i18n/phi/API_REFERENCE.md) | 🇨🇿 [Čeština](i18n/cs/API_REFERENCE.md)
|
|
|
|
Complete reference for all OmniRoute API endpoints.
|
|
|
|
---
|
|
|
|
## Table of Contents
|
|
|
|
- [Chat Completions](#chat-completions)
|
|
- [Embeddings](#embeddings)
|
|
- [Image Generation](#image-generation)
|
|
- [List Models](#list-models)
|
|
- [Compatibility Endpoints](#compatibility-endpoints)
|
|
- [Semantic Cache](#semantic-cache)
|
|
- [Dashboard & Management](#dashboard--management)
|
|
- [Request Processing](#request-processing)
|
|
- [Authentication](#authentication)
|
|
|
|
---
|
|
|
|
## Chat Completions
|
|
|
|
```bash
|
|
POST /v1/chat/completions
|
|
Authorization: Bearer your-api-key
|
|
Content-Type: application/json
|
|
|
|
{
|
|
"model": "cc/claude-opus-4-6",
|
|
"messages": [
|
|
{"role": "user", "content": "Write a function to..."}
|
|
],
|
|
"stream": true
|
|
}
|
|
```
|
|
|
|
### Custom Headers
|
|
|
|
| Header | Direction | Description |
|
|
| ------------------------ | --------- | ------------------------------------------------ |
|
|
| `X-OmniRoute-No-Cache` | Request | Set to `true` to bypass cache |
|
|
| `X-OmniRoute-Progress` | Request | Set to `true` for progress events |
|
|
| `X-Session-Id` | Request | Sticky session key for external session affinity |
|
|
| `x_session_id` | Request | Underscore variant also accepted (direct HTTP) |
|
|
| `Idempotency-Key` | Request | Dedup key (5s window) |
|
|
| `X-Request-Id` | Request | Alternative dedup key |
|
|
| `X-OmniRoute-Cache` | Response | `HIT` or `MISS` (non-streaming) |
|
|
| `X-OmniRoute-Idempotent` | Response | `true` if deduplicated |
|
|
| `X-OmniRoute-Progress` | Response | `enabled` if progress tracking on |
|
|
| `X-OmniRoute-Session-Id` | Response | Effective session ID used by OmniRoute |
|
|
|
|
> Nginx note: if you rely on underscore headers (for example `x_session_id`), enable `underscores_in_headers on;`.
|
|
|
|
---
|
|
|
|
## Embeddings
|
|
|
|
```bash
|
|
POST /v1/embeddings
|
|
Authorization: Bearer your-api-key
|
|
Content-Type: application/json
|
|
|
|
{
|
|
"model": "nebius/Qwen/Qwen3-Embedding-8B",
|
|
"input": "The food was delicious"
|
|
}
|
|
```
|
|
|
|
Available providers: Nebius, OpenAI, Mistral, Together AI, Fireworks, NVIDIA, **OpenRouter**, **GitHub Models**.
|
|
|
|
```bash
|
|
# List all embedding models
|
|
GET /v1/embeddings
|
|
```
|
|
|
|
---
|
|
|
|
## Image Generation
|
|
|
|
```bash
|
|
POST /v1/images/generations
|
|
Authorization: Bearer your-api-key
|
|
Content-Type: application/json
|
|
|
|
{
|
|
"model": "openai/dall-e-3",
|
|
"prompt": "A beautiful sunset over mountains",
|
|
"size": "1024x1024"
|
|
}
|
|
```
|
|
|
|
Available providers: OpenAI (DALL-E, GPT Image 1), xAI (Grok Image), Together AI (FLUX), Fireworks AI, Nebius (FLUX), Hyperbolic, NanoBanana, **OpenRouter**, SD WebUI (local), ComfyUI (local).
|
|
|
|
```bash
|
|
# List all image models
|
|
GET /v1/images/generations
|
|
```
|
|
|
|
---
|
|
|
|
## List Models
|
|
|
|
```bash
|
|
GET /v1/models
|
|
Authorization: Bearer your-api-key
|
|
|
|
→ Returns all chat, embedding, and image models + combos in OpenAI format
|
|
```
|
|
|
|
---
|
|
|
|
## Compatibility Endpoints
|
|
|
|
| Method | Path | Format |
|
|
| ------ | --------------------------- | ---------------------- |
|
|
| POST | `/v1/chat/completions` | OpenAI |
|
|
| POST | `/v1/messages` | Anthropic |
|
|
| POST | `/v1/responses` | OpenAI Responses |
|
|
| POST | `/v1/embeddings` | OpenAI |
|
|
| POST | `/v1/images/generations` | OpenAI |
|
|
| GET | `/v1/models` | OpenAI |
|
|
| POST | `/v1/messages/count_tokens` | Anthropic |
|
|
| GET | `/v1beta/models` | Gemini |
|
|
| POST | `/v1beta/models/{...path}` | Gemini generateContent |
|
|
| POST | `/v1/api/chat` | Ollama |
|
|
|
|
### Dedicated Provider Routes
|
|
|
|
```bash
|
|
POST /v1/providers/{provider}/chat/completions
|
|
POST /v1/providers/{provider}/embeddings
|
|
POST /v1/providers/{provider}/images/generations
|
|
```
|
|
|
|
The provider prefix is auto-added if missing. Mismatched models return `400`.
|
|
|
|
---
|
|
|
|
## Semantic Cache
|
|
|
|
```bash
|
|
# Get cache stats
|
|
GET /api/cache/stats
|
|
|
|
# Clear all caches
|
|
DELETE /api/cache/stats
|
|
```
|
|
|
|
Response example:
|
|
|
|
```json
|
|
{
|
|
"semanticCache": {
|
|
"memorySize": 42,
|
|
"memoryMaxSize": 500,
|
|
"dbSize": 128,
|
|
"hitRate": 0.65
|
|
},
|
|
"idempotency": {
|
|
"activeKeys": 3,
|
|
"windowMs": 5000
|
|
}
|
|
}
|
|
```
|
|
|
|
---
|
|
|
|
## Dashboard & Management
|
|
|
|
### Authentication
|
|
|
|
| Endpoint | Method | Description |
|
|
| ----------------------------- | ------- | --------------------- |
|
|
| `/api/auth/login` | POST | Login |
|
|
| `/api/auth/logout` | POST | Logout |
|
|
| `/api/settings/require-login` | GET/PUT | Toggle login required |
|
|
|
|
### Provider Management
|
|
|
|
| Endpoint | Method | Description |
|
|
| ---------------------------- | --------------------- | ---------------------------------------------- |
|
|
| `/api/providers` | GET/POST | List / create providers |
|
|
| `/api/providers/[id]` | GET/PUT/DELETE | Manage a provider |
|
|
| `/api/providers/[id]/test` | POST | Test provider connection |
|
|
| `/api/providers/[id]/models` | GET | List provider models |
|
|
| `/api/providers/validate` | POST | Validate provider config |
|
|
| `/api/provider-nodes*` | Various | Provider node management |
|
|
| `/api/provider-models` | GET/POST/PATCH/DELETE | Custom models (add, update, hide/show, delete) |
|
|
|
|
### OAuth Flows
|
|
|
|
| Endpoint | Method | Description |
|
|
| -------------------------------- | ------- | ----------------------- |
|
|
| `/api/oauth/[provider]/[action]` | Various | Provider-specific OAuth |
|
|
|
|
### Routing & Config
|
|
|
|
| Endpoint | Method | Description |
|
|
| --------------------- | -------- | ----------------------------- |
|
|
| `/api/models/alias` | GET/POST | Model aliases |
|
|
| `/api/models/catalog` | GET | All models by provider + type |
|
|
| `/api/combos*` | Various | Combo management |
|
|
| `/api/keys*` | Various | API key management |
|
|
| `/api/pricing` | GET | Model pricing |
|
|
|
|
### Usage & Analytics
|
|
|
|
| Endpoint | Method | Description |
|
|
| --------------------------- | ------ | -------------------- |
|
|
| `/api/usage/history` | GET | Usage history |
|
|
| `/api/usage/logs` | GET | Usage logs |
|
|
| `/api/usage/request-logs` | GET | Request-level logs |
|
|
| `/api/usage/[connectionId]` | GET | Per-connection usage |
|
|
|
|
### Settings
|
|
|
|
| Endpoint | Method | Description |
|
|
| ------------------------------- | ------------- | ------------------------- |
|
|
| `/api/settings` | GET/PUT/PATCH | General settings |
|
|
| `/api/settings/proxy` | GET/PUT | Network proxy config |
|
|
| `/api/settings/proxy/test` | POST | Test proxy connection |
|
|
| `/api/settings/ip-filter` | GET/PUT | IP allowlist/blocklist |
|
|
| `/api/settings/thinking-budget` | GET/PUT | Reasoning token budget |
|
|
| `/api/settings/system-prompt` | GET/PUT | Global system prompt |
|
|
| `/api/settings/compression` | GET/PUT | Global compression config |
|
|
|
|
### Context & Compression
|
|
|
|
| Endpoint | Method | Description |
|
|
| -------------------------------------- | -------------- | ------------------------------------------------------------------------ |
|
|
| `/api/compression/preview` | POST | Preview off/lite/standard/aggressive/ultra/RTK/stacked compression |
|
|
| `/api/compression/language-packs` | GET | List available Caveman language packs |
|
|
| `/api/compression/rules` | GET | List Caveman rule metadata |
|
|
| `/api/context/caveman/config` | GET/PUT | Caveman-specific settings alias |
|
|
| `/api/context/rtk/config` | GET/PUT | RTK-specific settings, including custom filters and raw-output retention |
|
|
| `/api/context/rtk/filters` | GET | RTK filter catalog and custom-filter diagnostics |
|
|
| `/api/context/rtk/test` | POST | Run RTK preview/test against a text payload |
|
|
| `/api/context/rtk/raw-output/[id]` | GET | Read retained redacted raw output by pointer id |
|
|
| `/api/context/combos` | GET/POST | Compression combo list/create |
|
|
| `/api/context/combos/[id]` | GET/PUT/DELETE | Compression combo detail/update/delete |
|
|
| `/api/context/combos/[id]/assignments` | GET/PUT | Assign compression combos to routing combos |
|
|
| `/api/context/analytics` | GET | Compression analytics alias |
|
|
|
|
### Monitoring
|
|
|
|
| Endpoint | Method | Description |
|
|
| ------------------------ | ---------- | ---------------------------------------------------------------------------------------------------- |
|
|
| `/api/sessions` | GET | Active session tracking |
|
|
| `/api/rate-limits` | GET | Per-account rate limits |
|
|
| `/api/monitoring/health` | GET | Health check + provider summary (`catalogCount`, `configuredCount`, `activeCount`, `monitoredCount`) |
|
|
| `/api/cache/stats` | GET/DELETE | Cache stats / clear |
|
|
|
|
### Backup & Export/Import
|
|
|
|
| Endpoint | Method | Description |
|
|
| --------------------------- | ------ | --------------------------------------- |
|
|
| `/api/db-backups` | GET | List available backups |
|
|
| `/api/db-backups` | PUT | Create a manual backup |
|
|
| `/api/db-backups` | POST | Restore from a specific backup |
|
|
| `/api/db-backups/export` | GET | Download database as .sqlite file |
|
|
| `/api/db-backups/import` | POST | Upload .sqlite file to replace database |
|
|
| `/api/db-backups/exportAll` | GET | Download full backup as .tar.gz archive |
|
|
|
|
### Cloud Sync
|
|
|
|
| Endpoint | Method | Description |
|
|
| ---------------------- | ------- | --------------------- |
|
|
| `/api/sync/cloud` | Various | Cloud sync operations |
|
|
| `/api/sync/initialize` | POST | Initialize sync |
|
|
| `/api/cloud/*` | Various | Cloud management |
|
|
|
|
### Tunnels
|
|
|
|
| Endpoint | Method | Description |
|
|
| -------------------------- | ------ | ----------------------------------------------------------------------- |
|
|
| `/api/tunnels/cloudflared` | GET | Read Cloudflare Quick Tunnel install/runtime status for the dashboard |
|
|
| `/api/tunnels/cloudflared` | POST | Enable or disable the Cloudflare Quick Tunnel (`action=enable/disable`) |
|
|
| `/api/tunnels/ngrok` | GET | Read ngrok Tunnel runtime status for the dashboard |
|
|
| `/api/tunnels/ngrok` | POST | Enable or disable the ngrok Tunnel (`action=enable/disable`) |
|
|
|
|
### CLI Tools
|
|
|
|
| Endpoint | Method | Description |
|
|
| ---------------------------------- | ------ | ------------------- |
|
|
| `/api/cli-tools/claude-settings` | GET | Claude CLI status |
|
|
| `/api/cli-tools/codex-settings` | GET | Codex CLI status |
|
|
| `/api/cli-tools/droid-settings` | GET | Droid CLI status |
|
|
| `/api/cli-tools/openclaw-settings` | GET | OpenClaw CLI status |
|
|
| `/api/cli-tools/runtime/[toolId]` | GET | Generic CLI runtime |
|
|
|
|
CLI responses include: `installed`, `runnable`, `command`, `commandPath`, `runtimeMode`, `reason`.
|
|
|
|
### ACP Agents
|
|
|
|
| Endpoint | Method | Description |
|
|
| ----------------- | ------ | -------------------------------------------------------- |
|
|
| `/api/acp/agents` | GET | List all detected agents (built-in + custom) with status |
|
|
| `/api/acp/agents` | POST | Add custom agent or refresh detection cache |
|
|
| `/api/acp/agents` | DELETE | Remove a custom agent by `id` query param |
|
|
|
|
GET response includes `agents[]` (id, name, binary, version, installed, protocol, isCustom) and `summary` (total, installed, notFound, builtIn, custom).
|
|
|
|
### Resilience & Rate Limits
|
|
|
|
| Endpoint | Method | Description |
|
|
| ----------------------- | --------- | ---------------------------------------------------------------------------------- |
|
|
| `/api/resilience` | GET/PATCH | Get/update request queue, connection cooldown, provider breaker, and wait settings |
|
|
| `/api/resilience/reset` | POST | Reset provider circuit breakers |
|
|
| `/api/rate-limits` | GET | Per-account rate limit status |
|
|
| `/api/rate-limit` | GET | Global rate limit configuration |
|
|
|
|
### Evals
|
|
|
|
| Endpoint | Method | Description |
|
|
| ------------ | -------- | --------------------------------- |
|
|
| `/api/evals` | GET/POST | List eval suites / run evaluation |
|
|
|
|
### Policies
|
|
|
|
| Endpoint | Method | Description |
|
|
| --------------- | --------------- | ----------------------- |
|
|
| `/api/policies` | GET/POST/DELETE | Manage routing policies |
|
|
|
|
### Compliance
|
|
|
|
| Endpoint | Method | Description |
|
|
| --------------------------- | ------ | ----------------------------- |
|
|
| `/api/compliance/audit-log` | GET | Compliance audit log (last N) |
|
|
|
|
### v1beta (Gemini-Compatible)
|
|
|
|
| Endpoint | Method | Description |
|
|
| -------------------------- | ------ | --------------------------------- |
|
|
| `/v1beta/models` | GET | List models in Gemini format |
|
|
| `/v1beta/models/{...path}` | POST | Gemini `generateContent` endpoint |
|
|
|
|
These endpoints mirror Gemini's API format for clients that expect native Gemini SDK compatibility.
|
|
|
|
### Internal / System APIs
|
|
|
|
| Endpoint | Method | Description |
|
|
| ------------------------ | ------ | ---------------------------------------------------- |
|
|
| `/api/init` | GET | Application initialization check (used on first run) |
|
|
| `/api/tags` | GET | Ollama-compatible model tags (for Ollama clients) |
|
|
| `/api/restart` | POST | Trigger graceful server restart |
|
|
| `/api/shutdown` | POST | Trigger graceful server shutdown |
|
|
| `/api/system/env/repair` | POST | Repair OAuth provider environment variables |
|
|
| `/api/system-info` | GET | Generate system diagnostics report |
|
|
|
|
> **Note:** These endpoints are used internally by the system or for Ollama client compatibility. They are not typically called by end users.
|
|
|
|
### OAuth Environment Repair _(v3.6.1+)_
|
|
|
|
```bash
|
|
POST /api/system/env/repair
|
|
Content-Type: application/json
|
|
|
|
{
|
|
"provider": "claude-code"
|
|
}
|
|
```
|
|
|
|
Repairs missing or corrupted OAuth environment variables for a specific provider. Returns:
|
|
|
|
```json
|
|
{
|
|
"success": true,
|
|
"repaired": ["CLAUDE_CODE_OAUTH_CLIENT_ID", "CLAUDE_CODE_OAUTH_CLIENT_SECRET"],
|
|
"backupPath": "/home/user/.omniroute/backups/env-repair-2026-04-11.bak"
|
|
}
|
|
```
|
|
|
|
---
|
|
|
|
## Audio Transcription
|
|
|
|
```bash
|
|
POST /v1/audio/transcriptions
|
|
Authorization: Bearer your-api-key
|
|
Content-Type: multipart/form-data
|
|
```
|
|
|
|
Transcribe audio files using Deepgram or AssemblyAI.
|
|
|
|
**Request:**
|
|
|
|
```bash
|
|
curl -X POST http://localhost:20128/v1/audio/transcriptions \
|
|
-H "Authorization: Bearer your-api-key" \
|
|
-F "file=@recording.mp3" \
|
|
-F "model=deepgram/nova-3"
|
|
```
|
|
|
|
**Response:**
|
|
|
|
```json
|
|
{
|
|
"text": "Hello, this is the transcribed audio content.",
|
|
"task": "transcribe",
|
|
"language": "en",
|
|
"duration": 12.5
|
|
}
|
|
```
|
|
|
|
**Supported providers:** `deepgram/nova-3`, `assemblyai/best`.
|
|
|
|
**Supported formats:** `mp3`, `wav`, `m4a`, `flac`, `ogg`, `webm`.
|
|
|
|
---
|
|
|
|
## Ollama Compatibility
|
|
|
|
For clients that use Ollama's API format:
|
|
|
|
```bash
|
|
# Chat endpoint (Ollama format)
|
|
POST /v1/api/chat
|
|
|
|
# Model listing (Ollama format)
|
|
GET /api/tags
|
|
```
|
|
|
|
Requests are automatically translated between Ollama and internal formats.
|
|
|
|
---
|
|
|
|
## Telemetry
|
|
|
|
```bash
|
|
# Get latency telemetry summary (p50/p95/p99 per provider)
|
|
GET /api/telemetry/summary
|
|
```
|
|
|
|
**Response:**
|
|
|
|
```json
|
|
{
|
|
"providers": {
|
|
"claudeCode": { "p50": 245, "p95": 890, "p99": 1200, "count": 150 },
|
|
"github": { "p50": 180, "p95": 620, "p99": 950, "count": 320 }
|
|
}
|
|
}
|
|
```
|
|
|
|
---
|
|
|
|
## Budget
|
|
|
|
```bash
|
|
# Get budget status for all API keys
|
|
GET /api/usage/budget
|
|
|
|
# Set or update a budget
|
|
POST /api/usage/budget
|
|
Content-Type: application/json
|
|
|
|
{
|
|
"keyId": "key-123",
|
|
"limit": 50.00,
|
|
"period": "monthly"
|
|
}
|
|
```
|
|
|
|
## Request Processing
|
|
|
|
1. Client sends request to `/v1/*`
|
|
2. Route handler calls `handleChat`, `handleEmbedding`, `handleAudioTranscription`, or `handleImageGeneration`
|
|
3. Model is resolved (direct provider/model or alias/combo)
|
|
4. Credentials selected from local DB with account availability filtering
|
|
5. For chat: `handleChatCore` checks semantic/signature cache and resolves combo compression settings
|
|
6. Proactive compression runs before provider translation when enabled (`lite`, Caveman, RTK, or stacked)
|
|
7. Provider executor sends upstream request
|
|
8. Response translated back to client format (chat) or returned as-is (embeddings/images/audio)
|
|
9. Usage, compression analytics, and request logs are recorded
|
|
10. Fallback applies on errors according to combo rules
|
|
|
|
Full architecture reference: [`ARCHITECTURE.md`](ARCHITECTURE.md)
|
|
|
|
---
|
|
|
|
## Authentication
|
|
|
|
- Dashboard routes (`/dashboard/*`) use `auth_token` cookie
|
|
- Login uses saved password hash; fallback to `INITIAL_PASSWORD`
|
|
- `requireLogin` toggleable via `/api/settings/require-login`
|
|
- `/v1/*` routes optionally require Bearer API key when `REQUIRE_API_KEY=true`
|