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 11# Release History
22
3- ## 2.0.0-beta.8 (2024-07-30 )
3+ ## 2.0.0-beta.8 (2024-07-31 )
44
55### Breaking Changes
66
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ public partial class ClientExamples
1414 [ Test ]
1515 public void CreateChatClient ( )
1616 {
17- ChatClient client = new ( "gpt-3.5-turbo " , Environment . GetEnvironmentVariable ( "OPENAI_API_KEY" ) ) ;
17+ ChatClient client = new ( "gpt-4o " , Environment . GetEnvironmentVariable ( "OPENAI_API_KEY" ) ) ;
1818 }
1919
2020 [ Test ]
Original file line number Diff line number Diff line change @@ -776,7 +776,7 @@ public async Task Pagination_CanRehydrateAssistantPageCollectionFromBytes()
776776 // Create assistant collection
777777 for ( int i = 0 ; i < 10 ; i ++ )
778778 {
779- Assistant assistant = client . CreateAssistant ( "gpt-3.5-turbo " , new AssistantCreationOptions ( )
779+ Assistant assistant = client . CreateAssistant ( "gpt-4o-mini " , new AssistantCreationOptions ( )
780780 {
781781 Name = $ "Test Assistant { i } "
782782 } ) ;
@@ -834,7 +834,7 @@ public async Task Pagination_CanRehydrateAssistantPageCollectionFromPageToken()
834834 // Create assistant collection
835835 for ( int i = 0 ; i < 10 ; i ++ )
836836 {
837- Assistant assistant = client . CreateAssistant ( "gpt-3.5-turbo " , new AssistantCreationOptions ( )
837+ Assistant assistant = client . CreateAssistant ( "gpt-4o-mini " , new AssistantCreationOptions ( )
838838 {
839839 Name = $ "Test Assistant { i } "
840840 } ) ;
@@ -890,7 +890,7 @@ public async Task Pagination_CanCastAssistantPageCollectionToConvenienceFromProt
890890 // Create assistant collection
891891 for ( int i = 0 ; i < 10 ; i ++ )
892892 {
893- Assistant assistant = client . CreateAssistant ( "gpt-3.5-turbo " , new AssistantCreationOptions ( )
893+ Assistant assistant = client . CreateAssistant ( "gpt-4o-mini " , new AssistantCreationOptions ( )
894894 {
895895 Name = $ "Test Assistant { i } "
896896 } ) ;
You can’t perform that action at this time.
0 commit comments