Skip to content

Commit fa205db

Browse files
Merge pull request #231 from sdgilley/sdg-ai-rag-tutorial
AI tutorial - update directory for data, link to zip.
2 parents 53e97cc + e57da2f commit fa205db

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/ai-studio/tutorials/copilot-sdk-build-rag.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ This tutorial is part two of a three-part tutorial.
3030

3131
* Complete [Tutorial: Part 1 - Create resources for building a custom chat application with the prompt flow SDK](copilot-sdk-create-resources.md).
3232

33-
* You need a local copy of product data. The [Azure-Samples/rag-data-openai-python-promptflow repository on GitHub](https://github.com/Azure-Samples/rag-data-openai-python-promptflow/) contains sample retail product information that's relevant for this tutorial scenario. [Download the example Contoso Trek retail product data in a ZIP file](https://github.com/Azure-Samples/rag-data-openai-python-promptflow/tree/main/tutorial/data) to your local machine.
33+
* You need a local copy of product data. The [Azure-Samples/rag-data-openai-python-promptflow repository on GitHub](https://github.com/Azure-Samples/rag-data-openai-python-promptflow/) contains sample retail product information that's relevant for this tutorial scenario. [Download the example Contoso Trek retail product data in a ZIP file](https://github.com/Azure-Samples/rag-data-openai-python-promptflow/blob/main/tutorial/data/product-info.zip) to your local machine.
3434

3535
## Application code structure
3636

@@ -115,7 +115,7 @@ These steps deploy a model to a real-time endpoint from the AI Studio [model cat
115115
When you deploy the `gpt-3.5-turbo` model, find the following values in the **View Code** section, and add them to your **.env** file:
116116
117117
```env
118-
AZURE_OPENAI_ENDPOINT=<chat_model_endpoint_value>
118+
AZURE_OPENAI_ENDPOINT=<endpoint_value>
119119
AZURE_OPENAI_CHAT_DEPLOYMENT=<chat_model_deployment_name>
120120
AZURE_OPENAI_API_VERSION=<api_version>
121121
```
@@ -156,7 +156,7 @@ The goal with this RAG-based application is to ground the model responses in you
156156

157157
If you don't have an Azure AI Search index already created, we walk through how to create one. If you already have an index to use, you can skip to the [set the search environment variable](#set-search-index) section. The search index is created on the Azure AI Search service that was either created or referenced in the previous step.
158158

159-
1. Use your own data or [download the example Contoso Trek retail product data in a ZIP file](https://github.com/Azure-Samples/rag-data-openai-python-promptflow/tree/main/tutorial/data) to your local machine. Unzip the file into your **rag-tutorial** folder. This data is a collection of markdown files that represent product information. The data is structured in a way that is easy to ingest into a search index. You build a search index from this data.
159+
1. Use your own data or [download the example Contoso Trek retail product data in a ZIP file](https://github.com/Azure-Samples/rag-data-openai-python-promptflow/blob/main/tutorial/data/product-info.zip) to your local machine. Unzip the file into your **rag-tutorial/data** folder. This data is a collection of markdown files that represent product information. The data is structured in a way that is easy to ingest into a search index. You build a search index from this data.
160160

161161
1. The prompt flow RAG package allows you to ingest the markdown files, locally create a search index, and register it in the cloud project. Install the prompt flow RAG package:
162162

0 commit comments

Comments
 (0)