Skip to content

Commit 199512f

Browse files
committed
deep links
1 parent 2206033 commit 199512f

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

examples/deep_research_api/how_to_build_a_deep_research_mcp_server/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This is a minimal example of a Deep Research style MCP server for searching and fetching files from the OpenAI file storage service.
44

5-
For a reference of _how_ to call this service from the Responses API, with Deep Research see [this cookbook](<./how_to_use_deep_research> ). To see how to call the MCP server with the Agents SDK, checkout [this cookbook](<./agents_deep_research_cookbook>)!
5+
For a reference of _how_ to call this service from the Responses API, with Deep Research see [this cookbook](https://cookbook.openai.com/examples/deep_research_api/how_to_use_deep_research_API). To see how to call the MCP server with the Agents SDK, checkout [this cookbook](https://cookbook.openai.com/examples/deep_research_api/how_to_use_deep_research_API_agents)!
66

77
The Deep Research agent relies specifically on Search and Fetch tools. Search should look through your object store for a set of specfic, top-k IDs. Fetch, is a tool that takes objectIds as arguments and pulls back the relevant resources.
88

examples/deep_research_api/how_to_use_deep_research_API.ipynb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -674,7 +674,9 @@
674674
"- Technical literature reviews and policy synthesis\n",
675675
"\n",
676676
"\n",
677-
"Whether you're looking to build research agents, generate structured reports, or integrate high-quality synthesis into your workflows, we hope the examples here help you get started."
677+
"Whether you're looking to build research agents, generate structured reports, or integrate high-quality synthesis into your workflows, we hope the examples here help you get started.\n",
678+
"\n",
679+
"What's next? [Deep Research Agents](https://cookbook.openai.com/examples/deep_research_api/how_to_use_deep_research_API_agents)"
678680
]
679681
}
680682
],

examples/deep_research_api/how_to_use_deep_research_API_agents_.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
"source": [
99
"# Deep Research Agents Cookbook\n",
1010
"\n",
11-
"This cookbook demonstrates how to build Agentic research workflows using the OpenAI Deep Research API and [Agents SDK](https://openai.github.io/openai-agents-python/). It is a continuation of \"./how_to_use_deep_research.ipynb\", if you have not already familiarized yourself with that content, please consider doing so.\n",
11+
"This cookbook demonstrates how to build Agentic research workflows using the OpenAI Deep Research API and [Agents SDK](https://openai.github.io/openai-agents-python/). It is a continuation of [a fundamentals cookbook](https://cookbook.openai.com/examples/deep_research_api/how_to_use_deep_research_API), if you have not already familiarized yourself with that content, please consider doing so.\n",
1212
"\n",
13-
"You’ll learn how to orchestrate single and multi-agent pipelines, enrich user queries to maximize output quality, stream research progress, integrate web search and MCP for internal file search, and architect a robust research application.\n",
13+
"You’ll learn how to orchestrate single and multi-agent pipelines, enrich user queries to maximize output quality, stream research progress, integrate web search and [MCP for internal file search](https://cookbook.openai.com/examples/deep_research_api/how_to_build_a_deep_research_mcp_server/README), and architect a robust research application.\n",
1414
"\n",
1515
"Consider using Deep Research Agents for tasks that require planning, synthesis, tool use, or multi-step reasoning. Do not use Deep Research for trivial fact lookups, simple Q&A, or short-form chat, a vanilla openai.responsesAPI would be faster and cheaper."
1616
]
@@ -260,7 +260,7 @@
260260
" - Streams intermediate events for transparency\n",
261261
" - Outputs final Research Artifact (which we later parse)\n",
262262
"\n",
263-
"For more insight into _how_ the MCP server is build. See this resource."
263+
"For more insight into _how_ the MCP server is build. [See this resource.](https://cookbook.openai.com/examples/deep_research_api/how_to_build_a_deep_research_mcp_server/README )"
264264
]
265265
},
266266
{

0 commit comments

Comments
 (0)