How to add a new connection in Azure AI Studio

Important

Some of the features described in this article might only be available in preview. This preview is provided without a service-level agreement, and we don't recommend it for production workloads. Certain features might not be supported or might have constrained capabilities. For more information, see Supplemental Terms of Use for Microsoft Azure Previews.

In this article, you learn how to add a new connection in Azure AI Studio.

Connections are a way to authenticate and consume both Microsoft and other resources within your Azure AI Studio projects. For example, connections can be used for prompt flow, training data, and deployments. Connections can be created exclusively for one project or shared with all projects in the same Azure AI Studio hub.

Connection types

Here's a table of some of the available connection types in Azure AI Studio. The Preview column indicates connection types that are currently in preview.

Service connection type Preview Description
Azure AI Search Azure AI Search is an Azure resource that supports information retrieval over your vector and textual data stored in search indexes.
Azure Blob Storage Azure Blob Storage is a cloud storage solution for storing unstructured data like documents, images, videos, and application installers.
Azure Data Lake Storage Gen 2 Azure Data Lake Storage Gen2 is a set of capabilities dedicated to big data analytics, built on Azure Blob storage.
Azure Content Safety Azure AI Content Safety is a service that detects potentially unsafe content in text, images, and videos.
Azure OpenAI Azure OpenAI is a service that provides access to the OpenAI GPT-3 model.
Serverless Model Serverless Model connections allow you to serverless API deployment.
Microsoft OneLake Microsoft OneLake provides open access to all of your Fabric items through Azure Data Lake Storage (ADLS) Gen2 APIs and SDKs.

In Azure AI Studio you can set up a connection to your OneLake data using a OneLake URI. You can find the information that Azure AI Studio requires to construct a OneLake Artifact URL (workspace and item GUIDs) in the URL on the Fabric portal. For information about the URI syntax, see Connecting to Microsoft OneLake.
API key API Key connections handle authentication to your specified target on an individual basis. For example, you can use this connection with the SerpApi tool in prompt flow.
Custom Custom connections allow you to securely store and access keys while storing related properties, such as targets and versions. Custom connections are useful when you have many targets that or cases where you wouldn't need a credential to access. LangChain scenarios are a good example where you would use custom service connections. Custom connections don't manage authentication, so you have to manage authentication on your own.

Create a new connection

Follow these steps to create a new connection that's only available for the current project.

  1. Go to your project in Azure AI Studio. If you don't have a project, create a new project.

  2. Select Settings from the collapsible left menu.

  3. Select + New connection from the Connected resources section.

    Screenshot of the button to add a new connection.

  4. Select the service you want to connect to from the list of available external resources. For example, select Azure AI Search.

    Screenshot of the page to select Azure AI Search from a list of other resources.

  5. Browse for and select your Azure AI Search service from the list of available services. Select Add connection.

    Screenshot of the page to select the Azure AI Search service that you want to connect to.

  6. After the service is connected, select Close to return to the Settings page.

  7. Select Connected resources > View all to view the new connection. You might need to refresh the page to see the new connection.

    Screenshot of all connections after you add the Azure AI Search connection.

Network isolation

If your hub is configured for network isolation, you might need to create an outbound private endpoint rule to connect to Azure Blob Storage, Azure Data Lake Storage Gen2, or Microsoft OneLake. A private endpoint rule is needed if one or both of the following are true:

  • The managed network for the hub is configured to allow only approved outbound traffic. In this configuration, you must explicitly create outbound rules to allow traffic to other Azure resources.
  • The data source is configured to disallow public access. In this configuration, the data source can only be reached through secure methods, such as a private endpoint.

To create an outbound private endpoint rule to the data source, use the following steps:

  1. Sign in to the Azure portal, and select the Azure AI Studio hub.

  2. Select Networking, then Workspace managed outbound access.

  3. To add an outbound rule, select Add user-defined outbound rules. From the Workspace outbound rules sidebar, provide the following information:

    • Rule name: A name for the rule. The name must be unique for the AI Studio hub.
    • Destination type: Private Endpoint.
    • Subscription: The subscription that contains the Azure resource you want to connect to.
    • Resource type: Microsoft.Storage/storageAccounts. This resource provider is used for Azure Storage, Azure Data Lake Storage Gen2, and Microsoft OneLake.
    • Resource name: The name of the Azure resource (storage account).
    • Sub Resource: The sub-resource of the Azure resource. Select blob in the case of Azure Blob storage. Select dfs for Azure Data Lake Storage Gen2 and Microsoft OneLake.
  4. Select Save to create the rule.

  5. Select Save at the top of the page to save the changes to the managed network configuration.

Next steps