2025-04-07 16:25:55 +08:00
|
|
|
# Application Settings
|
|
|
|
|
DEBUG=True
|
|
|
|
|
APP_ENV=development
|
|
|
|
|
|
2025-05-13 19:53:28 +08:00
|
|
|
# docker build args
|
|
|
|
|
NEXT_PUBLIC_API_URL="http://localhost:8000/api"
|
|
|
|
|
|
2025-05-18 11:37:03 +08:00
|
|
|
AGENT_RECURSION_LIMIT=30
|
|
|
|
|
|
2025-05-12 20:15:47 +08:00
|
|
|
# Search Engine, Supported values: tavily (recommended), duckduckgo, brave_search, arxiv
|
2025-04-10 11:45:04 +08:00
|
|
|
SEARCH_API=tavily
|
2025-04-07 16:25:55 +08:00
|
|
|
TAVILY_API_KEY=tvly-xxx
|
2025-05-12 20:15:47 +08:00
|
|
|
# BRAVE_SEARCH_API_KEY=xxx # Required only if SEARCH_API is brave_search
|
2025-04-07 16:25:55 +08:00
|
|
|
# JINA_API_KEY=jina_xxx # Optional, default is None
|
|
|
|
|
|
2025-05-28 14:13:46 +08:00
|
|
|
# Optional, RAG provider
|
|
|
|
|
# RAG_PROVIDER=ragflow
|
|
|
|
|
# RAGFLOW_API_URL="http://localhost:9388"
|
|
|
|
|
# RAGFLOW_API_KEY="ragflow-xxx"
|
|
|
|
|
# RAGFLOW_RETRIEVAL_SIZE=10
|
|
|
|
|
|
2025-04-25 16:05:24 +08:00
|
|
|
# Optional, volcengine TTS for generating podcast
|
2025-04-18 15:28:31 +08:00
|
|
|
VOLCENGINE_TTS_APPID=xxx
|
|
|
|
|
VOLCENGINE_TTS_ACCESS_TOKEN=xxx
|
|
|
|
|
# VOLCENGINE_TTS_CLUSTER=volcano_tts # Optional, default is volcano_tts
|
|
|
|
|
# VOLCENGINE_TTS_VOICE_TYPE=BV700_V2_streaming # Optional, default is BV700_V2_streaming
|
2025-05-08 10:02:19 +08:00
|
|
|
|
2025-05-14 10:12:50 +08:00
|
|
|
# Option, for langsmith tracing and monitoring
|
|
|
|
|
# LANGSMITH_TRACING=true
|
|
|
|
|
# LANGSMITH_ENDPOINT="https://api.smith.langchain.com"
|
|
|
|
|
# LANGSMITH_API_KEY="xxx"
|
|
|
|
|
# LANGSMITH_PROJECT="xxx"
|
|
|
|
|
|
2025-05-08 10:02:19 +08:00
|
|
|
# [!NOTE]
|
|
|
|
|
# For model settings and other configurations, please refer to `docs/configuration_guide.md`
|