MCPcopy
hub / github.com/claude-code-best/claude-code / getChatGPTCodexModelOptions

Function getChatGPTCodexModelOptions

src/utils/model/modelOptions.ts:344–359  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

342}
343
344function getChatGPTCodexModelOptions(): ModelOption[] {
345 return [
346 {
347 value: null,
348 label: 'Default (recommended)',
349 description: `Use the default ChatGPT Codex model (currently ${CHATGPT_CODEX_DEFAULT_MODEL})`,
350 descriptionForModel: `Default ChatGPT Codex model (currently ${CHATGPT_CODEX_DEFAULT_MODEL})`,
351 },
352 ...CHATGPT_CODEX_MODEL_OPTIONS.map(model => ({
353 value: model.value,
354 label: model.label,
355 description: model.description,
356 descriptionForModel: `${model.description} (${model.value})`,
357 })),
358 ]
359}
360
361// @[MODEL LAUNCH]: Update the model picker lists below to include/reorder options for the new model.
362// Each user tier (ant, Max/Team Premium, Pro/Team Standard/Enterprise, PAYG 1P, PAYG 3P) has its own list.

Callers 1

getModelOptionsBaseFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected