|
1 | 1 | # Release History |
2 | 2 |
|
3 | | -## 2.6.0-beta.1 (Unreleased) |
| 3 | +## 2.6.0 (2025-10-31) |
| 4 | + |
| 5 | +### Acknowledgments |
| 6 | + |
| 7 | +Thank you to our developer community members who helped to make the OpenAI client library better with their contributions to this release: |
| 8 | + |
| 9 | +- Maksim Kurnakov _([GitHub](https://github.com/kurnakovv))_ |
4 | 10 |
|
5 | 11 | ### Features Added |
6 | 12 |
|
7 | 13 | - OpenAI.Chat: |
8 | | - - Added the `Minimal` property to `ChatReasoningEffortLevel` |
| 14 | + - Added the `Minimal` property to `ChatReasoningEffortLevel`. _(A community contribution, courtesy of [kurnakovv](https://github.com/kurnakovv))_ |
| 15 | + - Added support for System.Client.Model's `JsonPatch`, which enables users to get and set additional JSON properties in response and request payloads. |
| 16 | + - See the following examples for more information: |
| 17 | + - [AdditionalProperties](https://github.com/openai/openai-dotnet/blob/main/examples/Chat/Example10_AdditionalProperties.cs) |
| 18 | + - [AdditionalPropertiesAsync](https://github.com/openai/openai-dotnet/blob/main/examples/Chat/Example10_AdditionalPropertiesAsync.cs) |
| 19 | + - Go to the OpenAI.Responses section in this changelog for more examples that can be extrapolated to Chat. |
| 20 | +- OpenAI.Conversations: |
| 21 | + - Introduced the new `ConversationClient` to support the Conversations API with protocol methods for the following operations: |
| 22 | + - `CreateConversation` and `CreateConversationAsync` |
| 23 | + - `GetConversation` and `GetConversationAsync` |
| 24 | + - `UpdateConversation` and `UpdateConversationAsync` |
| 25 | + - `DeleteConversation` and `DeleteConversationAsync` |
| 26 | + - `CreateConversationItems` and `CreateConversationItemsAsync` |
| 27 | + - `GetConversationItems` and `GetConversationItemsAsync` |
| 28 | + - `DeleteConversationItem` and `DeleteConversationItemAsync` |
| 29 | +- OpenAI.Embeddings: |
| 30 | + - Added support for System.Client.Model's `JsonPatch`, which enables users to get and set additional JSON properties in response and request payloads. |
| 31 | + - Go to the OpenAI.Chat and OpenAI.Responses section in this changelog for examples that can be extrapolated to Embeddings. |
| 32 | +- OpenAI.Responses: |
| 33 | + - Added the `Minimal` property to `ResponseReasoningEffortLevel`. _(A community contribution, courtesy of [kurnakovv](https://github.com/kurnakovv))_ |
| 34 | + - Added the `ContainerFileCitationMessageAnnotation` class which is derived from `ResponseMessageAnnotation` and is used to cite files in the container of the Code Interpreter tool. |
| 35 | + - Enabled support for the Image Generation tool, which can be used to generate images using models like `gpt-image-1`. |
| 36 | + - Users can add the new `ImageGenerationTool` to the `Tools` property of their `ResponseCreationOptions` and configure it using properties such as `Background`, `Quality`, `Size`, and more. |
| 37 | + - Added support for System.Client.Model's `JsonPatch`, which enables users to get and set additional JSON properties in response and request payloads. |
| 38 | + - See the following examples for more information: |
| 39 | + - [InputAdditionalProperties](https://github.com/openai/openai-dotnet/blob/main/examples/Responses/Example07_InputAdditionalProperties.cs) |
| 40 | + - [InputAdditionalPropertiesAsync](https://github.com/openai/openai-dotnet/blob/main/examples/Responses/Example07_InputAdditionalPropertiesAsync.cs) |
| 41 | + - [OutputAdditionalProperties](https://github.com/openai/openai-dotnet/blob/main/examples/Responses/Example08_OutputAdditionalProperties.cs) |
| 42 | + - [OutputAdditionalPropertiesAsync](https://github.com/openai/openai-dotnet/blob/main/examples/Responses/Example08_OutputAdditionalPropertiesAsync.cs) |
| 43 | + - [ModelOverridePerRequest](https://github.com/openai/openai-dotnet/blob/main/examples/Responses/Example09_ModelOverridePerRequest.cs) |
| 44 | + - [ModelOverridePerRequestAsync](https://github.com/openai/openai-dotnet/blob/main/examples/Responses/Example09_ModelOverridePerRequestAsync.cs) |
| 45 | + - Go to the OpenAI.Chat section for more examples that can be extrapolated to Responses. |
| 46 | +- OpenAI.Videos: |
| 47 | + - Introduced the new `VideoClient` to support the Videos API with protocol methods for the following operations: |
| 48 | + - `CreateVideo` and `CreateVideoAsync` |
| 49 | + - `GetVideo` and `GetVideoAsync` |
| 50 | + - `DeleteVideo` and `DeleteVideoAsync` |
| 51 | + - `DownloadVideo` and `DownloadVideoAsync` |
| 52 | + - `GetVideos` and `GetVideosAsync` |
| 53 | + - `CreateVideoRemix` and `GetVideoRemixAsync` |
| 54 | + |
| 55 | +### Bugs Fixed |
| 56 | + |
| 57 | +- OpenAI.Audio: |
| 58 | + - Added the explicit conversion operators from `ClientResult` that were missing in the `AudioTranscription` and `AudioTranslation` classes. |
| 59 | +- OpenAI.Chat: |
| 60 | + - Added the `ContentParts` property that was missing in the `ChatCompletionMessageListDatum` class. |
| 61 | + |
| 62 | +### Breaking Changes in Preview APIs |
9 | 63 |
|
| 64 | +- OpenAI.Containers: |
| 65 | + - Renamed the `GetContainerFileContent` and `GetContainerFileContentAsync` methods of `ContainerClient` to `DownloadContainerFile` and `DownloadContainerFileAsync`. |
10 | 66 | - OpenAI.Responses: |
11 | | - - Added the `Minimal` property to `ResponseReasoningEffortLevel` |
| 67 | + - Removed the duplicated `GetInputItems` and `GetInputItemsAsync` methods of the `OpenAIResponseClient` in favor of the existing `GetResponseInputItems` and `GetResponseInputItemsAsync` methods. |
12 | 68 |
|
13 | 69 | ## 2.5.0 (2025-09-23) |
14 | 70 |
|
| 71 | +### Acknowledgments |
| 72 | + |
| 73 | +Thank you to our developer community members who helped to make the OpenAI client library better with their contributions to this release: |
| 74 | + |
| 75 | +- Benjamin Pinter _([GitHub](https://github.com/BenjaminDavidPinter))_ |
| 76 | + |
15 | 77 | ### Features Added |
16 | 78 |
|
17 | 79 | - OpenAI.Responses: |
18 | | - - Added the `Model` property to `OpenAIResponseClient`. |
| 80 | + - Added the `Model` property to `OpenAIResponseClient`. _(A community contribution, courtesy of [BenjaminDavidPinter](https://github.com/BenjaminDavidPinter))_ |
19 | 81 | - Added the `ServiceDescription` property to `McpTool`. |
20 | 82 | - Enabled support for connectors, which are OpenAI-maintained MCP wrappers for popular services like Microsoft Outlook or Dropbox. |
21 | 83 | - Added the `ConnectorId` property to `McpTool`. |
|
0 commit comments