-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
34 lines (28 loc) · 776 Bytes
/
.env.example
File metadata and controls
34 lines (28 loc) · 776 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
# API Configuration
API_URL=http://188.119.67.226:8000
# LLM Configuration
DEEPSEEK_API_KEY=your_deepseek_api_key_here
DEEPSEEK_BASE_URL=https://api.deepseek.com
LLM_MODEL=deepseek-chat
# Agent Configuration
UI_AGENT_INDEX=0
DB_AGENT_INDEX=1
DT_AGENT_INDEX=2
UI_AGENT_MODEL=models/SmolLM3-3B
DB_AGENT_MODEL=models/SmolLM3-3B
DT_AGENT_MODEL=models/QwenCoder-30B
# Database Configuration
POSTGRES_USER=postgres
POSTGRES_PASSWORD=admin
POSTGRES_DB=llm_agents
POSTGRES_HOST=localhost
POSTGRES_PORT=5432
# Grafana Configuration
GRAFANA_ADMIN_PASSWORD=admin
GRAFANA_ADMIN_USER=admin
# Application Configuration
LOG_LEVEL=INFO
DEBUG=False
# Streamlit Configuration
STREAMLIT_LOGGER_LEVEL=info
STREAMLIT_CLIENT_LOGGER_FORMAT=%(asctime)s - %(name)s - %(levelname)s - %(message)s