Skip to content

Commit

Permalink
Roll 2.0.0-beta.8 release date (#153)
Browse files Browse the repository at this point in the history
  • Loading branch information
joseharriaga authored Jul 31, 2024
1 parent f6e1c21 commit 0a781f1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release History

## 2.0.0-beta.8 (2024-07-30)
## 2.0.0-beta.8 (2024-07-31)

### Breaking Changes

Expand Down
2 changes: 1 addition & 1 deletion examples/ClientExamples.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public partial class ClientExamples
[Test]
public void CreateChatClient()
{
ChatClient client = new("gpt-3.5-turbo", Environment.GetEnvironmentVariable("OPENAI_API_KEY"));
ChatClient client = new("gpt-4o", Environment.GetEnvironmentVariable("OPENAI_API_KEY"));
}

[Test]
Expand Down
6 changes: 3 additions & 3 deletions tests/Assistants/AssistantTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -776,7 +776,7 @@ public async Task Pagination_CanRehydrateAssistantPageCollectionFromBytes()
// Create assistant collection
for (int i = 0; i < 10; i++)
{
Assistant assistant = client.CreateAssistant("gpt-3.5-turbo", new AssistantCreationOptions()
Assistant assistant = client.CreateAssistant("gpt-4o-mini", new AssistantCreationOptions()
{
Name = $"Test Assistant {i}"
});
Expand Down Expand Up @@ -834,7 +834,7 @@ public async Task Pagination_CanRehydrateAssistantPageCollectionFromPageToken()
// Create assistant collection
for (int i = 0; i < 10; i++)
{
Assistant assistant = client.CreateAssistant("gpt-3.5-turbo", new AssistantCreationOptions()
Assistant assistant = client.CreateAssistant("gpt-4o-mini", new AssistantCreationOptions()
{
Name = $"Test Assistant {i}"
});
Expand Down Expand Up @@ -890,7 +890,7 @@ public async Task Pagination_CanCastAssistantPageCollectionToConvenienceFromProt
// Create assistant collection
for (int i = 0; i < 10; i++)
{
Assistant assistant = client.CreateAssistant("gpt-3.5-turbo", new AssistantCreationOptions()
Assistant assistant = client.CreateAssistant("gpt-4o-mini", new AssistantCreationOptions()
{
Name = $"Test Assistant {i}"
});
Expand Down

0 comments on commit 0a781f1

Please sign in to comment.