From 43dd7903ee0f1eaee9fd6dbd5bd80020c11e83bf Mon Sep 17 00:00:00 2001 From: Alex Wolf Date: Thu, 30 Jan 2025 11:19:46 -0500 Subject: [PATCH 1/3] Add model selection guidance --- docs/ai/quickstarts/quickstart-ai-chat-with-data.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/ai/quickstarts/quickstart-ai-chat-with-data.md b/docs/ai/quickstarts/quickstart-ai-chat-with-data.md index 65c1348db5c28..3f4479eb0e6a1 100644 --- a/docs/ai/quickstarts/quickstart-ai-chat-with-data.md +++ b/docs/ai/quickstarts/quickstart-ai-chat-with-data.md @@ -136,6 +136,9 @@ Complete the following steps to create a .NET console app that can accomplish th dotnet user-secrets set ModelName ``` + > [!NOTE] + > To work generate embeddings for vector search in the sections head, you'll need to use an OpenAI text embedding model such as `text-embedding-3-small` or `text-embedding-3-large`. + :::zone-end ## Add the app code From bca037411fc5b0decd73e6821ebf5fb5f758da03 Mon Sep 17 00:00:00 2001 From: Alex Wolf Date: Thu, 30 Jan 2025 11:22:11 -0500 Subject: [PATCH 2/3] Update note --- docs/ai/quickstarts/quickstart-ai-chat-with-data.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ai/quickstarts/quickstart-ai-chat-with-data.md b/docs/ai/quickstarts/quickstart-ai-chat-with-data.md index 3f4479eb0e6a1..28a06a6c68010 100644 --- a/docs/ai/quickstarts/quickstart-ai-chat-with-data.md +++ b/docs/ai/quickstarts/quickstart-ai-chat-with-data.md @@ -137,7 +137,7 @@ Complete the following steps to create a .NET console app that can accomplish th ``` > [!NOTE] - > To work generate embeddings for vector search in the sections head, you'll need to use an OpenAI text embedding model such as `text-embedding-3-small` or `text-embedding-3-large`. + > For the `ModelName` value, you need to specify an OpenAI text embedding model such as `text-embedding-3-small` or `text-embedding-3-large`to generate embeddings for vector search in the sections head. :::zone-end From 02e262eb9ad50056cb2bc1daf42f6c4c41227f65 Mon Sep 17 00:00:00 2001 From: alexwolfmsft <93200798+alexwolfmsft@users.noreply.github.com> Date: Thu, 30 Jan 2025 11:28:35 -0500 Subject: [PATCH 3/3] Update docs/ai/quickstarts/quickstart-ai-chat-with-data.md Co-authored-by: Genevieve Warren <24882762+gewarren@users.noreply.github.com> --- docs/ai/quickstarts/quickstart-ai-chat-with-data.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ai/quickstarts/quickstart-ai-chat-with-data.md b/docs/ai/quickstarts/quickstart-ai-chat-with-data.md index 28a06a6c68010..b5e065554cd82 100644 --- a/docs/ai/quickstarts/quickstart-ai-chat-with-data.md +++ b/docs/ai/quickstarts/quickstart-ai-chat-with-data.md @@ -137,7 +137,7 @@ Complete the following steps to create a .NET console app that can accomplish th ``` > [!NOTE] - > For the `ModelName` value, you need to specify an OpenAI text embedding model such as `text-embedding-3-small` or `text-embedding-3-large`to generate embeddings for vector search in the sections head. + > For the `ModelName` value, you need to specify an OpenAI text embedding model such as `text-embedding-3-small` or `text-embedding-3-large` to generate embeddings for vector search in the sections that follow. :::zone-end