Copy the conf.yaml.example file to conf.yaml and modify the configurations to match your specific settings and requirements.
cd deer-flow
cp conf.yaml.example conf.yamlIn DeerFlow, we currently only support non-reasoning models. This means models like OpenAI's o1/o3 or DeepSeek's R1 are not supported yet, but we plan to add support for them in the future. Additionally, all Gemma-3 models are currently unsupported due to the lack of tool usage capabilities.
doubao-1.5-pro-32k-250115, gpt-4o, qwen-max-latest,qwen3-235b-a22b,qwen3-coder, gemini-2.0-flash, deepseek-v3, and theoretically any other non-reasoning chat models that implement the OpenAI API specification.
Note
The Deep Research process requires the model to have a longer context window, which is not supported by all models.
A work-around is to set the Max steps of a research plan to 2 in the settings dialog located on the top right corner of the web page,
or set max_step_num to 2 when invoking the API.
You can switch the model in use by modifying the conf.yaml file in the root directory of the project, using the configuration in the litellm format.
DeerFlow supports integration with OpenAI-Compatible models, which are models that implement the OpenAI API specification. This includes various open-source and commercial models that provide API endpoints compatible with the OpenAI format. You can refer to litellm OpenAI-Compatible for detailed documentation.
The following is a configuration example of conf.yaml for using OpenAI-Compatible models:
# An example of Doubao models served by VolcEngine
BASIC_MODEL:
base_url: "https://ark.cn-beijing.volces.com/api/v3"
model: "doubao-1.5-pro-32k-250115"
api_key: YOUR_API_KEY
# An example of Aliyun models
BASIC_MODEL:
base_url: "https://dashscope.aliyuncs.com/compatible-mode/v1"
model: "qwen-max-latest"
api_key: YOUR_API_KEY
# An example of deepseek official models
BASIC_MODEL:
base_url: "https://api.deepseek.com"
model: "deepseek-chat"
api_key: YOUR_API_KEY
# An example of Google Gemini models using OpenAI-Compatible interface
BASIC_MODEL:
base_url: "https://generativelanguage.googleapis.com/v1beta/openai/"
model: "gemini-2.0-flash"
api_key: YOUR_API_KEYThe following is a configuration example of conf.yaml for using best opensource OpenAI-Compatible models:
# Use latest deepseek-v3 to handle basic tasks, the open source SOTA model for basic tasks
BASIC_MODEL:
base_url: https://api.deepseek.com
model: "deepseek-v3"
api_key: YOUR_API_KEY
temperature: 0.6
top_p: 0.90
# Use qwen3-235b-a22b to handle reasoning tasks, the open source SOTA model for reasoning
REASONING_MODEL:
base_url: https://dashscope.aliyuncs.com/compatible-mode/v1
model: "qwen3-235b-a22b-thinking-2507"
api_key: YOUR_API_KEY
temperature: 0.6
top_p: 0.90
# Use qwen3-coder-480b-a35b-instruct to handle coding tasks, the open source SOTA model for coding
CODE_MODEL:
base_url: https://dashscope.aliyuncs.com/compatible-mode/v1
model: "qwen3-coder-480b-a35b-instruct"
api_key: YOUR_API_KEY
temperature: 0.6
top_p: 0.90In addition, you need to set the AGENT_LLM_MAP in src/config/agents.py to use the correct model for each agent. For example:
# Define agent-LLM mapping
AGENT_LLM_MAP: dict[str, LLMType] = {
"coordinator": "reasoning",
"planner": "reasoning",
"researcher": "reasoning",
"coder": "basic",
"reporter": "basic",
"podcast_script_writer": "basic",
"ppt_composer": "basic",
"prose_writer": "basic",
"prompt_enhancer": "basic",
}If your LLM server uses self-signed SSL certificates, you can disable SSL certificate verification by adding the verify_ssl: false parameter to your model configuration:
BASIC_MODEL:
base_url: "https://your-llm-server.com/api/v1"
model: "your-model-name"
api_key: YOUR_API_KEY
verify_ssl: false # Disable SSL certificate verification for self-signed certificatesWarning
Disabling SSL certificate verification reduces security and should only be used in development environments or when you trust the LLM server. In production environments, it's recommended to use properly signed SSL certificates.
DeerFlow supports the integration of Ollama models. You can refer to litellm Ollama.
The following is a configuration example of conf.yaml for using Ollama models(you might need to run the 'ollama serve' first):
BASIC_MODEL:
model: "model-name" # Model name, which supports the completions API(important), such as: qwen3:8b, mistral-small3.1:24b, qwen2.5:3b
base_url: "http://localhost:11434/v1" # Local service address of Ollama, which can be started/viewed via ollama serve
api_key: "whatever" # Mandatory, fake api_key with a random string you like :-)DeerFlow supports the integration of OpenRouter models. You can refer to litellm OpenRouter. To use OpenRouter models, you need to:
- Obtain the OPENROUTER_API_KEY from OpenRouter (https://openrouter.ai/) and set it in the environment variable.
- Add the
openrouter/prefix before the model name. - Configure the correct OpenRouter base URL.
The following is a configuration example for using OpenRouter models:
- Configure OPENROUTER_API_KEY in the environment variable (such as the
.envfile)
OPENROUTER_API_KEY=""- Set the model name in
conf.yaml
BASIC_MODEL:
model: "openrouter/google/palm-2-chat-bison"Note: The available models and their exact names may change over time. Please verify the currently available models and their correct identifiers in OpenRouter's official documentation.
DeerFlow supports the integration of Azure OpenAI chat models. You can refer to AzureChatOpenAI. Configuration example of conf.yaml:
BASIC_MODEL:
model: "azure/gpt-4o-2024-08-06"
azure_endpoint: $AZURE_OPENAI_ENDPOINT
api_version: $OPENAI_API_VERSION
api_key: $AZURE_OPENAI_API_KEYDeerFlow allows you to control which domains are included or excluded in Tavily search results through the configuration file. This helps improve search result quality and reduce hallucinations by focusing on trusted sources.
Tips: it only supports Tavily currently.
You can configure domain filtering in your conf.yaml file as follows:
SEARCH_ENGINE:
engine: tavily
# Only include results from these domains (whitelist)
include_domains:
- trusted-news.com
- gov.org
- reliable-source.edu
# Exclude results from these domains (blacklist)
exclude_domains:
- unreliable-site.com
- spam-domain.net