Skip to content

Commit 044c97f

Browse files
committed
adding to details
1 parent 4555fd9 commit 044c97f

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

articles/ai-services/agents/how-to/tools/azure-ai-search.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ zone_pivot_groups: selection-azure-ai-search
1515

1616
# Use an existing AI Search index with the Azure AI Search tool
1717
::: zone pivot="overview-azure-ai-search"
18-
1918
Use an existing Azure AI Search index with the agent's Azure AI Search tool.
2019

2120
> [!NOTE]

articles/ai-services/agents/how-to/tools/file-search.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ Vector store objects give the file search tool the ability to search your files.
7373
Similarly, these files can be removed from a vector store by either:
7474

7575
* Deleting the vector store file object or,
76-
* By deleting the underlying file object (which removes the file it from all vector_store and code_interpreter configurations across all agents and threads in your organization)
76+
* By deleting the underlying file object, which removes the file it from all vector_store and code_interpreter configurations across all agents and threads in your organization
7777

7878
The maximum file size is 512 MB. Each file should contain no more than 5,000,000 tokens per file (computed automatically when you attach a file).
7979

articles/ai-services/agents/includes/azure-search/setup.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,8 @@ ms.date: 12/10/2024
1010
## Setup: Create an agent that can use an existing Azure AI Search index
1111

1212
#### Prerequisite: Have an existing Azure AI Search index
13-
A prerequisite of using the Azure AI Search tool is to have an existing Azure AI Search index. If you don't have an existing index, you can create one in the Azure portal or via REST API.
14-
- [Quickstart: Create a vector index using the Azure portal](../../../../search/search-get-started-portal-import-vectors.md)
15-
- [Quickstart: Create a vector index using REST API](../../../../search/search-get-started-vector.md)
13+
A prerequisite of using the Azure AI Search tool is to have an existing Azure AI Search index. If you don't have an existing index, you can create one in the Azure portal using the import and vectorize data wizard.
14+
- [Quickstart: Create a vector index with the import and vectorize data wizard in the Azure portal](../../../../search/search-get-started-portal-import-vectors.md)
1615

1716

1817
#### Complete the agent setup
@@ -22,7 +21,9 @@ A prerequisite of using the Azure AI Search tool is to have an existing Azure AI
2221

2322

2423
#### Create a project connection to the Azure AI Search resource with the index you want to use
25-
If you already connected the AI Search resource that contains the index you want to use to your project, skip this step.
24+
Once you have completed the standard agent setup, you must create a project connection to the Azure AI Search resource that contains the index you want to use.
25+
26+
If you already connected the AI Search resource that contains the index you want to use to your project, skip this step.
2627

2728
##### Get your Azure AI Search resource connection key and endpoint
2829
1. Access your Azure AI Search resource.
@@ -43,11 +44,11 @@ If you already connected the AI Search resource that contains the index you want
4344
**Create the following connections.yml file**
4445

4546

46-
You can use either an API key or credential-less YAML configuration file. For more information on the YAML configuration file, see the [Azure AI Search connection YAML schema](../../../../machine-learning/reference-yaml-connection-ai-search.md):
47+
You can use either an API key or credential-less YAML configuration file. Replace the ```endpoint``` and ```api_key`` values. For more information on the YAML configuration file, see the [Azure AI Search connection YAML schema](../../../../machine-learning/reference-yaml-connection-ai-search.md).
4748
- API Key example:
4849

4950
```yml
50-
name: myazaics_apk
51+
name: my_project_acs_connection_keys
5152
type: azure_ai_search
5253
endpoint: https://contoso.search.windows.net/
5354
api_key: XXXXXXXXXXXXXXX
@@ -56,7 +57,7 @@ You can use either an API key or credential-less YAML configuration file. For mo
5657
- Credential-less
5758
5859
```yml
59-
name: myazaics_ei
60+
name: my_project_acs_connection_credentialless
6061
type: azure_ai_search
6162
endpoint: https://contoso.search.windows.net/
6263
```

0 commit comments

Comments
 (0)