-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy path.env.example
More file actions
32 lines (27 loc) · 943 Bytes
/
.env.example
File metadata and controls
32 lines (27 loc) · 943 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
# llm configuration (openai-compatible format)
# for ollama: http://localhost:11434/v1/chat/completions
# for openai: https://api.openai.com/v1/chat/completions
# for anthropic: https://api.anthropic.com/v1/messages
LLM_ENDPOINT=http://localhost:11434/v1/chat/completions
LLM_API_KEY=
LLM_MODEL=llama3
# database
DATABASE_PATH=data/qa_records.db
# server
HOST=0.0.0.0
PORT=8000
# optional: enable debug logging (defaults to false)
# DEBUG=true
# ===========================================
# Extensibility System
# ===========================================
# DATAGENFLOW_ENDPOINT=http://localhost:8000
# DATAGENFLOW_BLOCKS_PATH=user_blocks
# DATAGENFLOW_TEMPLATES_PATH=user_templates
# DATAGENFLOW_HOT_RELOAD=true
# DATAGENFLOW_HOT_RELOAD_DEBOUNCE_MS=500
# langfuse configuration
LANGFUSE_SECRET_KEY="sk-..."
LANGFUSE_PUBLIC_KEY="pk-..."
LANGFUSE_HOST="https://cloud.langfuse.com" # for litellm (tracing)
LANGFUSE_PROJECT_ID="..."