Skip to content

Commit 90cb9bc

Browse files
committed
fixed links
1 parent 4a96be0 commit 90cb9bc

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

articles/search/retrieval-augmented-generation-overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,9 @@ The LLM receives the original prompt, plus the results from Azure AI Search. The
8383

8484
Try a few quickstarts using your own data to understand the development effort and compare outcomes:
8585

86-
+ [Quickstart: Agentic search](search-get-started-agentic-retrieval.md&pivots=programming-language-python)
86+
+ [Quickstart: Agentic search](search-get-started-agentic-retrieval.md)
8787

88-
+ [Quickstart: Classic RAG using grounding data from Azure AI Seach](search-get-started-rag.md&pivots=python)
88+
+ [Quickstart: Classic RAG using grounding data from Azure AI Seach](search-get-started-rag.md)
8989

9090
## Searchable content in Azure AI Search
9191

articles/search/tutorial-rag-build-solution-maximize-relevance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ This tutorial updates the search index created by the [indexing pipeline](tutori
3636

3737
- [Azure AI Search](search-create-service-portal.md), Basic tier or higher for managed identity and semantic ranking.
3838

39-
- [Azure OpenAI](/azure/ai-services/openai/how-to/create-resource), with a deployment of text-embedding-002 and gpt-35-turbo.
39+
- [Azure OpenAI](/azure/ai-services/openai/how-to/create-resource), with a deployment of text-embedding-3-small and gpt-4o.
4040

4141
## Download the sample
4242

articles/search/tutorial-rag-build-solution-models.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,11 +78,11 @@ The following models are commonly used for a chat search experience:
7878

7979
| Client | Chat models |
8080
|--------|------------|
81-
| Azure OpenAI | GPT-35-Turbo, <br>GPT-4, <br>GPT-4o, <br>GPT-4 Turbo |
81+
| Azure OpenAI | <br>GPT-4, <br>GPT-4o, <br>GPT-4.1. <br>GPT-5 |
8282

83-
GPT-35-Turbo and GPT-4 models are optimized to work with inputs formatted as a conversation.
83+
GPT-4 and GPT-5 models are optimized to work with inputs formatted as a conversation.
8484

85-
We use GPT-4o in this tutorial. During testing, we found that it's less likely to supplement with its own training data. For example, given the query "how much of the earth is covered by water?", GPT-35-Turbo answered using its built-in knowledge of earth to state that 71% of the earth is covered by water, even though the sample data doesn't provide that fact. In contrast, GPT-4o responded (correctly) with "I don't know".
85+
We use GPT-4o in this tutorial.
8686

8787
## Deploy models and collect information
8888

0 commit comments

Comments
 (0)