File size: 380 Bytes
d34f0ce
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Environment Configuration File
# Copy to .env and customize as needed

# FastAPI Server
ENV_NAME=production
SERVER_HOST=0.0.0.0
SERVER_PORT=8000
RELOAD=false

# Client Configuration
ENV_URL=http://localhost:8000

# LLM Configuration
API_BASE_URL=http://localhost:11434/v1
MODEL_NAME=llama2
HF_TOKEN=

# Logging
LOG_LEVEL=INFO

# Task Configuration
MAX_EPISODES=3
RANDOM_SEED=42