Skip to content

Commit 03fd9f3

Browse files
authored
Update AI lib changelogs (#6920)
1 parent de0f507 commit 03fd9f3

File tree

4 files changed

+27
-4
lines changed

4 files changed

+27
-4
lines changed

src/Libraries/Microsoft.Extensions.AI.Abstractions/CHANGELOG.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,18 @@
22

33
## NOT YET RELEASED
44

5+
- Updated `HostedMcpServerTool` to allow for non-`Uri` server addresses, in order to enable built-in names.
6+
- Updated `HostedMcpServerTool` to replace the header collection with an `AuthorizationToken` property.
7+
8+
## 9.10.0
9+
510
- Added protected copy constructors to options types (e.g. `ChatOptions`).
11+
- Added `[Experimental]` support for background responses, such that non-streaming responses are allowed to be pollable and responses / response updates can be tagged with continuation tokens to support later resumption.
12+
- Updated `AIFunctionFactory.Create` to produce better default names for lambdas and local functions.
13+
- Fixed `AIJsonUtilities.DefaultOptions` to handle the built-in `[Experimental]` `AIContent` types, like `FunctionApprovalRequestContent`.
14+
- Fixed `ToChatResponse{Async}` to factor `ChatResponseUpdate.AuthorName` into message boundary detection.
15+
- Fixed `ToChatResponse{Async}` to not overwrite `ChatMessage/ChatResponse.CreatedAt` with older timestamps during coalescing.
616
- Fixed `EmbeddingGeneratorOptions`/`SpeechToTextOptions` `Clone` methods to correctly copy all properties.
7-
- Fixed `ToChatResponse` to not overwrite `ChatMessage/ChatResponse.CreatedAt` with older timestamps during coalescing.
8-
- Added `[Experimental]` support for background responses, such that non-streaming responses are allowed to be pollable, and such that responses and response updates can be tagged with continuation tokens to support later resumption.
917

1018
## 9.9.1
1119

src/Libraries/Microsoft.Extensions.AI.AzureAIInference/CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Release History
22

3-
## NOT YET RELEASED
3+
## 9.10.0-preview.1.25513.3
4+
5+
- Updated to accommodate the additions in `Microsoft.Extensions.AI.Abstractions`.
46

57
## 9.9.1-preview.1.25474.6
68

src/Libraries/Microsoft.Extensions.AI.OpenAI/CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,14 @@
22

33
## NOT YET RELEASED
44

5-
- Fixed issue with IChatClient for Assistants API where a chat history including unrelated function calls would cause an exception.
5+
- Updated `IChatClient` for Responses API to support connectors with `HostedMcpServerTool`.
6+
- Updated to accommodate the additions in `Microsoft.Extensions.AI.Abstractions`.
7+
8+
## 9.10.0-preview.1.25513.3
9+
10+
- Fixed issue with `IChatClient` for the OpenAI Assistants API where a chat history including unrelated function calls would cause an exception.
11+
- Fixed issue with `IChatClient` for the OpenAI Assistants API sending a tool in `ChatOptions.Tools` that had the same name as a function configured with the Assistant would cause an exception.
12+
- Updated to accommodate the additions in `Microsoft.Extensions.AI.Abstractions`.
613

714
## 9.9.1-preview.1.25474.6
815

src/Libraries/Microsoft.Extensions.AI/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,13 @@
22

33
## NOT YET RELEASED
44

5+
## 9.10.0
6+
57
- Added `OpenTelemetrySpeechToTextClient` to provide Open Telemetry instrumentation for `ISpeechToTextClient` implementations.
8+
- Augmented `OpenTelemetryChatClient` to output tool information for all tools rather than only `AIFunctionDeclaration`-based tools.
9+
- Fixed `OpenTelemetryChatClient` to avoid throwing exceptions when trying to serialize unknown `AIContent`-derived types.
10+
- Fixed issue with `FunctionInvokingChatClient` where some buffered updates in the face of possible approvals weren't being propagated.
11+
- Simplified the name of the activity span emitted by `FunctionInvokingChatClient`.
612

713
## 9.9.1
814

0 commit comments

Comments
 (0)