Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Release History

## 9.4.3-preview.1.25230.7

- Renamed `ChatThreadId` to `ConversationId` on `ChatResponse`, `ChatResponseUpdate`, and `ChatOptions`.
- Renamed `EmbeddingGeneratorExtensions` method `GenerateEmbeddingAsync` to `GenerateAsync` and `GenerateEmbeddingVectorAsync` to `GenerateVectorAsync`.
- Made `AIContent`'s constructor `public` instead of `protected`.
- Fixed `AIJsonUtilities.CreateJsonSchema` to tolerate `JsonSerializerOptions` instances that don't have a `TypeInfoResolver` already configured.

## 9.4.0-preview.1.25207.5

- Added `ErrorContent` and `TextReasoningContent`.
Expand Down Expand Up @@ -83,4 +90,4 @@

## 9.0.0-preview.9.24507.7

Initial Preview
- Initial Preview
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release History

## 9.4.3-preview.1.25230.7

- Updated to accomodate the changes in `Microsoft.Extensions.AI.Abstractions`.

## 9.4.0-preview.1.25207.5

- Updated to Azure.AI.Inference 1.0.0-beta.4.
Expand Down Expand Up @@ -36,4 +40,4 @@

## 9.0.0-preview.9.24507.7

Initial Preview
- Initial Preview
6 changes: 5 additions & 1 deletion src/Libraries/Microsoft.Extensions.AI.Ollama/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release History

## 9.4.3-preview.1.25230.7

- Updated to accomodate the changes in `Microsoft.Extensions.AI.Abstractions`.

## 9.4.0-preview.1.25207.5

- Updated to accomodate the changes in `Microsoft.Extensions.AI.Abstractions`.
Expand Down Expand Up @@ -29,4 +33,4 @@

## 9.0.0-preview.9.24507.7

Initial Preview
- Initial Preview
8 changes: 7 additions & 1 deletion src/Libraries/Microsoft.Extensions.AI.OpenAI/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Release History

## 9.4.3-preview.1.25230.7

- Reverted previous change that enabled `strict` schemas by default.
- Updated `IChatClient` implementations to support `DataContent`s for PDFs.
- Updated to accomodate the changes in `Microsoft.Extensions.AI.Abstractions`.

## 9.4.0-preview.1.25207.5

- Updated to OpenAI 2.2.0-beta-4.
Expand Down Expand Up @@ -41,4 +47,4 @@

## 9.0.0-preview.9.24507.7

Initial Preview
- Initial Preview
17 changes: 16 additions & 1 deletion src/Libraries/Microsoft.Extensions.AI/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Release History

## 9.4.3-preview.1.25230.7

- Updated the diagnostic spans emitted by `FunctionInvokingChatClient` to include total input and output token counts.
- Updated `AIFunctionFactory` to recognize `[FromKeyedServices]` attribute on parameters in order to resolve those parameters from the `IServiceProvider`.
- Added `AIFunctionFactoryOptions.Services`, and used it with `IServiceProviderIsService` to automatically resolve `IServiceProvider`-based parameters in `AIFunction` methods.
- Added `ChatOptions.AllowMultipleToolCalls`.
- Changed `AIJsonSchemaCreateOptions.RequireAllProperties` to default to `false` instead of `true`.
- Unsealed `AIFunctionArguments`.
- Added `AIFunctionArguments` constructors accepting `IEqualityComparer<string>` arguments.
- Unsealed `FunctionInvocationContext`.
- Added `FunctionInvocationContext.IsStreaming`.
- Added protected `FunctionInvokingChatClient.FunctionInvocationServices` property to surface the corresponding `IServiceProvider` provided at construction time.
- Changed protected virtual `FunctionInvokingChatClient.InvokeFunctionAsync` to return `ValueTask<object?>` instead of `Task<object?>`. Diagnostics are now emitted even if the method is overridden.
- Added `FunctionInvocationResult.Terminate`.

## 9.4.0-preview.1.25207.5

- Updated `GetResponseAsync<T>` to default to using JSON-schema based structured output by default.
Expand Down Expand Up @@ -74,4 +89,4 @@

## 9.0.0-preview.9.24507.7

Initial Preview
- Initial Preview
Loading