-
Notifications
You must be signed in to change notification settings - Fork 7
Open
Description
In src/open_deep_research/configuration.py, the default SearchAPI is currently set to TAVILY. SearchAPI should be updated to GENSEE so that users can access GENSEE by default, in accordance with the Quickstart guide.
Current excerpt:
# src/open_deep_research/configuration.py
search_api: SearchAPI = Field(
default=SearchAPI.TAVILY,
metadata={
"x_oap_ui_config": {
"type": "select",
"default": "tavily",
...
"options": [
{"label": "Tavily", "value": SearchAPI.TAVILY.value},
{"label": "OpenAI Native Web Search", "value": SearchAPI.OPENAI.value},
{"label": "Anthropic Native Web Search", "value": SearchAPI.ANTHROPIC.value},
{"label": "None", "value": SearchAPI.NONE.value}
]
}
}
)
Proposed excerpt:
# src/open_deep_research/configuration.py
search_api: SearchAPI = Field(
default=SearchAPI.GENSEE,
metadata={
"x_oap_ui_config": {
"type": "select",
"default": "gensee",
"description": "Search API to use for research. NOTE: Make sure your Researcher Model supports the selected search API.",
"options": [
{"label": "Gensee Search", "value": SearchAPI.GENSEE.value},
{"label": "Tavily", "value": SearchAPI.TAVILY.value},
{"label": "OpenAI Native Web Search", "value": SearchAPI.OPENAI.value},
{"label": "Anthropic Native Web Search", "value": SearchAPI.ANTHROPIC.value},
{"label": "None", "value": SearchAPI.NONE.value}
]
}
}
)
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels