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,14 @@
# Release History

## 9.4.4-preview.1.25259.16

- Added `AIJsonUtilities.TransformSchema` and supporting types.
- Added `BinaryEmbedding` for bit embeddings.
- Added `ChatOptions.RawRepresentationFactory` to make it easier to pass options to the underlying service.
- Added `Base64Data` property to `DataContent`.
- Moved `AIFunctionFactory` to `Microsoft.Extensions.AI.Abstractions`.
- Fixed `AIFunctionFactory` handling of default struct arguments.

## 9.4.3-preview.1.25230.7

- Renamed `ChatThreadId` to `ConversationId` on `ChatResponse`, `ChatResponseUpdate`, and `ChatOptions`.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Release History

## 9.4.4-preview.1.25259.16

- Added an `AsIEmbeddingGenerator` extension method for `ImageEmbeddingsClient`.
- Updated to accomodate the changes in `Microsoft.Extensions.AI.Abstractions`.

## 9.4.3-preview.1.25230.7

- Updated to accomodate the changes in `Microsoft.Extensions.AI.Abstractions`.
Expand Down
4 changes: 4 additions & 0 deletions 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.4-preview.1.25259.16

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

## 9.4.3-preview.1.25230.7

- Updated to accomodate the changes in `Microsoft.Extensions.AI.Abstractions`.
Expand Down
6 changes: 6 additions & 0 deletions 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.4-preview.1.25259.16

- Made `IChatClient` implementation more resilient with non-OpenAI services.
- Added `ErrorContent` to represent refusals.
- Updated to accomodate the changes in `Microsoft.Extensions.AI.Abstractions`.

## 9.4.3-preview.1.25230.7

- Reverted previous change that enabled `strict` schemas by default.
Expand Down
6 changes: 6 additions & 0 deletions src/Libraries/Microsoft.Extensions.AI/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Release History

## 9.4.4-preview.1.25259.16

- Fixed `CachingChatClient` to avoid caching when `ConversationId` is set.
- Renamed `useJsonSchema` parameter in `GetResponseAsync<T>` to `useJsonSchemaResponseFormat`.
- Updated `OpenTelemetryChatClient` and `OpenTelemetryEmbeddingGenerator` to conform to the latest 1.33.0 draft specification of the Semantic Conventions for Generative AI systems.

## 9.4.3-preview.1.25230.7

- Updated the diagnostic spans emitted by `FunctionInvokingChatClient` to include total input and output token counts.
Expand Down
Loading