-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
32 lines (23 loc) · 895 Bytes
/
.env.example
File metadata and controls
32 lines (23 loc) · 895 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
29
30
31
32
# AI Builder Environment Variables
# Global LLM selection (optional)
# AI_PROVIDER=ollama
# AI_MODEL=llama3
# Agent thread pool sizes (optional)
# CUSTOMER_AGENT_THREADS=1
# GENERATION_AGENT_THREADS=5
# METHODOLOGY_AGENT_THREADS=5
# COMPOSITION_AGENT_THREADS=1
# Runtime output directory (optional)
# RUNTIME_OUTPUT_DIR=./output/runtime
# Safety mode (optional): disable merge to main during validation/smoke runs
# ORCHESTRATOR_DISABLE_MERGE=1
# Component cache directory (optional)
# COMPONENT_LIBRARY_PATH=./output/components
# OpenAI API Key (Required for gpt-4o generation)
# OPENAI_API_KEY=your-openai-api-key-here
# Google Gemini API Key (Optional alternative)
# GOOGLE_API_KEY=your-google-api-key-here
# Ollama Host (Optional, defaults to localhost:11434)
# OLLAMA_HOST=http://localhost:11434
# Ollama request timeout seconds (optional, default: 45)
# OLLAMA_TIMEOUT_SECONDS=45