File tree Expand file tree Collapse file tree 1 file changed +22
-11
lines changed Expand file tree Collapse file tree 1 file changed +22
-11
lines changed Original file line number Diff line number Diff line change @@ -9,35 +9,44 @@ const models: ProviderConfigType = {
9
9
maxContext : 400000 ,
10
10
maxTokens : 128000 ,
11
11
quoteMaxToken : 400000 ,
12
- maxTemperature : 1.2 ,
13
- responseFormatList : [ 'text' , 'json_object' , ' json_schema'] ,
12
+ maxTemperature : null ,
13
+ responseFormatList : [ 'text' , 'json_schema' ] ,
14
14
vision : true ,
15
15
reasoning : false ,
16
- toolChoice : true
16
+ toolChoice : true ,
17
+ fieldMap : {
18
+ max_tokens : 'max_completion_tokens'
19
+ }
17
20
} ,
18
21
{
19
22
type : ModelTypeEnum . llm ,
20
23
model : 'gpt-5-mini' ,
21
24
maxContext : 400000 ,
22
25
maxTokens : 128000 ,
23
26
quoteMaxToken : 400000 ,
24
- maxTemperature : 1.2 ,
25
- responseFormatList : [ 'text' , 'json_object' , ' json_schema'] ,
27
+ maxTemperature : null ,
28
+ responseFormatList : [ 'text' , 'json_schema' ] ,
26
29
vision : true ,
27
30
reasoning : false ,
28
- toolChoice : true
31
+ toolChoice : true ,
32
+ fieldMap : {
33
+ max_tokens : 'max_completion_tokens'
34
+ }
29
35
} ,
30
36
{
31
37
type : ModelTypeEnum . llm ,
32
38
model : 'gpt-5-nano' ,
33
39
maxContext : 400000 ,
34
40
maxTokens : 128000 ,
35
41
quoteMaxToken : 400000 ,
36
- maxTemperature : 1.2 ,
37
- responseFormatList : [ 'text' , 'json_object' , ' json_schema'] ,
42
+ maxTemperature : null ,
43
+ responseFormatList : [ 'text' , 'json_schema' ] ,
38
44
vision : true ,
39
45
reasoning : false ,
40
- toolChoice : true
46
+ toolChoice : true ,
47
+ fieldMap : {
48
+ max_tokens : 'max_completion_tokens'
49
+ }
41
50
} ,
42
51
{
43
52
type : ModelTypeEnum . llm ,
@@ -46,10 +55,12 @@ const models: ProviderConfigType = {
46
55
maxTokens : 128000 ,
47
56
quoteMaxToken : 400000 ,
48
57
maxTemperature : 1.2 ,
49
- responseFormatList : [ 'text' , 'json_object' , 'json_schema' ] ,
50
58
vision : true ,
51
59
reasoning : false ,
52
- toolChoice : true
60
+ toolChoice : true ,
61
+ fieldMap : {
62
+ max_tokens : 'max_completion_tokens'
63
+ }
53
64
} ,
54
65
55
66
{
You can’t perform that action at this time.
0 commit comments