Skip to content

Commit bf7d326

Browse files
authored
Fix package installation sections
1 parent 7ee7e25 commit bf7d326

File tree

1 file changed

+17
-28
lines changed

1 file changed

+17
-28
lines changed

articles/azure-functions/functions-bindings-openai.md

Lines changed: 17 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Azure OpenAI Extension for Azure Functions
33
description: Learn to configure the Azure OpenAI extension to be able to integrate your Azure Functions code executions with Azure OpenAI APIs.
44
ms.topic: reference
5-
ms.date: 05/07/2024
5+
ms.date: 05/14/2024
66
zone_pivot_groups: programming-languages-set-functions
77
---
88

@@ -33,45 +33,34 @@ The extension NuGet package you install depends on the C# mode [in-process](func
3333

3434
### [Isolated process](#tab/isolated-process)
3535

36-
Add the extension to your project by installing the [NuGet package](https://www.nuget.org/packages/Microsoft.Azure.Functions.Worker.Extensions.OpenAI).
36+
Add the Azure OpenAI extension to your project by installing the [Microsoft.Azure.Functions.Worker.Extensions.OpenAI](https://www.nuget.org/packages/Microsoft.Azure.Functions.Worker.Extensions.OpenAI) NuGet package, which you can do using the .NET CLI:
3737

38-
If you are using a vector database for content, install one of the following:
39-
40-
Azure AI Search [NuGet package](https://www.nuget.org/packages/Microsoft.Azure.Functions.Worker.Extensions.OpenAI.AzureAISearch)
41-
42-
Azure Cosmos DB for MongoDB [NuGet package](https://www.nuget.org/packages/Microsoft.Azure.Functions.Worker.Extensions.OpenAI.CosmosDBSearch)
43-
44-
Azure Data Explorer [NuGet package](https://www.nuget.org/packages/Microsoft.Azure.Functions.Worker.Extensions.OpenAI.Kusto)
45-
46-
47-
Using the .NET CLI:
48-
49-
```dotnetcli
38+
```dotnet
5039
dotnet add package Microsoft.Azure.Functions.Worker.Extensions.OpenAI --prerelease
51-
```
40+
```
41+
When using a vector database for storing content, you should also install at least one of these NuGet packages:
5242

53-
### [In-process](#tab/in-process)
43+
+ Azure AI Search: [Microsoft.Azure.Functions.Worker.Extensions.OpenAI.AzureAISearch](https://www.nuget.org/packages/Microsoft.Azure.Functions.Worker.Extensions.OpenAI.AzureAISearch)
44+
+ Azure Cosmos DB for MongoDB: [Microsoft.Azure.Functions.Worker.Extensions.OpenAI.CosmosDBSearch](https://www.nuget.org/packages/Microsoft.Azure.Functions.Worker.Extensions.OpenAI.CosmosDBSearch)
45+
+ Azure Data Explorer: [Microsoft.Azure.Functions.Worker.Extensions.OpenAI.Kusto](https://www.nuget.org/packages/Microsoft.Azure.Functions.Worker.Extensions.OpenAI.Kusto)
5446

55-
This extension is available by installing the [NuGet package](https://www.nuget.org/packages/Microsoft.Azure.WebJobs.Extensions.OpenAI).
56-
57-
If you are using a vector database for content, install one of the following:
47+
### [In-process](#tab/in-process)
5848

59-
Azure AI Search [NuGet package](https://www.nuget.org/packages/Microsoft.Azure.WebJobs.Extensions.OpenAI.AzureAISearch)
49+
Add the Azure OpenAI extension to your project by installing the [Microsoft.Azure.WebJobs.Extensions.OpenAI](https://www.nuget.org/packages/Microsoft.Azure.WebJobs.Extensions.OpenAI) NuGet package, which you can do using the .NET CLI:
6050

61-
Azure Cosmos DB for MongoDB [NuGet package](https://www.nuget.org/packages/Microsoft.Azure.WebJobs.Extensions.OpenAI.CosmosDBSearch)
51+
```dotnet
52+
dotnet add package Microsoft.Azure.WebJobs.Extensions.OpenAI --prerelease
53+
```
6254

63-
Azure Data Explorer [NuGet package](https://www.nuget.org/packages/Microsoft.Azure.WebJobs.Extensions.OpenAI.Kusto)
55+
When using a vector database for storing content, you should also install at least one of these NuGet packages:
6456

65-
Using the .NET CLI:
66-
67-
```dotnetcli
68-
dotnet add package Microsoft.Azure.WebJobs.Extensions.OpenAI --prerelease
69-
```
57+
+ Azure AI Search: [Microsoft.Azure.WebJobs.Extensions.OpenAI.AzureAISearch](https://www.nuget.org/packages/Microsoft.Azure.WebJobs.Extensions.OpenAI.AzureAISearch)
58+
+ Azure Cosmos DB for MongoDB: [Microsoft.Azure.WebJobs.Extensions.OpenAI.CosmosDBSearch](https://www.nuget.org/packages/Microsoft.Azure.WebJobs.Extensions.OpenAI.CosmosDBSearch)
59+
+ Azure Data Explorer: [Microsoft.Azure.WebJobs.Extensions.OpenAI.Kusto](https://www.nuget.org/packages/Microsoft.Azure.WebJobs.Extensions.OpenAI.Kusto)
7060

7161
---
7262

7363
::: zone-end
74-
7564
::: zone pivot="programming-language-java,programming-language-javascript,programming-language-typescript,programming-language-powershell,programming-language-python"
7665

7766
## Install bundle

0 commit comments

Comments
 (0)