()
| 288 | } |
| 289 | |
| 290 | export function getOpusDefaultEffortConfig(): OpusDefaultEffortConfig { |
| 291 | const config = getFeatureValue_CACHED_MAY_BE_STALE( |
| 292 | 'ncode_grey_step2', |
| 293 | OPUS_DEFAULT_EFFORT_CONFIG_DEFAULT, |
| 294 | ) |
| 295 | return { |
| 296 | ...OPUS_DEFAULT_EFFORT_CONFIG_DEFAULT, |
| 297 | ...config, |
| 298 | } |
| 299 | } |
| 300 | |
| 301 | // @[MODEL LAUNCH]: Update the default effort levels for new models |
| 302 | export function getDefaultEffortForModel( |
no test coverage detected