Skip to content

Commit 9b61aa6

Browse files
authored
remove references to preview/prerelease (#46236)
1 parent c145846 commit 9b61aa6

7 files changed

+14
-28
lines changed

docs/ai/conceptual/evaluation-libraries.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ description: Learn about the Microsoft.Extensions.AI.Evaluation libraries, which
44
ms.topic: concept-article
55
ms.date: 05/13/2025
66
---
7-
# The Microsoft.Extensions.AI.Evaluation libraries (Preview)
7+
# The Microsoft.Extensions.AI.Evaluation libraries
88

9-
The Microsoft.Extensions.AI.Evaluation libraries (currently in preview) simplify the process of evaluating the quality and accuracy of responses generated by AI models in .NET intelligent apps. Various metrics measure aspects like relevance, truthfulness, coherence, and completeness of the responses. Evaluations are crucial in testing, because they help ensure that the AI model performs as expected and provides reliable and accurate results.
9+
The Microsoft.Extensions.AI.Evaluation libraries simplify the process of evaluating the quality and accuracy of responses generated by AI models in .NET intelligent apps. Various metrics measure aspects like relevance, truthfulness, coherence, and completeness of the responses. Evaluations are crucial in testing, because they help ensure that the AI model performs as expected and provides reliable and accurate results.
1010

1111
The evaluation libraries, which are built on top of the [Microsoft.Extensions.AI abstractions](../microsoft-extensions-ai.md), are composed of the following NuGet packages:
1212

docs/ai/quickstarts/build-chat-app.md

-3
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@ zone_pivot_groups: openai-library
1414

1515
In this quickstart, you learn how to create a conversational .NET console chat app using an OpenAI or Azure OpenAI model. The app uses the <xref:Microsoft.Extensions.AI> library so you can write code using AI abstractions rather than a specific SDK. AI abstractions enable you to change the underlying AI model with minimal code changes.
1616

17-
> [!NOTE]
18-
> The [`Microsoft.Extensions.AI`](https://www.nuget.org/packages/Microsoft.Extensions.AI/) library is currently in Preview.
19-
2017
:::zone target="docs" pivot="openai"
2118

2219
[!INCLUDE [openai-prereqs](includes/prerequisites-openai.md)]

docs/ai/quickstarts/evaluate-ai-response.md

+4-6
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,7 @@ ms.custom: devx-track-dotnet, devx-track-dotnet-ai
1111
In this quickstart, you create an MSTest app to evaluate the chat response of an OpenAI model. The test app uses the [Microsoft.Extensions.AI.Evaluation](https://www.nuget.org/packages/Microsoft.Extensions.AI.Evaluation) libraries.
1212

1313
> [!NOTE]
14-
>
15-
> - The `Microsoft.Extensions.AI.Evaluation` library is currently in Preview.
16-
> - This quickstart demonstrates the simplest usage of the evaluation API. Notably, it doesn't demonstrate use of the [response caching](../conceptual/evaluation-libraries.md#cached-responses) and [reporting](../conceptual/evaluation-libraries.md#reporting) functionality, which are important if you're authoring unit tests that run as part of an "offline" evaluation pipeline. The scenario shown in this quickstart is suitable in use cases such as "online" evaluation of AI responses within production code and logging scores to telemetry, where caching and reporting aren't relevant. For a tutorial that demonstrates the caching and reporting functionality, see [Tutorial: Evaluate a model's response with response caching and reporting](../tutorials/evaluate-with-reporting.md)
14+
> This quickstart demonstrates the simplest usage of the evaluation API. Notably, it doesn't demonstrate use of the [response caching](../conceptual/evaluation-libraries.md#cached-responses) and [reporting](../conceptual/evaluation-libraries.md#reporting) functionality, which are important if you're authoring unit tests that run as part of an "offline" evaluation pipeline. The scenario shown in this quickstart is suitable in use cases such as "online" evaluation of AI responses within production code and logging scores to telemetry, where caching and reporting aren't relevant. For a tutorial that demonstrates the caching and reporting functionality, see [Tutorial: Evaluate a model's response with response caching and reporting](../tutorials/evaluate-with-reporting.md)
1715
1816
## Prerequisites
1917

@@ -39,9 +37,9 @@ Complete the following steps to create an MSTest project that connects to the `g
3937
```dotnetcli
4038
dotnet add package Azure.AI.OpenAI
4139
dotnet add package Azure.Identity
42-
dotnet add package Microsoft.Extensions.AI.Abstractions --prerelease
43-
dotnet add package Microsoft.Extensions.AI.Evaluation --prerelease
44-
dotnet add package Microsoft.Extensions.AI.Evaluation.Quality --prerelease
40+
dotnet add package Microsoft.Extensions.AI.Abstractions
41+
dotnet add package Microsoft.Extensions.AI.Evaluation
42+
dotnet add package Microsoft.Extensions.AI.Evaluation.Quality
4543
dotnet add package Microsoft.Extensions.AI.OpenAI --prerelease
4644
dotnet add package Microsoft.Extensions.Configuration
4745
dotnet add package Microsoft.Extensions.Configuration.UserSecrets

docs/ai/quickstarts/prompt-model.md

-3
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@ zone_pivot_groups: openai-library
1414

1515
In this quickstart, you learn how to create a .NET console chat app to connect to and prompt an OpenAI or Azure OpenAI model. The app uses the <xref:Microsoft.Extensions.AI> library so you can write code using AI abstractions rather than a specific SDK. AI abstractions enable you to change the underlying AI model with minimal code changes.
1616

17-
> [!NOTE]
18-
> The <xref:Microsoft.Extensions.AI> library is currently in Preview.
19-
2017
:::zone target="docs" pivot="openai"
2118

2219
[!INCLUDE [openai-prereqs](includes/prerequisites-openai.md)]

docs/ai/quickstarts/structured-output.md

+1-4
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@ ms.custom: devx-track-dotnet, devx-track-dotnet-ai
1010

1111
In this quickstart, you create a chat app that requests a response with *structured output*. A structured output response is a chat response that's of a type you specify instead of just plain text. The chat app you create in this quickstart analyzes sentiment of various product reviews, categorizing each review according to the values of a custom enumeration.
1212

13-
> [!NOTE]
14-
> The <xref:Microsoft.Extensions.AI> library, which is used in this quickstart, is currently in Preview.
15-
1613
## Prerequisites
1714

1815
- [.NET 8 or a later version](https://dotnet.microsoft.com/download)
@@ -37,7 +34,7 @@ Complete the following steps to create a console app that connects to the `gpt-4
3734
```dotnetcli
3835
dotnet add package Azure.AI.OpenAI
3936
dotnet add package Azure.Identity
40-
dotnet add package Microsoft.Extensions.AI --prerelease
37+
dotnet add package Microsoft.Extensions.AI
4138
dotnet add package Microsoft.Extensions.AI.OpenAI --prerelease
4239
dotnet add package Microsoft.Extensions.Configuration
4340
dotnet add package Microsoft.Extensions.Configuration.UserSecrets

docs/ai/quickstarts/use-function-calling.md

+2-5
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@ zone_pivot_groups: openai-library
1414

1515
In this quickstart, you create a .NET console AI chat app to connect to an AI model with local function calling enabled. The app uses the <xref:Microsoft.Extensions.AI> library so you can write code using AI abstractions rather than a specific SDK. AI abstractions enable you to change the underlying AI model with minimal code changes.
1616

17-
> [!NOTE]
18-
> The [`Microsoft.Extensions.AI`](https://www.nuget.org/packages/Microsoft.Extensions.AI/) library is currently in Preview.
19-
2017
:::zone target="docs" pivot="openai"
2118

2219
[!INCLUDE [openai-prereqs](includes/prerequisites-openai.md)]
@@ -54,7 +51,7 @@ Complete the following steps to create a .NET console app to connect to an AI mo
5451
```bash
5552
dotnet add package Azure.Identity
5653
dotnet add package Azure.AI.OpenAI
57-
dotnet add package Microsoft.Extensions.AI --prerelease
54+
dotnet add package Microsoft.Extensions.AI
5855
dotnet add package Microsoft.Extensions.AI.OpenAI --prerelease
5956
dotnet add package Microsoft.Extensions.Configuration
6057
dotnet add package Microsoft.Extensions.Configuration.UserSecrets
@@ -65,7 +62,7 @@ Complete the following steps to create a .NET console app to connect to an AI mo
6562
:::zone target="docs" pivot="openai"
6663
6764
```bash
68-
dotnet add package Microsoft.Extensions.AI --prerelease
65+
dotnet add package Microsoft.Extensions.AI
6966
dotnet add package Microsoft.Extensions.AI.OpenAI --prerelease
7067
dotnet add package Microsoft.Extensions.Configuration
7168
dotnet add package Microsoft.Extensions.Configuration.UserSecrets

docs/ai/tutorials/evaluate-with-reporting.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ Complete the following steps to create an MSTest project that connects to the `g
3434
```dotnetcli
3535
dotnet add package Azure.AI.OpenAI
3636
dotnet add package Azure.Identity
37-
dotnet add package Microsoft.Extensions.AI.Abstractions --prerelease
38-
dotnet add package Microsoft.Extensions.AI.Evaluation --prerelease
39-
dotnet add package Microsoft.Extensions.AI.Evaluation.Quality --prerelease
40-
dotnet add package Microsoft.Extensions.AI.Evaluation.Reporting --prerelease
37+
dotnet add package Microsoft.Extensions.AI.Abstractions
38+
dotnet add package Microsoft.Extensions.AI.Evaluation
39+
dotnet add package Microsoft.Extensions.AI.Evaluation.Quality
40+
dotnet add package Microsoft.Extensions.AI.Evaluation.Reporting
4141
dotnet add package Microsoft.Extensions.AI.OpenAI --prerelease
4242
dotnet add package Microsoft.Extensions.Configuration
4343
dotnet add package Microsoft.Extensions.Configuration.UserSecrets
@@ -153,7 +153,7 @@ Run the test using your preferred test workflow, for example, by using the CLI c
153153
1. Install the [Microsoft.Extensions.AI.Evaluation.Console](https://www.nuget.org/packages/Microsoft.Extensions.AI.Evaluation.Console) .NET tool by running the following command from a terminal window (update the version as necessary):
154154

155155
```dotnetcli
156-
dotnet tool install --local Microsoft.Extensions.AI.Evaluation.Console --version 9.3.0-preview.1.25164.6
156+
dotnet tool install --local Microsoft.Extensions.AI.Evaluation.Console
157157
```
158158

159159
1. Generate a report by running the following command:

0 commit comments

Comments
 (0)