Settings
Manage system configuration and parameters
Loading settings…
π§ Default Models
Navigation
π€ LLM Parameters
Configuration Sections
π Default Models Health
Shows health for current defaults: LLM and Embeddings
π API Usage Examples
π‘ Performance Tip: Use
skip_knowledge_base: true for faster responses on general questions or when you want instant answers without document search.
π Normal RAG (with Knowledge Base)
Searches documents first, then answers (default behavior){
"question": "What can you tell me about yourself?",
"skip_knowledge_base": false,
"history": []
}
β±οΈ ~2-3 seconds (includes document search)
β‘ Fast Mode (Skip Knowledge Base)
Direct LLM response without document search{
"question": "What can you tell me about yourself?",
"skip_knowledge_base": true,
"history": []
}
β±οΈ ~0.5-1 second (direct LLM response)
π Parameter Details:
skip_knowledge_base:boolean(default:false) - Set totrueto bypass document search- When true: No fetchers are used, direct LLM call for instant responses
- When false: Normal RAG flow with document search and context building
π Raw Configuration JSON
For debugging - shows the actual config data being usedπ Click to show/hide raw config JSON
config.to_dict() result (cached):
Loading…
Fresh object attributes (current):
Loading…
Use these to test if config reloading is working