-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.copilot
More file actions
28 lines (23 loc) · 748 Bytes
/
.env.copilot
File metadata and controls
28 lines (23 loc) · 748 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# LLMscope AI Copilot Configuration
# Ollama Connection
COPILOT_OLLAMA_URL=http://localhost:11434
COPILOT_MODEL=llama3.2:3b
COPILOT_FALLBACK_MODEL=llama3.2:1b
# Copilot Features
COPILOT_ENABLED=true
COPILOT_AUTO_EXPLAIN=false
COPILOT_CACHE_EXPLANATIONS=true
COPILOT_MAX_RESPONSE_LENGTH=500
# Performance Settings
COPILOT_TIMEOUT_SECONDS=30
COPILOT_TEMPERATURE=0.2
COPILOT_MAX_TOKENS=400
# UI Settings
COPILOT_AUTO_OPEN=false
COPILOT_TYPING_ANIMATION=true
COPILOT_REFRESH_INTERVAL=30
# Model Recommendations by Use Case
# Fast & Lightweight: llama3.2:1b (best for basic explanations)
# Balanced: llama3.2:3b (recommended default)
# High Quality: qwen2.5:7b (slower but more detailed)
# Specialized: codellama:7b (good for technical remediation)