This project contains a minimal Web API that show how to use the OpenAI reference implementation in the Microsoft.Extensions.AI.OpenAI NuGet package with the Azure OpenAI service.
- .NET 8 SDK
- Visual Studio or VS Code
- An Azure OpenAI Service resource with a chat completion and text embedding generation model deployments. For more details, see the Azure OpenAI resource deployment documentation.
-
In the AzureOpenAIWebAPI project directory, create a file called appsettings.local.json with the following content.
{ "Logging": { "LogLevel": { "Default": "Information", "Microsoft.AspNetCore": "Warning" } }, "AllowedHosts": "*", "AI": { "AzureOpenAI": { "Endpoint": "YOUR-AZURE-OPENAI-ENDPOINT", "Chat": { "ModelId": "gpt-4o-mini" }, "Embedding": { "ModelId": "text-embedding-3-small" } } } }
-
Replace the value of the
Endpoint
with your Azure OpenAI API endpoint. For more details on where to find your Azure OpenAI endpoint, see the Azure OpenAI documentation.
- Open the AzureOpenAIExamples.sln solution
- Set AzureOpenAIWebAPI as the startup project.
- Press F5.
-
Open your terminal
-
Navigate to the AzureOpenAIWebAPI project directory
-
Run the applicaton using
dotnet run
dotnet run
$response = Invoke-RestMethod -Uri 'http://localhost:5208/chat' -Method Post -Headers @{'Content-Type'='application/json'} -Body '"What is AI?"'; $response.message.contents.text
$response = Invoke-RestMethod -Uri 'http://localhost:5208/embedding' -Method Post -Headers @{'Content-Type'='application/json'} -Body '"What is AI?"'; $response.vector