2025-05-08 10:02:19 +08:00
|
|
|
# [!NOTE]
|
2025-06-14 13:12:43 +08:00
|
|
|
# Read the `docs/configuration_guide.md` carefully, and update the
|
|
|
|
|
# configurations to match your specific settings and requirements.
|
|
|
|
|
# - Replace `api_key` with your own credentials.
|
|
|
|
|
# - Replace `base_url` and `model` name if you want to use a custom model.
|
2025-06-25 19:17:26 -07:00
|
|
|
# - Set `verify_ssl` to `false` if your LLM server uses self-signed certificates
|
2025-06-14 13:12:43 +08:00
|
|
|
# - A restart is required every time you change the `config.yaml` file.
|
2025-04-07 16:25:55 +08:00
|
|
|
|
|
|
|
|
BASIC_MODEL:
|
2025-04-22 11:04:28 +08:00
|
|
|
base_url: https://ark.cn-beijing.volces.com/api/v3
|
2025-05-07 17:29:37 +08:00
|
|
|
model: "doubao-1-5-pro-32k-250115"
|
2025-04-14 18:01:50 +08:00
|
|
|
api_key: xxxx
|
2025-07-12 10:12:07 +08:00
|
|
|
# max_retries: 3 # Maximum number of retries for LLM calls
|
2025-06-25 19:17:26 -07:00
|
|
|
# verify_ssl: false # Uncomment this line to disable SSL certificate verification for self-signed certificates
|
|
|
|
|
|
2025-06-14 13:12:43 +08:00
|
|
|
# Reasoning model is optional.
|
|
|
|
|
# Uncomment the following settings if you want to use reasoning model
|
|
|
|
|
# for planning.
|
|
|
|
|
|
|
|
|
|
# REASONING_MODEL:
|
2025-07-13 08:22:37 +08:00
|
|
|
# base_url: https://ark.cn-beijing.volces.com/api/v3
|
2025-06-14 13:12:43 +08:00
|
|
|
# model: "doubao-1-5-thinking-pro-m-250428"
|
|
|
|
|
# api_key: xxxx
|
2025-07-12 10:12:07 +08:00
|
|
|
# max_retries: 3 # Maximum number of retries for LLM calls
|
|
|
|
|
|
2025-07-12 08:53:51 +08:00
|
|
|
|
|
|
|
|
# OTHER SETTINGS:
|
|
|
|
|
# Search engine configuration (Only supports Tavily currently)
|
|
|
|
|
# SEARCH_ENGINE:
|
|
|
|
|
# engine: tavily
|
|
|
|
|
# # Only include results from these domains
|
|
|
|
|
# include_domains:
|
|
|
|
|
# - example.com
|
|
|
|
|
# - trusted-news.com
|
|
|
|
|
# - reliable-source.org
|
|
|
|
|
# - gov.cn
|
|
|
|
|
# - edu.cn
|
|
|
|
|
# # Exclude results from these domains
|
|
|
|
|
# exclude_domains:
|
|
|
|
|
# - example.com
|