File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed
models/spring-ai-openai/src/main/java/org/springframework/ai/openai/api Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -165,6 +165,16 @@ public enum ChatModel {
165
165
*/
166
166
GPT_3_5_TURBO ("gpt-3.5-turbo" ),
167
167
168
+ /**
169
+ * (new) The latest GPT-3.5 Turbo model with higher accuracy
170
+ * at responding in requested formats and a fix for a bug
171
+ * which caused a text encoding issue for non-English
172
+ * language function calls.
173
+ * Returns a maximum of 4,096
174
+ * Context window: 16k tokens
175
+ */
176
+ GPT_3_5_TURBO_0125 ("gpt-3.5-turbo-0125" ),
177
+
168
178
/**
169
179
* GPT-3.5 Turbo model with improved instruction following,
170
180
* JSON mode, reproducible outputs, parallel function calling,
@@ -500,7 +510,7 @@ public enum ChatCompletionFinishReason {
500
510
/**
501
511
* Only for compatibility with Mistral AI API.
502
512
*/
503
- @ JsonProperty ("tool_call" ) TOOL_CAL
513
+ @ JsonProperty ("tool_call" ) TOOL_CALL
504
514
}
505
515
506
516
/**
You can’t perform that action at this time.
0 commit comments