Skip to content

Commit e4facec

Browse files
committed
Updated statements around query workflow and added links to KS blob ipynb sample
1 parent 4b9c4ed commit e4facec

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

articles/search/search-agentic-retrieval-how-to-pipeline.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,8 @@ Developments in Azure AI Agent side include:
109109

110110
+ Set up the AI project client and an AI agent.
111111
+ Add a tool to coordinate calls from the AI agent to the retriever and knowledge agent.
112-
+ Query processing is driven by the tool, where the tool calls both the AI agent and the retriever on Azure AI Search.
112+
113+
Query processing is initiated by a client app, such as a chat bot, that calls the AI agent. The AI agent is configured to use a tool that orchestrates the requests and directs the responses. When the chat bot calls the agent, the tool calls the retriever on Azure AI Search, waits for the response, and then sends the response back to the AI agent and chat bot.
113114

114115
## Components of the solution
115116

@@ -176,7 +177,7 @@ print(f"AI agent '{agent_name}' created or updated successfully")
176177

177178
### Add an agentic retrieval tool to AI Agent
178179

179-
An end-to-end pipeline needs an orchestration mechanism for coordinating calls to the retriever and knowledge agent on Azure AI Search. You can use a [tool](/azure/ai-services/agents/how-to/tools/function-calling) for this task. The tool calls the Azure AI Search knowledge retrieval client and the Azure AI agent, and it drives the conversations with the user.
180+
An end-to-end pipeline needs an orchestration mechanism for coordinating calls to the retriever and knowledge agent on Azure AI Search. You can use a [tool](/azure/ai-services/agents/how-to/tools/function-calling) for this task. The tool is configured in the AI agent and it calls the Azure AI Search knowledge retrieval client and sends back responses that drive the conversation with the user.
180181

181182
```python
182183
from azure.ai.agents.models import FunctionTool, ToolSet, ListSortOrder

articles/search/search-agentic-retrieval-how-to-synthesize.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,8 @@ Depending on your agent's configuration, the response might include other inform
144144

145145
## Related content
146146

147+
+ [Quickstart: Agentic retrieval in Azure AI Search (uses answer synthesis)](https://github.com/Azure-Samples/azure-search-python-samples/blob/main/Quickstart-Agentic-Retrieval/quickstart-agentic-retrieval.ipynb)
148+
+ [Azure AI Search Blob knowledge source Python sample (uses answer synthesis)](https://github.com/Azure/azure-search-vector-samples/blob/main/demo-python/code/knowledge/blob-knowledge-source.ipynb)
147149
+ [Agentic retrieval in Azure AI Search](search-agentic-retrieval-concept.md)
148150
+ [Create a knowledge agent](search-agentic-retrieval-how-to-create.md)
149151
+ [Create a search index knowledge source](search-knowledge-source-how-to-index.md)

articles/search/search-knowledge-source-how-to-blob.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,8 @@ api-key: {{api-key}}
235235
236236
## Learn more
237237

238+
+ [Azure AI Search Blob knowledge source Python sample](https://github.com/Azure/azure-search-vector-samples/blob/main/demo-python/code/knowledge/blob-knowledge-source.ipynb)
239+
238240
+ [Agentic retrieval in Azure AI Search](search-agentic-retrieval-concept.md)
239241

240242
+ [Agentic RAG: build a reasoning retrieval engine with Azure AI Search (YouTube video)](https://www.youtube.com/watch?v=PeTmOidqHM8)

0 commit comments

Comments
 (0)