@@ -21,7 +21,80 @@ export const openaiChatModels: AIChatModelCard[] = [
2121 {
2222 abilities : {
2323 functionCall : true ,
24- imageOutput : true ,
24+ reasoning : true ,
25+ search : true ,
26+ structuredOutput : true ,
27+ vision : true ,
28+ } ,
29+ contextWindowTokens : 400_000 ,
30+ description : 'GPT-5.2 — 面向编码与 agentic 工作流的旗舰模型,提供更强推理与长上下文能力。' ,
31+ displayName : 'GPT-5.2' ,
32+ enabled : true ,
33+ id : 'gpt-5.2' ,
34+ maxOutput : 128_000 ,
35+ pricing : {
36+ units : [
37+ { name : 'textInput' , rate : 1.75 , strategy : 'fixed' , unit : 'millionTokens' } ,
38+ { name : 'textInput_cacheRead' , rate : 0.175 , strategy : 'fixed' , unit : 'millionTokens' } ,
39+ { name : 'textOutput' , rate : 14 , strategy : 'fixed' , unit : 'millionTokens' } ,
40+ ] ,
41+ } ,
42+ releasedAt : '2025-12-11' ,
43+ settings : {
44+ extendParams : [ 'gpt5_1ReasoningEffort' , 'textVerbosity' ] ,
45+ searchImpl : 'params' ,
46+ } ,
47+ type : 'chat' ,
48+ } ,
49+ {
50+ abilities : {
51+ functionCall : true ,
52+ reasoning : true ,
53+ search : true ,
54+ vision : true ,
55+ } ,
56+ contextWindowTokens : 400_000 ,
57+ description :
58+ 'GPT-5.2 pro:更聪明、更精确的 GPT-5.2 版本(Responses API Only),适合高难度问题与更长的多轮推理。' ,
59+ displayName : 'GPT-5.2 pro' ,
60+ id : 'gpt-5.2-pro' ,
61+ maxOutput : 128_000 ,
62+ pricing : {
63+ units : [
64+ { name : 'textInput' , rate : 21 , strategy : 'fixed' , unit : 'millionTokens' } ,
65+ { name : 'textOutput' , rate : 168 , strategy : 'fixed' , unit : 'millionTokens' } ,
66+ ] ,
67+ } ,
68+ releasedAt : '2025-12-11' ,
69+ settings : {
70+ searchImpl : 'params' ,
71+ } ,
72+ type : 'chat' ,
73+ } ,
74+ {
75+ abilities : {
76+ functionCall : true ,
77+ vision : true ,
78+ } ,
79+ contextWindowTokens : 128_000 ,
80+ description : 'GPT-5.2 Chat:ChatGPT 使用的 GPT-5.2 变体(chat-latest),用于体验最新对话改进。' ,
81+ displayName : 'GPT-5.2 Chat' ,
82+ enabled : true ,
83+ id : 'gpt-5.2-chat-latest' ,
84+ maxOutput : 16_384 ,
85+ pricing : {
86+ units : [
87+ { name : 'textInput' , rate : 1.75 , strategy : 'fixed' , unit : 'millionTokens' } ,
88+ { name : 'textInput_cacheRead' , rate : 0.175 , strategy : 'fixed' , unit : 'millionTokens' } ,
89+ { name : 'textOutput' , rate : 14 , strategy : 'fixed' , unit : 'millionTokens' } ,
90+ ] ,
91+ } ,
92+ releasedAt : '2025-12-11' ,
93+ type : 'chat' ,
94+ } ,
95+ {
96+ abilities : {
97+ functionCall : true ,
2598 reasoning : true ,
2699 search : true ,
27100 vision : true ,
@@ -30,7 +103,6 @@ export const openaiChatModels: AIChatModelCard[] = [
30103 description :
31104 'GPT-5.1 — 针对编码和 agent 任务优化的旗舰模型,支持可配置的推理强度与更长上下文。' ,
32105 displayName : 'GPT-5.1' ,
33- enabled : true ,
34106 id : 'gpt-5.1' ,
35107 maxOutput : 128_000 ,
36108 pricing : {
@@ -55,7 +127,6 @@ export const openaiChatModels: AIChatModelCard[] = [
55127 contextWindowTokens : 128_000 ,
56128 description : 'GPT-5.1 Chat:用于 ChatGPT 的 GPT-5.1 变体,适合聊天场景。' ,
57129 displayName : 'GPT-5.1 Chat' ,
58- enabled : true ,
59130 id : 'gpt-5.1-chat-latest' ,
60131 maxOutput : 16_384 ,
61132 pricing : {
@@ -71,7 +142,6 @@ export const openaiChatModels: AIChatModelCard[] = [
71142 {
72143 abilities : {
73144 functionCall : true ,
74- imageOutput : true ,
75145 reasoning : true ,
76146 search : true ,
77147 vision : true ,
@@ -99,7 +169,6 @@ export const openaiChatModels: AIChatModelCard[] = [
99169 {
100170 abilities : {
101171 functionCall : true ,
102- imageOutput : true ,
103172 reasoning : true ,
104173 search : true ,
105174 vision : true ,
0 commit comments