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
Expand Up @@ -2,7 +2,9 @@

## NOT YET RELEASED

- Added protected copy constructors to options types.
- Added protected copy constructors to options types (e.g. `ChatOptions`).
- Fixed `EmbeddingGeneratorOptions`/`SpeechToTextOptions` `Clone` methods to correctly copy all properties.
- Fixed `ToChatResponse` to not overwrite `ChatMessage/ChatResponse.CreatedAt` with older timestamps during coalescing.

## 9.9.1

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Release History

## NOT YET RELEASED

## 9.9.1-preview.1.25474.6

- Updated to accommodate the additions in `Microsoft.Extensions.AI.Abstractions`.
Expand Down
2 changes: 2 additions & 0 deletions src/Libraries/Microsoft.Extensions.AI.OpenAI/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Release History

## NOT YET RELEASED

## 9.9.1-preview.1.25474.6

- Updated to depend on OpenAI 2.5.0.
Expand Down
4 changes: 4 additions & 0 deletions src/Libraries/Microsoft.Extensions.AI/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release History

## NOT YET RELEASED

- Added `OpenTelemetrySpeechToTextClient` to provide Open Telemetry instrumentation for `ISpeechToTextClient` implementations.

## 9.9.1

- Updated the `EnableSensitiveData` properties on `OpenTelemetryChatClient/EmbeddingGenerator` to respect a `OTEL_INSTRUMENTATION_GENAI_CAPTURE_MESSAGE_CONTENT` environment variable.
Expand Down
Loading