()
| 71 | } |
| 72 | |
| 73 | function getConfiguredDefaultFlashModelEnv(): string | undefined { |
| 74 | // Temporary Anthropic-family carryover. Keep launch-compatible now, then |
| 75 | // replace with Noumena-native tier naming in the next model-contract pass. |
| 76 | return ( |
| 77 | process.env.NOUMENA_DEFAULT_FLASH_MODEL || |
| 78 | process.env.NOUMENA_DEFAULT_SONNET_MODEL || |
| 79 | process.env.ANTHROPIC_DEFAULT_SONNET_MODEL |
| 80 | ) |
| 81 | } |
| 82 | |
| 83 | function getConfiguredDefaultHaikuModelEnv(): string | undefined { |
| 84 | // Temporary Anthropic-family carryover. Keep launch-compatible now, then |
no outgoing calls
no test coverage detected