()
| 342 | } |
| 343 | |
| 344 | function 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. |
no outgoing calls
no test coverage detected