File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
# Release History
2
2
3
- ## 2.0.0-beta.8 (2024-07-30 )
3
+ ## 2.0.0-beta.8 (2024-07-31 )
4
4
5
5
### Breaking Changes
6
6
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ public partial class ClientExamples
14
14
[ Test ]
15
15
public void CreateChatClient ( )
16
16
{
17
- ChatClient client = new ( "gpt-3.5-turbo " , Environment . GetEnvironmentVariable ( "OPENAI_API_KEY" ) ) ;
17
+ ChatClient client = new ( "gpt-4o " , Environment . GetEnvironmentVariable ( "OPENAI_API_KEY" ) ) ;
18
18
}
19
19
20
20
[ Test ]
Original file line number Diff line number Diff line change @@ -776,7 +776,7 @@ public async Task Pagination_CanRehydrateAssistantPageCollectionFromBytes()
776
776
// Create assistant collection
777
777
for ( int i = 0 ; i < 10 ; i ++ )
778
778
{
779
- Assistant assistant = client . CreateAssistant ( "gpt-3.5-turbo " , new AssistantCreationOptions ( )
779
+ Assistant assistant = client . CreateAssistant ( "gpt-4o-mini " , new AssistantCreationOptions ( )
780
780
{
781
781
Name = $ "Test Assistant { i } "
782
782
} ) ;
@@ -834,7 +834,7 @@ public async Task Pagination_CanRehydrateAssistantPageCollectionFromPageToken()
834
834
// Create assistant collection
835
835
for ( int i = 0 ; i < 10 ; i ++ )
836
836
{
837
- Assistant assistant = client . CreateAssistant ( "gpt-3.5-turbo " , new AssistantCreationOptions ( )
837
+ Assistant assistant = client . CreateAssistant ( "gpt-4o-mini " , new AssistantCreationOptions ( )
838
838
{
839
839
Name = $ "Test Assistant { i } "
840
840
} ) ;
@@ -890,7 +890,7 @@ public async Task Pagination_CanCastAssistantPageCollectionToConvenienceFromProt
890
890
// Create assistant collection
891
891
for ( int i = 0 ; i < 10 ; i ++ )
892
892
{
893
- Assistant assistant = client . CreateAssistant ( "gpt-3.5-turbo " , new AssistantCreationOptions ( )
893
+ Assistant assistant = client . CreateAssistant ( "gpt-4o-mini " , new AssistantCreationOptions ( )
894
894
{
895
895
Name = $ "Test Assistant { i } "
896
896
} ) ;
You can’t perform that action at this time.
0 commit comments