-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
49 lines (40 loc) · 1.21 KB
/
.env.example
File metadata and controls
49 lines (40 loc) · 1.21 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# AIRO Configuration Template
# Kopieren Sie diese Datei zu .env und passen Sie die Werte an
# ===== AI Models =====
# Größere Modelle für komplexe Planung und Reasoning
PROJECT_PLANNER_MODEL=llama3.1:70b
ARCHITECT_MODEL=llama3.1:70b
SECURITY_ANALYZER_MODEL=llama3.1:70b
# Spezialisierte Code-Modelle (empfohlen: DeepSeek Coder, CodeLlama)
CODER_MODEL=deepseek-coder:33b
CODE_REVIEWER_MODEL=codellama:34b
TEST_GENERATOR_MODEL=deepseek-coder:33b
# Dokumentation und Utilities
DOCUMENTATION_MODEL=mistral:7b-instruct
TASKNAMER_MODEL=llama3.1:8b
# ===== Ollama Connection =====
OLLAMA_HOST=http://localhost:11434
OLLAMA_TIMEOUT=300
# ===== Temperature Settings =====
# Niedriger für präzisen Code (0.1-0.3), höher für kreative Tasks (0.7-0.9)
TEMP_PLANNING=0.7
TEMP_CODING=0.2
TEMP_REVIEW=0.3
TEMP_CREATIVE=0.8
# ===== Retry & Error Handling =====
MAX_RETRIES=3
RETRY_DELAY=2
MAX_CORRECTION_ATTEMPTS=3
# ===== Code Quality Tools =====
ENABLE_LINTING=true
ENABLE_TYPE_CHECKING=true
ENABLE_SECURITY_SCAN=true
# ===== Advanced Features =====
ENABLE_STREAMING=true
ENABLE_RAG=false
ENABLE_GIT_INTEGRATION=true
USE_JSON_MODE=true
# ===== Output Configuration =====
OUTPUT_DIR=./generated_projects
LOG_LEVEL=INFO
VERBOSE=false