File tree Expand file tree Collapse file tree 2 files changed +1
-13
lines changed Expand file tree Collapse file tree 2 files changed +1
-13
lines changed Original file line number Diff line number Diff line change @@ -65,10 +65,6 @@ export const chatgptApiModelKeys = [
6565 'chatgptApi4_1' ,
6666 'chatgptApi4_1_mini' ,
6767 'chatgptApi4_1_nano' ,
68- 'chatgptApiO1Preview' ,
69- 'chatgptApiO1Mini' ,
70- 'chatgptApiO3Preview' ,
71- 'chatgptApiO3Mini' ,
7268 'chatgptApiO4Mini' ,
7369 'chatgptApiGpt5' ,
7470 'chatgptApiGpt5Mini' ,
@@ -264,10 +260,6 @@ export const Models = {
264260 chatgptApi4_1_mini : { value : 'gpt-4.1-mini' , desc : 'ChatGPT (GPT-4.1 mini)' } ,
265261 chatgptApi4_1_nano : { value : 'gpt-4.1-nano' , desc : 'ChatGPT (GPT-4.1 nano)' } ,
266262
267- chatgptApiO1Preview : { value : 'o1-preview' , desc : 'ChatGPT (o1-preview)' } ,
268- chatgptApiO1Mini : { value : 'o1-mini' , desc : 'ChatGPT (o1-mini)' } ,
269- chatgptApiO3Preview : { value : 'o3-preview' , desc : 'ChatGPT (o3-preview)' } ,
270- chatgptApiO3Mini : { value : 'o3-mini' , desc : 'ChatGPT (o3-mini)' } ,
271263 chatgptApiO4Mini : { value : 'o4-mini' , desc : 'ChatGPT (o4-mini)' } ,
272264 chatgptApiGpt5 : { value : 'gpt-5' , desc : 'ChatGPT (gpt-5)' } ,
273265 chatgptApiGpt5Mini : { value : 'gpt-5-mini' , desc : 'ChatGPT (gpt-5-mini)' } ,
Original file line number Diff line number Diff line change @@ -169,11 +169,7 @@ export function isUsingReasoningModel(configOrSession) {
169169 const modelValue = getModelValue ( configOrSession )
170170 return (
171171 modelValue &&
172- ( modelValue === 'o1-preview' ||
173- modelValue === 'o1-mini' ||
174- modelValue === 'o3-preview' ||
175- modelValue === 'o3-mini' ||
176- modelValue === 'o4-mini' ||
172+ ( modelValue === 'o4-mini' ||
177173 modelValue === 'gpt-5' ||
178174 modelValue === 'gpt-5-mini' ||
179175 modelValue === 'gpt-5-nano' )
You can’t perform that action at this time.
0 commit comments