-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
44 lines (35 loc) · 948 Bytes
/
.env.example
File metadata and controls
44 lines (35 loc) · 948 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
33
34
35
36
37
38
39
40
41
42
43
44
# Spatial Lab - Environment Configuration Template
# AI Provider API Keys
GOOGLE_API_KEY=your_google_gemini_key_here
OPENAI_API_KEY=your_openai_key_here
ANTHROPIC_API_KEY=your_anthropic_key_here
# Atroposlib Configuration
ATROPOSLIB_API_KEY=your_atroposlib_key_here
# Weights & Biases (Experiment Tracking)
WANDB_API_KEY=your_wandb_key_here
WANDB_PROJECT=spatial-lab
WANDB_ENTITY=your_entity_here
# Robot Fleet Configuration
MAX_ROBOTS=10
COMMUNICATION_RANGE=5.0
DEFAULT_ROBOT_SPEED=1.0
COLLISION_AVOIDANCE_ENABLED=true
# Path Planning
PATH_PLANNING_ALGORITHM=astar
GRID_RESOLUTION=0.1
MAX_PATH_LENGTH=1000
# LLM Configuration
DEFAULT_LLM_MODEL=gemini-pro
LLM_TEMPERATURE=0.7
LLM_MAX_TOKENS=2048
LLM_TIMEOUT=30
# Performance Monitoring
METRICS_COLLECTION_INTERVAL=1.0
PERFORMANCE_LOG_PATH=logs/performance.log
# Logging
LOG_LEVEL=INFO
LOG_FORMAT=json
LOG_FILE=logs/spatial-lab.log
# Development
DEV_MODE=true
DEBUG_SPATIAL_REASONING=false