AllCodex Core (database)
These variables configure database paths, ports, and startup credentials.AllKnower (parsing brain)
These variables configure database models, connections, OpenRouter keys, and model selections.System settings
Web push and email notifications
Override the default models for specific tasks. Each task supports a primary model and up to three fallback models.
- Fallback syntax: Append
_FALLBACK_1,_FALLBACK_2, or_FALLBACK_3to any model key (e.g.BRAIN_DUMP_MODEL_FALLBACK_1=google/gemini-2.5-pro). - Auto route: Set
USE_OPENROUTER_AUTO=trueto let OpenRouter automatically select the best model for all tasks.
Local model providers
AllKnower can route any parser or embedding task to a local OpenAI-compatible server such as Ollama, LM Studio, or vLLM. This lets you run AllCodex fully offline or mix local and cloud models in the same fallback chain. To send a task to your local provider, prefix the model name withollama/ or local/. AllKnower strips the prefix before calling the local server and automatically removes OpenRouter-only fields (models, plugins, provider) so requests stay compatible.
Local models participate in the same fallback chain as cloud models. You can lead with a local model and fall back to a cloud model when the local server is offline, or the reverse.