Skip to content

Commit dc6c51e

Browse files
author
Jill Grant
authored
Merge pull request #252327 from markjbrown/vector-search
rename rag data to vector search
2 parents 8d62a2e + bd4474d commit dc6c51e

File tree

8 files changed

+17
-12
lines changed

8 files changed

+17
-12
lines changed

articles/cosmos-db/.openpublishing.redirection.cosmos-db.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6209,6 +6209,11 @@
62096209
"source_path_from_root": "/articles/cosmos-db/troubleshoot-local-emulator.md",
62106210
"redirect_url": "/azure/cosmos-db/emulator",
62116211
"redirect_document_id": false
6212+
},
6213+
{
6214+
"source_path_from_root": "/articles/cosmos-db/rag-data-openai.md",
6215+
"redirect_url": "/azure/cosmos-db/vector-search",
6216+
"redirect_document_id": true
62126217
}
62136218
]
62146219
}

articles/cosmos-db/TOC.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
href: distributed-nosql.md
1414
- name: Distributed relational
1515
href: distributed-relational.md
16-
- name: Integrate with Azure OpenAI
17-
href: rag-data-openai.md
16+
- name: Integrate Vector Search with Azure OpenAI
17+
href: vector-search.md
1818
- name: NoSQL
1919
href: nosql/toc.yml
2020
- name: MongoDB

articles/cosmos-db/index.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ highlightedContent:
3030
- title: Q&A
3131
itemType: reference
3232
url: /answers/tags/187/azure-cosmos-db
33-
- title: Use Azure Cosmos DB with Azure OpenAI
33+
- title: Vector Search with Azure Cosmos DB
3434
itemType: concept
35-
url: rag-data-openai.md
35+
url: vector-search.md
3636
- title: Choose an API in Azure Cosmos DB
3737
itemType: concept
3838
url: choose-api.md

articles/cosmos-db/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Today's applications are required to be highly responsive and always online. To
2020

2121
Azure Cosmos DB is a fully managed NoSQL and relational database for modern app development. Azure Cosmos DB offers single-digit millisecond response times, automatic and instant scalability, along with guaranteed speed at any scale. Business continuity is assured with [SLA-backed](https://azure.microsoft.com/support/legal/sla/cosmos-db) availability and enterprise-grade security.
2222

23-
Use Retrieval Augmented Generation (RAG) to bring the most semantically relevant data to enrich your AI-powered applications built with Azure OpenAI models like GPT-3.5 and GPT-4. For more information, see [Retrieval Augmented Generation (RAG) with Azure Cosmos DB](rag-data-openai.md).
23+
Use Retrieval Augmented Generation (RAG) to bring the most semantically relevant data to enrich your AI-powered applications built with Azure OpenAI models like GPT-3.5 and GPT-4. For more information, see [Retrieval Augmented Generation (RAG) with Azure Cosmos DB](vector-search.md#retrieval-augmented-generation).
2424

2525
App development is faster and more productive thanks to:
2626

articles/cosmos-db/mongodb/TOC.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@
368368
- name: Integrate with Azure services
369369
href: integrations-overview.md
370370
- name: RAG with Azure OpenAI
371-
href: ../rag-data-openai.md
371+
href: ../vector-search.md#retrieval-augmented-generation
372372
- name: Vercel
373373
href: ../vercel-integration.md
374374
- name: Migrate data to Azure Cosmos DB

articles/cosmos-db/nosql/TOC.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -874,7 +874,7 @@
874874
- name: Integrate with other Azure services
875875
items:
876876
- name: RAG with Azure OpenAI
877-
href: ../rag-data-openai.md
877+
href: ../vector-search.md#retrieval-augmented-generation
878878
- name: Change feed Ecommerce solution
879879
href: changefeed-ecommerce-solution.md
880880
- name: Azure App Service

articles/cosmos-db/rag-data-openai.md renamed to articles/cosmos-db/vector-search.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
---
2-
title: Use data with Azure OpenAI
2+
title: Vector search using Azure Cosmos DB
33
titleSuffix: Azure Cosmos DB
44
description: Use Retrieval Augmented Generation (RAG) and vector search to ground your Azure OpenAI models with data stored in Azure Cosmos DB.
55
author: jacodel
66
ms.author: sidandrews
77
ms.service: cosmos-db
88
ms.topic: conceptual
9-
ms.date: 08/16/2023
9+
ms.date: 09/20/2023
1010
---
1111

12-
# Use Azure Cosmos DB data with Azure OpenAI
12+
# Vector search with data in Azure Cosmos DB
1313

1414
[!INCLUDE[NoSQL, MongoDB vCore, PostgreSQL](includes/appliesto-nosql-mongodbvcore-postgresql.md)]
1515

@@ -29,7 +29,7 @@ To jump right into tutorials and sample code for RAG patterns with Azure Cosmos
2929

3030
This section includes key concepts that are critical to implementing RAG with Azure Cosmos DB and Azure OpenAI.
3131

32-
### Retrieval Augmented Generation (RAG)
32+
### Retrieval Augmented Generation (RAG) <a id="retrieval-augmented-generation"></a>
3333

3434
RAG involves the process of retrieving supplementary data to provide the LLM with the ability to use this data when it generates responses. When presented with a user's question or prompt, RAG aims to select the most pertinent and current domain-specific knowledge from external sources, such as articles or documents. This retrieved information serves as a valuable reference for the model when generating its response. For example, a simple RAG pattern using Azure Cosmos DB for NoSQL could be:
3535

@@ -88,7 +88,7 @@ Prior to sending a request to Azure OpenAI, the user input/query/request is also
8888

8989
There are multiple ways to use RAG and vector search with your data stored in Azure Cosmos DB.
9090

91-
:::image type="content" source="media/rag-data-openai/vector-search-infosheet.png" alt-text="Infosheet that shows options for performing Vector Search with Azure Cosmos DB to bring your data to your AI applications." lightbox="media/rag-data-openai/vector-search-infosheet.png":::
91+
:::image type="content" source="media/vector-search/vector-search-infosheet.png" alt-text="Infosheet that shows options for performing Vector Search with Azure Cosmos DB to bring your data to your AI applications." lightbox="media/vector-search/vector-search-infosheet.png":::
9292

9393
## Azure Cosmos DB for NoSQL and Azure Cognitive Search
9494

0 commit comments

Comments
 (0)