Skip to content

Commit c49dd70

Browse files
authored
2.1.0-beta.1: CHANGELOG and release snap (#239)
* release snap for 2.1.0-beta.1 * changelog touchup and CI exclusions
1 parent ff75da4 commit c49dd70

File tree

4 files changed

+18
-4
lines changed

4 files changed

+18
-4
lines changed

.github/workflows/live-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Run live tests
2828
run: dotnet test ./tests/OpenAI.Tests.csproj
2929
--configuration Release
30-
--filter="TestCategory!=Smoke&TestCategory!=Images&TestCategory!=Uploads&TestCategory!=Moderations&TestCategory!=FineTuning&TestCategory!=Manual"
30+
--filter="TestCategory!=Smoke&TestCategory!=Images&TestCategory!=Uploads&TestCategory!=Moderations&TestCategory!=FineTuning&TestCategory!=Conversation&TestCategory!=Manual"
3131
--logger "trx;LogFilePrefix=live"
3232
--results-directory ${{github.workspace}}/artifacts/test-results
3333
${{ env.version_suffix_args}}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
- name: Run Live Tests
5050
run: dotnet test ./tests/OpenAI.Tests.csproj
5151
--configuration Release
52-
--filter="TestCategory!=Smoke&TestCategory!=Images&TestCategory!=Uploads&TestCategory!=Moderations&TestCategory!=FineTuning&TestCategory!=Manual"
52+
--filter="TestCategory!=Smoke&TestCategory!=Images&TestCategory!=Uploads&TestCategory!=Moderations&TestCategory!=FineTuning&TestCategory!=Conversation&TestCategory!=Manual"
5353
--logger "trx;LogFilePrefix=live"
5454
--results-directory ${{ github.workspace }}/artifacts/test-results
5555
${{ env.version_suffix_args }}

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Release History
22

3+
## 2.1.0-beta.1 (2024-10-01)
4+
5+
With this updated preview library release, we're excited to bring early support for the newly-announced `/realtime` beta API. You can read more about `/realtime` here: https://openai.com/index/introducing-the-realtime-api/
6+
7+
Given the scope and recency of the feature area, the new `RealtimeConversationClient` is subject to substantial refinement and change over the coming weeks -- this release is purely intended to empower early development against `gpt-4o-realtime-preview` as quickly and efficiently as possible.
8+
9+
### Features Added
10+
11+
- Added a new `RealtimeConversationClient` in a corresponding scenario namespace. ([ff75da4](https://github.com/openai/openai-dotnet/commit/ff75da4167bc83fa85eb69ac142cab88a963ed06))
12+
- This maps to the new `/realtime` beta endpoint and is thus marked with a new `[Experimental("OPENAI002")]` diagnostic tag.
13+
- This is a very early version of the convenience surface and thus subject to significant change
14+
- Documentation and samples will arrive soon; in the interim, see [the scenario test files](/tests/RealtimeConversation) for basic usage
15+
- You can also find an external sample employing this client, together with Azure OpenAI support, at https://github.com/Azure-Samples/aoai-realtime-audio-sdk/tree/main/dotnet/samples/console
16+
317
## 2.0.0 (2024-09-30)
418

519
> [!NOTE]

src/OpenAI.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
<AssemblyTitle>SDK Code Generation OpenAI</AssemblyTitle>
77
<PackageTags>OpenAI;openai-dotnet;ChatGPT;Dall-E</PackageTags>
88

9-
<VersionPrefix>2.0.0</VersionPrefix>
10-
<VersionSuffix></VersionSuffix>
9+
<VersionPrefix>2.1.0</VersionPrefix>
10+
<VersionSuffix>beta.1</VersionSuffix>
1111

1212
<TargetFrameworks>netstandard2.0;net6.0</TargetFrameworks>
1313
<LangVersion>latest</LangVersion>

0 commit comments

Comments
 (0)