Skip to content

Commit ea3afe8

Browse files
committed
progress
1 parent 3e6f378 commit ea3afe8

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

docs/ai/quickstarts/quickstart-openai-summarize-text.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ zone_pivot_groups: dotnet-ai-library
1212

1313
# Summarize text using AI chat app with .NET
1414

15-
:::zone target="docs" pivot="semantic-kernel"
15+
:::zone target="docs" pivot="microsoft-extensions-ai"
1616

17-
Get started with AI by creating a simple .NET 8.0 console chat application to summarize text. The application runs locally and uses the OpenAI `gpt-3.5-turbo` model. Follow these steps to get access to OpenAI and learn how to use the `Microsoft.Extensions.AI` library.
17+
Get started with AI by creating a simple .NET 8.0 console chat app to summarize text. You'll learn how to use the `Microsoft.Extensions.AI` library to connect to an AI model from a local application. This library provides essential abstractions for integrating AI services into .NET applications and libraries.
1818

1919
[!INCLUDE [prerequisites](includes/prerequisites-openai.md)]
2020

@@ -86,7 +86,6 @@ string key = config["AzureOpenAIKey"];
8686

8787
The following code obtains an `IChatClient` service configured to connect to the AI Model. The `OpenAI` and `Azure.AI.OpenAI` libraries implement types defined in the `Microsoft.Extensions.AI` library, which enables you to code using the `IChatClient` interface abstraction. This abstraction allows you to change the underlying AI provider to other services by updating only a few lines of code, such as Ollama or Azure Inference models.
8888

89-
9089
# [OpenAI](#tab/openai)
9190

9291
```csharp

0 commit comments

Comments
 (0)