()
| 62 | } |
| 63 | |
| 64 | function getConfiguredDefaultOpusModelEnv(): string | undefined { |
| 65 | // Temporary Anthropic-family carryover. Keep launch-compatible now, then |
| 66 | // replace with Noumena-native tier naming in the next model-contract pass. |
| 67 | return ( |
| 68 | process.env.NOUMENA_DEFAULT_OPUS_MODEL || |
| 69 | process.env.ANTHROPIC_DEFAULT_OPUS_MODEL |
| 70 | ) |
| 71 | } |
| 72 | |
| 73 | function getConfiguredDefaultFlashModelEnv(): string | undefined { |
| 74 | // Temporary Anthropic-family carryover. Keep launch-compatible now, then |
no outgoing calls
no test coverage detected