()
| 81 | } |
| 82 | |
| 83 | function getConfiguredDefaultHaikuModelEnv(): string | undefined { |
| 84 | // Temporary Anthropic-family carryover. Keep launch-compatible now, then |
| 85 | // replace with Noumena-native tier naming in the next model-contract pass. |
| 86 | return ( |
| 87 | process.env.NOUMENA_DEFAULT_HAIKU_MODEL || |
| 88 | process.env.ANTHROPIC_DEFAULT_HAIKU_MODEL |
| 89 | ) |
| 90 | } |
| 91 | |
| 92 | export function getSmallFastModel(): ModelName { |
| 93 | return getConfiguredSmallFastModelEnv() || getDefaultHaikuModel() |
no outgoing calls
no test coverage detected