Skip to content

Commit bd807da

Browse files
committed
fixing wording
1 parent 8b00c7b commit bd807da

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

articles/ai-services/agents/includes/file-search/azure-blob-storage-code-examples.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## Quickstart – Use existing files in Azure Blob Storage with file search
2-
In this example, we’ll use Azure AI Agent Service to create an agent that can help answer questions on information from files in Azure Blob Storage.
2+
In this example, we use Azure AI Agent Service to create an agent that can help answer questions on information from files in Azure Blob Storage.
33

44
### Prerequisites
55
Complete the [standard agent setup](../../quickstart.md).
@@ -25,10 +25,10 @@ project_client = AIProjectClient.from_connection_string(
2525
)
2626
```
2727
### Step 2: Upload local files to your project Azure Blob Storage container
28-
We will upload the local file to your project Azure Blob Storage container. This is the same storage account you connected to your agent during the agent setup.
29-
The project asset ID is the URI of the uploaded file and we print out this value. If you create more agents in the same project that want to use the uploaded file, you can reuse this asset ID. That way you don't need to upload the file again.
28+
We upload the local file to your project Azure Blob Storage container. This is the same storage account you connected to your agent during the agent setup.
29+
The project asset ID is the URI of the uploaded file and we print this value. If you create more agents in the same project that want to use the uploaded file, you can reuse this asset ID. That way you don't need to upload the file again.
3030
```python
31-
# We will upload the local file to your project Azure Blob Storage container and will use it for vector store creation.
31+
# We'll upload the local file to your project Azure Blob Storage container and will use it for vector store creation.
3232
_, asset_uri = project_client.upload_file("C:\\Users\\fosteramanda\\Downloads\\hub bicep\\azure-ai-agents\\data\\product_info_1.md")
3333
print(f"Uploaded file, asset URI: {asset_uri}")
3434

@@ -75,7 +75,7 @@ print(f"Messages: {messages}")
7575
```
7676

7777
### Step 4: Create second vector store using the previously uploaded file
78-
Now we will create a second vector store using the previously uploaded file. This is useful if you have multiple agents that need access to the same files.
78+
Now we create a second vector store using the previously uploaded file. Using the asset_uri of file already in Azure Blob Storage is useful if you have multiple agents that need access to the same files. That way you don't need to upload the same file multiple times.
7979
```python
8080

8181
# create a vector store with a previously uploaded file and wait for it to be processed

articles/ai-services/agents/includes/file-search/upload-files-code-examples.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
## Quickstart – Upload Local Files with file search
22

3-
In this example, we’ll use Azure AI Agent Service to create an agent that can help answer questions on information you upload from local files.
3+
In this example, we use Azure AI Agent Service to create an agent that can help answer questions on information you upload from local files.
44

55
## Prerequisites
66
Complete the [agent setup](../../quickstart.md).
77

88
## Step 1: Create a project client
99

10-
Create a client object, which will contain the connection string for connecting to your AI project and other resources.
10+
Create a client object, that contains the connection string for connecting to your AI project and other resources.
1111

1212
# [Python](#tab/python)
1313

0 commit comments

Comments
 (0)