Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/config/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ export const chatgptApiModelKeys = [
'chatgptApi35_0125',
'chatgptApi4o_128k',
'chatgptApi4oLatest',
'chatgptApi5Latest',
'chatgptApi4oMini',
'chatgptApi4_8k',
'chatgptApi4_8k_0613',
Expand Down Expand Up @@ -249,6 +250,7 @@ export const Models = {
desc: 'ChatGPT (GPT-4-Turbo 128k 0125 Preview)',
},
chatgptApi4oLatest: { value: 'chatgpt-4o-latest', desc: 'ChatGPT (ChatGPT-4o latest)' },
chatgptApi5Latest: { value: 'gpt-5-chat-latest', desc: 'ChatGPT (ChatGPT-5 latest)' },

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

For consistency with other model descriptions in this file, it would be better to use GPT-5 instead of ChatGPT-5 inside the description string. Most other models use the GPT- prefix in their descriptions (e.g., ChatGPT (GPT-4-8k), ChatGPT (GPT-3.5-turbo)). While chatgptApi4oLatest has a similar format, standardizing new entries will improve maintainability.

  chatgptApi5Latest: { value: 'gpt-5-chat-latest', desc: 'ChatGPT (GPT-5 latest)' },


chatgptApi4_1: { value: 'gpt-4.1', desc: 'ChatGPT (GPT-4.1)' },
chatgptApi4_1_mini: { value: 'gpt-4.1-mini', desc: 'ChatGPT (GPT-4.1 mini)' },
Expand Down