File tree 4 files changed +17
-11
lines changed
api-documentation/src/yml
nodes/chatmodels/ChatOpenAI
4 files changed +17
-11
lines changed Original file line number Diff line number Diff line change @@ -778,11 +778,11 @@ paths:
778
778
' 200 ' :
779
779
description : Successfully execute refresh operation
780
780
content :
781
- application/json :
782
- schema :
783
- type : array
784
- items :
785
- $ref : ' #/components/schemas/VectorUpsertResponse'
781
+ application/json :
782
+ schema :
783
+ type : array
784
+ items :
785
+ $ref : ' #/components/schemas/VectorUpsertResponse'
786
786
787
787
' 400 ' :
788
788
description : Invalid request body
@@ -1036,11 +1036,11 @@ paths:
1036
1036
required : true
1037
1037
responses :
1038
1038
' 200 ' :
1039
- description : Feedback successfully created
1040
- content :
1041
- application/json :
1042
- schema :
1043
- $ref : ' #/components/schemas/ChatMessageFeedback'
1039
+ description : Feedback successfully created
1040
+ content :
1041
+ application/json :
1042
+ schema :
1043
+ $ref : ' #/components/schemas/ChatMessageFeedback'
1044
1044
' 400 ' :
1045
1045
description : Invalid input provided
1046
1046
' 500 ' :
Original file line number Diff line number Diff line change 320
320
{
321
321
"name" : " chatAnthropic" ,
322
322
"models" : [
323
+ {
324
+ "label" : " claude-3-7-sonnet-latest" ,
325
+ "name" : " claude-3-7-sonnet-latest" ,
326
+ "description" : " Most recent snapshot version of Claude Sonnet 3.7 model - hybrid reasoning model"
327
+ },
323
328
{
324
329
"label" : " claude-3-5-haiku-latest" ,
325
330
"name" : " claude-3-5-haiku-latest" ,
Original file line number Diff line number Diff line change @@ -241,7 +241,7 @@ class ChatOpenAI_ChatModels implements INode {
241
241
streaming : streaming ?? true
242
242
}
243
243
244
- if ( modelName === 'o3-mini' ) {
244
+ if ( modelName . includes ( 'o3' ) ) {
245
245
delete obj . temperature
246
246
}
247
247
if ( ( modelName . includes ( 'o1' ) || modelName . includes ( 'o3' ) ) && reasoningEffort ) {
You can’t perform that action at this time.
0 commit comments