- run.sh / run.ps1: load an optional .env for host-specific env vars
- .env.example + docs: ComfyUI can run on another host (ROUTER_COMFYUI)
- .gitignore: .env
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
- README: explicit install commands for Ollama (macOS/Linux/Windows) and Python
3.12 per OS; note curl as a run.sh dependency
- setup.sh / setup.ps1: preflight checks that Ollama is installed and reachable
(with install hints if missing); setup.sh also warns if curl is absent
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
- scripts/setup.ps1, scripts/pull-models.ps1, run.ps1 — PowerShell equivalents
of the bash setup/pull/run scripts
- README + docs/DEPLOY.md: Windows quickstart and Task Scheduler autostart
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
A stdlib pre-router in front of Ollama with LiteLLM backend:
- auto model selection by content/tools/modality, with fallbacks
- OpenAI /v1, Anthropic /v1/messages, and Ollama-native /api/* endpoints
- Whisper-shaped /v1/audio/transcriptions + in-chat audio
- key-based fleet policies (e.g. force a client onto uncensored models)
- optional Bearer auth; launchd/systemd service install
- benchmark harnesses (speed, quality, agentic tool use) with sample results
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>