-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
56 lines (49 loc) · 1.98 KB
/
.env.example
File metadata and controls
56 lines (49 loc) · 1.98 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
50
51
52
53
54
55
56
# Environment Variables Template
# Copy this file to .env and fill in your actual values
# DO NOT commit .env to version control
# ========================================
# Opper.ai — single API key for ALL LLM providers
# ========================================
# Get your key at: https://platform.opper.ai/
# Opper routes to 60+ models (OpenAI, Anthropic, Google, Mistral, xAI, etc.)
# through a single key — no more per-provider keys needed.
OPPER_API_KEY=your_opper_api_key_here
# ========================================
# Agent model overrides (optional)
# ========================================
# Override the default model for any agent without restarting the server.
# Format: provider/model-name (must be a valid Opper model string)
# See: https://docs.opper.ai/capabilities/models
#
# AGENT_PLANNER_PRIMARY=anthropic/claude-3-5-sonnet-20241022
# AGENT_PLANNER_FALLBACK=google/gemini-2.0-flash
# AGENT_GENERATOR_PRIMARY=google/gemini-2.0-flash
# AGENT_GENERATOR_FALLBACK=openai/gpt-4o
# AGENT_VALIDATOR_PRIMARY=anthropic/claude-3-5-sonnet-20241022
# AGENT_VALIDATOR_FALLBACK=openai/gpt-4o
# AGENT_ORCHESTRATOR_PRIMARY=anthropic/claude-3-5-sonnet-20241022
# AGENT_ORCHESTRATOR_FALLBACK=google/gemini-2.0-flash
# Deployment environment tag (used in Opper analytics/tracing)
ENV=development
# ========================================
# Redis Configuration
# ========================================
REDIS_HOST=localhost
REDIS_PORT=6379
REDIS_DB=0
REDIS_PASSWORD=
# ========================================
# FreeCAD Configuration
# ========================================
# Path to FreeCAD AppImage or installation directory
# Example AppImage: /home/username/Downloads/FreeCAD_1.0.1-conda-Linux-x86_64-py311.AppImage
# Example system install: /usr/lib/freecad
FREECAD_PATH=/home/vansh5632/Downloads/FreeCAD_1.0.1-conda-Linux-x86_64-py311.AppImage
FREECAD_LIB_PATH=
FREECAD_MOD_PATH=
# Development Settings
DEBUG=false
LOG_LEVEL=INFO
# Session Configuration
SESSION_TIMEOUT=3600
MAX_CONCURRENT_SESSIONS=10