-
-
Notifications
You must be signed in to change notification settings - Fork 144
Expand file tree
/
Copy pathenv.example
More file actions
29 lines (23 loc) · 761 Bytes
/
env.example
File metadata and controls
29 lines (23 loc) · 761 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
# AI Services
GEMINI_API_KEY=your_gemini_api_key_here
TAVILY_API_KEY=your_tavily_api_key_here
# Platform Integrations
DISCORD_BOT_TOKEN=your_discord_bot_token_here
GITHUB_TOKEN=your_github_token_here
# Database
SUPABASE_URL=your_supabase_url_here
SUPABASE_KEY=your_supabase_anon_key_here
# Backend Configuration
BACKEND_URL=http://localhost:8000
# LangSmith Tracing (optional - for development)
LANGSMITH_TRACING=false
LANGSMITH_API_KEY=your_langsmith_api_key_here
LANGSMITH_PROJECT=DevR_AI
# RabbitMQ (optional - uses default if not set)
RABBITMQ_URL=amqp://localhost:5672/
# Agent Configuration (optional)
DEVREL_AGENT_MODEL=gemini-2.5-flash
GITHUB_AGENT_MODEL=gemini-2.5-flash
CLASSIFICATION_AGENT_MODEL=gemini-2.0-flash
AGENT_TIMEOUT=30
MAX_RETRIES=3