Skip to content

Commit

Permalink
Use GPT-3.5 for the “return errors” test
Browse files Browse the repository at this point in the history
The default model has a too large context window for this test.
  • Loading branch information
ccreutzi committed Oct 7, 2024
1 parent 57cf331 commit f32f743
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/topenAIChat.m
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ function gpt35TurboErrorsForImages(testCase)
end

function doReturnErrors(testCase)
chat = openAIChat;
chat = openAIChat(ModelName="gpt-3.5-turbo");
% This input is considerably longer than accepted as input for
% GPT-3.5 (16385 tokens)
wayTooLong = string(repmat('a ',1,20000));
Expand Down

0 comments on commit f32f743

Please sign in to comment.