Air-Gapped Mode¶
Air-gapped mode runs Victor without external network calls by using local models, local embeddings, and local storage. It is designed for restricted environments and privacy-sensitive work.
Requirements¶
- Local LLM provider (Ollama, LM Studio, vLLM, llama.cpp)
- Local embedding model for semantic search (optional but recommended)
- Web tools disabled
Quick Setup¶
- Configure a local provider in your profile.
- Set
airgapped_mode: true. - Use a local embedding provider (for example, sentence-transformers or a local server).
- Run a small request to confirm.
Behavior¶
- Web search and remote providers are disabled.
- Tool selection falls back to keyword mode if embeddings are unavailable.
- Performance depends on hardware and model size.
Troubleshooting¶
- Missing tools: try keyword or hybrid tool selection.
- Tool calling format issues: see
TOOL_CALLING_FORMATS.md.