Skip to content

Commit 9511ce3

Browse files
committed
find changes
1 parent 828afe0 commit 9511ce3

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/ai-services/content-understanding/concepts/retrieval-augmented-generation.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ A high level summary of **RAG** implementation pattern looks like this:
5858

5959
Here's an overview of the implementation process, beginning with data extraction using Azure AI Content Understanding as the foundation for transforming raw multimodal data into structured, searchable formats optimized for **RAG** workflows:
6060

61-
* [Content extraction](#content-extraction-the-foundation-for-rag-with-content-understanding)
61+
* [Content extraction](#content-extraction-rag-with-content-understanding-foundation)
6262
* [Field extraction](#field-extraction-enhance-knowledge-bases-for-better-retrieval)
6363
* [Create a unified search index](#create-a-unified-search-index)
6464
* [Utilize Azure OpenAI models](#utilize-azure-openai-models)
@@ -462,7 +462,7 @@ After Azure AI Content Understanding extracts data, the next steps focus on inte
462462

463463
After processing multimodal content with Azure AI Content Understanding, create a comprehensive search infrastructure using your newly structured data. By embedding the markdown and JSON outputs with Azure OpenAI's embedding models and indexing them in Azure AI Search, you establish a unified knowledge repository spanning all content types.
464464

465-
Azure AI Search offers advanced search strategies for multimodal content. In this implementation, [hybrid search](https://learn.microsoft.com/en-us/azure/search/hybrid-search-overview) combines vector and full-text indexing to blend keyword precision with semantic understanding—ideal for complex queries requiring both exact matching and contextual relevance. This approach significantly enhances the quality of information fed to generation models, producing more accurate, contextually appropriate responses
465+
Azure AI Search offers advanced search strategies for multimodal content. In this implementation, [hybrid search](../../../search/hybrid-search-overview) combines vector and full-text indexing to blend keyword precision with semantic understanding—ideal for complex queries requiring both exact matching and contextual relevance. This approach significantly enhances the quality of information fed to generation models, producing more accurate, contextually appropriate responses
466466

467467
To follow is a sample consolidated index that support vector and hybrid search and enables cross-modal search capabilities, allowing users to discover relevant information regardless of the original content format:
468468

@@ -504,7 +504,7 @@ To follow is a sample consolidated index that support vector and hybrid search a
504504

505505
## Utilize Azure OpenAI models
506506

507-
Once your content is extracted and indexed, integrate [Azure OpenAI's embedding and chat models](../../openai/concepts/models?tabs=global-standard%2Cstandard-chat-completions) to create an interactive question-answering system.
507+
Once your content is extracted and indexed, integrate [Azure OpenAI's embedding and chat models](../../openai/concepts/models.md#chat-completions) to create an interactive question-answering system.
508508

509509
Content Understanding empowers the model to provide accurate and contextually grounded responses by using your actual content. This process includes referencing specific sections of documents, interpreting relevant images, quoting from video transcripts, and citing speaker statements from audio recordings.
510510

@@ -517,8 +517,8 @@ Content Understanding supports the following development options:
517517

518518
## Next steps
519519

520-
* Try our **RAG** [code samples.]((https://github.com/Azure-Samples/azure-ai-search-with-content-understanding-python#samples))
521-
* Follow our [**RAG** Tutorial](../tutorial/**RAG**-tutorial.md)
520+
* Try our **RAG** [code samples.](https://github.com/Azure-Samples/azure-ai-search-with-content-understanding-python#samples)
521+
* Follow our [**RAG** Tutorial](../tutorial/build-rag-solution.md)
522522
* Learn more about [document](../document/overview.md), [image](../image/overview.md), [audio](../audio/overview.md), [video](../video/overview.md) capabilities.
523523
* Learn more about Content Understanding [**best practices**](../concepts/best-practices.md) and [**capabilities**](../concepts/capabilities.md).
524524
* Review Content Understanding [**code samples**](https://github.com/Azure-Samples/azure-ai-content-understanding-python/tree/main)

0 commit comments

Comments
 (0)