Skip to content

Commit 5b6f879

Browse files
authored
Merge pull request #146 from haileytap/agentic-retrieval
Replace "search agent" with "knowledge agent"
2 parents 3e47bec + f227954 commit 5b6f879

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

Quickstart-Agentic-Retrieval/quickstart-agentic-retrieval.ipynb

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@
283283
"source": [
284284
"## Create an agent in Azure AI Search\n",
285285
"\n",
286-
"This step creates a search agent, which acts as a wrapper for the LLM you deployed to Azure OpenAI. The LLM is used to send queries to an agentic retrieval pipeline."
286+
"This step creates a knowledge agent, which acts as a wrapper for the LLM you deployed to Azure OpenAI. The LLM is used to send queries to an agentic retrieval pipeline."
287287
]
288288
},
289289
{
@@ -689,7 +689,7 @@
689689
"source": [
690690
"## Continue the conversation\n",
691691
"\n",
692-
"This step continues the conversation with the search agent, building upon the previous messages and queries to retrieve relevant information from your search index."
692+
"This step continues the conversation with the knowledge agent, building upon the previous messages and queries to retrieve relevant information from your search index."
693693
]
694694
},
695695
{
@@ -1014,7 +1014,7 @@
10141014
"id": "a14f6fe6",
10151015
"metadata": {},
10161016
"source": [
1017-
"### Delete the search agent"
1017+
"### Delete the knowledge agent"
10181018
]
10191019
},
10201020
{
@@ -1027,14 +1027,14 @@
10271027
"name": "stdout",
10281028
"output_type": "stream",
10291029
"text": [
1030-
"Search agent 'earth-search-agent' deleted successfully\n"
1030+
"Knowledge agent 'earth-search-agent' deleted successfully\n"
10311031
]
10321032
}
10331033
],
10341034
"source": [
10351035
"index_client = SearchIndexClient(endpoint=endpoint, credential=credential)\n",
10361036
"index_client.delete_agent(agent_name)\n",
1037-
"print(f\"Search agent '{agent_name}' deleted successfully\")"
1037+
"print(f\"Knowledge agent '{agent_name}' deleted successfully\")"
10381038
]
10391039
},
10401040
{

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This repository contains Python code samples used in Azure AI Search documentati
1111
| [Quickstart-RAG](Quickstart-RAG/quickstart-rag.ipynb) | "Day One" introduction to LLM integration with a chat model such as GPT-3.5-turbo or equivalent. We recommend the basic tier or higher for this quickstart.|
1212
| [Quickstart-Document-Permissions-Pull-API](Quickstart-Document-Permissions-Pull-API/document-permissions-pull-api.ipynb) | Using an indexer "pull API" approach, flow access control lists from a data source to search results and apply permission filters that restrict access to authorized content. Indexer support is limited to Azure Data Lake Storage (ADLS) Gen2 permission metadata. You must have basic tier or higher for this quickstart.|
1313
| [Quickstart-Document-Permissions-Push-API](Quickstart-Document-Permissions-Push-API/document-permissions-push-api.ipynb) | Using the push APIs for indexing a JSON payload, flow embedded permission metadata to indexed documents, and to search results that are filtered based on user access to authorized content. We recommend the basic tier or higher for this quickstart.|
14-
| [Quickstart-Agentic-Retrieval](Quickstart-Agentic-Retrieval/quickstart-agentic-retrieval.ipynb) | Set up a search agent in Azure AI Search to integrate LLM reasoning into query planning. We recommend the basic tier or higher for this quickstart. |
14+
| [Quickstart-Agentic-Retrieval](Quickstart-Agentic-Retrieval/quickstart-agentic-retrieval.ipynb) | Set up a knowledge agent in Azure AI Search to integrate LLM reasoning into query planning. We recommend the basic tier or higher for this quickstart. |
1515
|[Tutorial-RAG](Tutorial-RAG/tutorial-rag.ipynb) | A deeper dive into LLM integration with a chat model such as GPT-3.5-turbo or equivalent. We recommend the basic tier or higher for this quickstart. |
1616

1717
## Deeper dive tutorials

agentic-retrieval-pipeline-example/agent-example.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"\n",
1414
"+ Create an \"earth_at_night\" search index\n",
1515
"+ Load it with documents from a GitHub URL\n",
16-
"+ Create a search agent on Azure AI Search that points to an LLM for intelligent query planning\n",
16+
"+ Create a knowledge agent on Azure AI Search that points to an LLM for intelligent query planning\n",
1717
"+ Create a Foundry agent in Azure AI Foundry to determine when queries are needed\n",
1818
"+ Create a Azure AI Agent tool (client) to orchestrate all requests\n",
1919
"+ Start a chat with the agent\n",
@@ -729,14 +729,14 @@
729729
"name": "stdout",
730730
"output_type": "stream",
731731
"text": [
732-
"Search agent 'earth-search-agent' deleted successfully\n"
732+
"Knowledge agent 'earth-search-agent' deleted successfully\n"
733733
]
734734
}
735735
],
736736
"source": [
737737
"index_client = SearchIndexClient(endpoint=endpoint, credential=credential)\n",
738738
"index_client.delete_agent(agent_name)\n",
739-
"print(f\"Search agent '{agent_name}' deleted successfully\")"
739+
"print(f\"Knowledge agent '{agent_name}' deleted successfully\")"
740740
]
741741
},
742742
{

0 commit comments

Comments
 (0)