Skip to content

Commit 56d7978

Browse files
authored
Merge pull request #1039 from eric-urban/eur/ai-studio-scrub
AI Studio refresh
2 parents a837949 + 28718a3 commit 56d7978

9 files changed

+14
-15
lines changed

articles/search/index.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ landingContent:
6868
links:
6969
- text: Create a vector index in AI Studio
7070
url: /azure/ai-studio/how-to/index-add
71-
- text: Chat with your data in Azure OpenAI Studio
71+
- text: Chat with your data using Azure OpenAI
7272
url: /azure/ai-services/openai/use-your-data-quickstart
7373
- text: Build a question and answer copilot
7474
url: /azure/ai-studio/tutorials/deploy-copilot-ai-studio

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Azure AI Search is a [proven solution for information retrieval](/azure/develope
3737
Microsoft has several built-in implementations for using Azure AI Search in a RAG solution.
3838

3939
+ Azure AI Studio, [use a vector index and retrieval augmentation](/azure/ai-studio/concepts/retrieval-augmented-generation).
40-
+ Azure OpenAI Studio, [use a search index with or without vectors](/azure/ai-services/openai/concepts/use-your-data).
40+
+ Azure OpenAI, [use a search index with or without vectors](/azure/ai-services/openai/concepts/use-your-data).
4141
+ Azure Machine Learning, [use a search index as a vector store in a prompt flow](/azure/machine-learning/how-to-create-vector-index).
4242

4343
Curated approaches make it simple to get started, but for more control over the architecture, you need a custom solution. These templates create end-to-end solutions in:
@@ -77,7 +77,7 @@ The information retrieval system provides the searchable index, query logic, and
7777

7878
The LLM receives the original prompt, plus the results from Azure AI Search. The LLM analyzes the results and formulates a response. If the LLM is ChatGPT, the user interaction might be a back and forth conversation. If you're using Davinci, the prompt might be a fully composed answer. An Azure solution most likely uses Azure OpenAI, but there's no hard dependency on this specific service.
7979

80-
Azure AI Search doesn't provide native LLM integration for prompt flows or chat preservation, so you need to write code that handles orchestration and state. You can review demo source ([Azure-Samples/azure-search-openai-demo](https://github.com/Azure-Samples/azure-search-openai-demo)) for a blueprint of what a full solution entails. We also recommend Azure AI Studio or [Azure OpenAI Studio](/azure/ai-services/openai/use-your-data-quickstart) to create RAG-based Azure AI Search solutions that integrate with LLMs.
80+
Azure AI Search doesn't provide native LLM integration for prompt flows or chat preservation, so you need to write code that handles orchestration and state. You can review demo source ([Azure-Samples/azure-search-openai-demo](https://github.com/Azure-Samples/azure-search-openai-demo)) for a blueprint of what a full solution entails. We also recommend [Azure AI Studio](/azure/ai-studio/concepts/retrieval-augmented-generation) to create RAG-based Azure AI Search solutions that integrate with LLMs.
8181

8282
## Searchable content in Azure AI Search
8383

articles/search/search-try-for-free.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,9 +122,9 @@ Try the portal quickstarts for Azure AI Search or quickstarts that use Visual St
122122
- [Quickstart: Generative search (RAG) using a Python client](search-get-started-rag.md)
123123
- [Quickstart: Vector search using a REST client](search-get-started-vector.md)
124124

125-
Azure AI Studio and Azure OpenAI Studio support connecting to content in Azure AI Search
125+
Azure AI Studio supports connecting to content in Azure AI Search.
126126

127-
- [Quickstart: Chat using your own data in Azure OpenAI Studio](/azure/ai-services/openai/use-your-data-quickstart)
127+
- [Quickstart: Chat using your own data with Azure OpenAI](/azure/ai-services/openai/use-your-data-quickstart)
128128
- [Tutorial: Build a custom chat app with the prompt flow SDK](/azure/ai-studio/tutorials/copilot-sdk-create-resources)
129129

130130
Developers should review [azure-search-vector-samples](https://github.com/Azure/azure-search-vector-samples) repository or the solution accelerators. You can deploy and run any of these samples using the Azure trial subscription.

articles/search/service-configure-firewall.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ The trusted service list for Azure AI Search includes:
133133
+ `Microsoft.CognitiveServices` for Azure OpenAI and Azure AI services
134134
+ `Microsoft.MachineLearningServices` for Azure Machine Learning
135135

136-
Workflows for this network exception are requests originating *from* Azure AI Studio, Azure OpenAI Studio, or other AML features *to* Azure AI Search, typically in [Azure OpenAI On Your Data](/azure/ai-services/openai/concepts/use-your-data) scenarios for retrieval augmented generation (RAG) and playground environments.
136+
Workflows for this network exception are requests originating from Azure AI Studio or other AML features to Azure AI Search. The trusted services exception is typically for [Azure OpenAI On Your Data](/azure/ai-services/openai/concepts/use-your-data) scenarios for retrieval augmented generation (RAG) and playground environments.
137137

138138
### Trusted resources must have a managed identity
139139

articles/search/service-create-private-endpoint.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This article explains how to configure a private connection to Azure AI Search s
2121
+ [Create an Azure virtual machine in the same virtual network](#create-a-virtual-machine)
2222
+ [Test using a browser session on the virtual machine](#connect-to-the-vm)
2323

24-
Other Azure resources that might privately connect to Azure AI Search include Azure OpenAI for "use your own data" scenarios. Azure OpenAI Studio doesn't run in a virtual network, but it can be configured on the backend to send requests over the Microsoft backbone network. Configuration for this traffic pattern is enabled by Microsoft when your request is submitted and approved. For this scenario:
24+
Other Azure resources that might privately connect to Azure AI Search include Azure OpenAI for "use your own data" scenarios. Azure AI Studio doesn't run in a virtual network, but it can be configured on the backend to send requests over the Microsoft backbone network. Configuration for this traffic pattern is enabled by Microsoft when your request is submitted and approved. For this scenario:
2525

2626
+ Follow the instructions in this article to set up the private endpoint.
2727
+ [Enable trusted service](/azure/ai-services/openai/how-to/use-your-data-securely#enable-trusted-service-1) of your search resource from the Azure portal.

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

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,13 @@
22
title: 'RAG tutorial: Set up models'
33
titleSuffix: Azure AI Search
44
description: Set up an embedding model and chat model for generative search (RAG).
5-
65
manager: nitinme
76
author: HeidiSteen
87
ms.author: heidist
98
ms.service: azure-ai-search
109
ms.topic: tutorial
1110
ms.custom: references_regions
12-
ms.date: 10/04/2024
11+
ms.date: 10/25/2024
1312

1413
---
1514

@@ -34,7 +33,7 @@ If you don't have an Azure subscription, create a [free account](https://azure.m
3433

3534
- An **Owner** or **User Access Administrator** role on your Azure subscription, necessary for creating role assignments. You use at least three Azure resources in this tutorial. The connections are authenticated using Microsoft Entra ID, which requires the ability to create roles. Role assignments for connecting to models are documented in this article. If you can't create roles, you can use [API keys](search-security-api-keys.md) instead.
3635

37-
- A model provider, such as [Azure OpenAI](/azure/ai-services/openai/how-to/create-resource), Azure AI Vision via an [Azure AI multi-service account](/azure/ai-services/multi-service-resource), or [Azure AI Studio](https://ai.azure.com/).
36+
- A model provider, such as [Azure OpenAI](/azure/ai-services/openai/how-to/create-resource), Azure AI Vision via an [Azure AI services multi-service resource](/azure/ai-services/multi-service-resource), or [Azure AI Studio](https://ai.azure.com/).
3837

3938
We use Azure OpenAI in this tutorial. Other providers are listed so that you know your options for integrated vectorization.
4039

@@ -103,7 +102,7 @@ This tutorial series uses the following models and model providers:
103102

104103
You must have [**Cognitive Services OpenAI Contributor**]( /azure/ai-services/openai/how-to/role-based-access-control#cognitive-services-openai-contributor) or higher to deploy models in Azure OpenAI.
105104

106-
1. Go to [Azure OpenAI Studio](https://oai.azure.com/).
105+
1. Go to [Azure AI Studio](https://ai.azure.com/).
107106

108107
1. Select **Deployments** on the left menu.
109108

articles/search/vector-search-integrated-vectorization.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ For text-to-vector conversion during queries, you take a dependency on these com
6363
| [AzureOpenAIEmbedding skill](cognitive-search-skill-azure-openai-embedding.md) | [Azure OpenAI vectorizer](vector-search-vectorizer-azure-open-ai.md) |
6464
| [Custom skill](cognitive-search-custom-skill-web-api.md) | [Custom Web API vectorizer](vector-search-vectorizer-custom-web-api.md) |
6565
| [Azure AI Vision skill (preview)](cognitive-search-skill-vision-vectorize.md) | [Azure AI Vision vectorizer](vector-search-vectorizer-ai-services-vision.md) |
66-
| [AML skill pointing to the model catalog in Azure AI Studio (preview)](cognitive-search-aml-skill.md) | [Azure AI Studio model catalog vectorizer](vector-search-vectorizer-azure-machine-learning-ai-studio-catalog.md) |
66+
| [AML skill pointing to the model catalog in Azure AI Studio](cognitive-search-aml-skill.md) | [Azure AI Studio model catalog vectorizer](vector-search-vectorizer-azure-machine-learning-ai-studio-catalog.md) |
6767

6868
## Component diagram
6969

articles/search/vector-search-overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Vector search is available in:
7474
+ [Azure portal: Import and vectorize data wizard](search-get-started-portal-import-vectors.md)
7575
+ [Azure REST APIs](/rest/api/searchservice/operation-groups)
7676
+ [Azure SDKs for .NET](https://www.nuget.org/packages/Azure.Search.Documents), [Python](https://pypi.org/project/azure-search-documents), and [JavaScript](https://www.npmjs.com/package/@azure/search-documents)
77-
+ Other Azure offerings such as Azure AI Studio and Azure OpenAI Studio.
77+
+ Other Azure offerings such as Azure AI Studio.
7878

7979
> [!NOTE]
8080
> Some older search services created before January 1, 2019 are deployed on infrastructure that doesn't support vector workloads. If you try to add a vector field to a schema and get an error, it's a result of outdated services. In this situation, you must create a new search service to try out the vector feature.
@@ -85,7 +85,7 @@ Azure AI Search is deeply integrated across the Azure AI platform. The following
8585

8686
| Product | Integration |
8787
|---------|-------------|
88-
| Azure OpenAI Studio | In the chat with your data playground, **Add your own data** uses Azure AI Search for grounding data and conversational search. This is the easiest and fastest approach for chatting with your data. |
88+
| Azure AI Studio | In the chat with your data playground, **Add your own data** uses Azure AI Search for grounding data and conversational search. This is the easiest and fastest approach for chatting with your data. |
8989
| Azure OpenAI | Azure OpenAI provides embedding models and chat models. Demos and samples target the [text-embedding-ada-002](/azure/ai-services/openai/concepts/models#embeddings-models). We recommend Azure OpenAI for generating embeddings for text. |
9090
| Azure AI Services | [Image Retrieval Vectorize Image API(Preview)](/azure/ai-services/computer-vision/how-to/image-retrieval#call-the-vectorize-image-api) supports vectorization of image content. We recommend this API for generating embeddings for images. |
9191
| Azure data platforms: Azure Blob Storage, Azure Cosmos DB | You can use [indexers](search-indexer-overview.md) to automate data ingestion, and then use [integrated vectorization](vector-search-integrated-vectorization.md) to generate embeddings. Azure AI Search can automatically index vector data from two data sources: [Azure blob indexers](search-howto-indexing-azure-blob-storage.md) and [Azure Cosmos DB for NoSQL indexers](search-howto-index-cosmosdb.md). For more information, see [Add vector fields to a search index.](vector-search-how-to-create-index.md). |

articles/search/vector-search-vectorizer-azure-machine-learning-ai-studio-catalog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ ms.date: 08/05/2024
1818
1919
The **Azure AI Studio model catalog** vectorizer connects to an embedding model that was deployed via [the Azure AI Studio model catalog](/azure/ai-studio/how-to/model-catalog) to an Azure Machine Learning endpoint. Your data is processed in the [Geo](https://azure.microsoft.com/explore/global-infrastructure/data-residency/) where your model is deployed.
2020

21-
If you used integrated vectorization to create the vector arrays, the skillset should include an [AML skill pointing to the model catalog in Azure AI Studio (preview)](cognitive-search-aml-skill.md).
21+
If you used integrated vectorization to create the vector arrays, the skillset should include an [AML skill pointing to the model catalog in Azure AI Studio](cognitive-search-aml-skill.md).
2222

2323
## Vectorizer parameters
2424

0 commit comments

Comments
 (0)