(model: string)
| 387 | // ============================================================================= |
| 388 | |
| 389 | const getSystemMessageMode = (model: string): "system" | "developer" => |
| 390 | model.startsWith("o") || |
| 391 | model.startsWith("gpt-5") || |
| 392 | model.startsWith("codex-") || |
| 393 | model.startsWith("computer-use") |
| 394 | ? "developer" |
| 395 | : "system" |
| 396 | |
| 397 | const prepareMessages: ( |
| 398 | options: LanguageModel.ProviderOptions, |
no outgoing calls
no test coverage detected