-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
28 lines (21 loc) · 906 Bytes
/
.env.example
File metadata and controls
28 lines (21 loc) · 906 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
# Raid System Configuration
# Copy this file to .env and fill in your values
# LLM Backend Configuration
RAID_LLM_PROVIDER=openai # or "ollama"
# OpenAI Configuration (if using OpenAI)
OPENAI_API_KEY=your_openai_api_key_here
RAID_OPENAI_MODEL=gpt-4o # or gpt-3.5-turbo, gpt-4, etc.
# Ollama Configuration (if using Ollama)
RAID_OLLAMA_URL=http://localhost:11434
RAID_OLLAMA_MODEL=qwen3:30b # or llama2, codellama, etc.
# Redis Configuration
RAID_REDIS_HOST=localhost
RAID_REDIS_PORT=6379
RAID_REDIS_DB=0
RAID_REDIS_PASSWORD= # optional
# Docker Configuration
RAID_DOCKER_SOCKET=unix://var/run/docker.sock
# Dynamic Sub-Agent Configuration
RAID_MAX_DYNAMIC_SUB_AGENTS=5 # Maximum number of dynamic Sub-Agents that can be created
# Web Search Configuration (Optional - for enhanced search capabilities)
SERP_API_KEY= # Optional: SerpAPI key for enhanced web search results (https://serpapi.com/)