-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
29 lines (23 loc) · 980 Bytes
/
.env.example
File metadata and controls
29 lines (23 loc) · 980 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
# RASA Environment Configuration
# Copy this file to .env and fill in your values
# For LLM-specific config, you can also use .env-llm in rasa/config/
# ========== LLM Settings ==========
LLM_MODE=local # local or api
LLM_PROVIDER=ollama # ollama, openai, or claude
LLM_MODEL=llama3 # Model name for the provider
LLM_HOST=http://localhost:11434 # Host URL (for Ollama)
# OpenAI (if using openai provider)
OPENAI_API_KEY= # Your OpenAI API key
OPENAI_MODEL=gpt-3.5-turbo
# Claude (if using claude provider)
CLAUDE_API_KEY= # Your Anthropic API key
CLAUDE_MODEL=claude-3-opus
# ========== Database Settings ==========
DEFAULT_DB_TYPE=redis
DEFAULT_DB_URL=redis://localhost:6379
# Vector DB (for long-term memory)
DEFAULT_VECTOR_DB_TYPE=qdrant
DEFAULT_VECTOR_DB_URL=qdrant://localhost:6333
# ========== API Settings ==========
API_PORT=8000
DEBUG=false