From c44b3bf75dd8cdc27c5fbc0b4821c17a0ef8dd19 Mon Sep 17 00:00:00 2001 From: alexwolfmsft <93200798+alexwolfmsft@users.noreply.github.com> Date: Thu, 30 Jan 2025 11:38:54 -0500 Subject: [PATCH] Add model selection note (#44622) * Add model selection guidance Co-authored-by: Genevieve Warren <24882762+gewarren@users.noreply.github.com> --------- Co-authored-by: Genevieve Warren <24882762+gewarren@users.noreply.github.com> --- 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..b5e065554cd82 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] + > 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 ## Add the app code