15 lines
268 B
Plaintext
15 lines
268 B
Plaintext
|
|
# Environment Variables for AI Agent
|
||
|
|
# Copy to .env and modify as needed
|
||
|
|
|
||
|
|
# LLM Configuration
|
||
|
|
LLM_BASE_URL=http://localhost:11434/v1
|
||
|
|
LLM_MODEL=deepseek-r1:8b
|
||
|
|
LLM_API_KEY=ollama
|
||
|
|
|
||
|
|
# Agent Configuration
|
||
|
|
AGENT_MAX_ITERATIONS=10
|
||
|
|
|
||
|
|
# Tool Configuration
|
||
|
|
MAX_TOOL_OUTPUT=4000
|
||
|
|
|