the claude code sourcemaps leaked march 31
1import { CLAUDE_OPUS_4_6_CONFIG } from '../model/configs.js'
2import { getAPIProvider } from '../model/providers.js'
3
4// @[MODEL LAUNCH]: Update the fallback model below.
5// When the user has never set teammateDefaultModel in /config, new teammates
6// use Opus 4.6. Must be provider-aware so Bedrock/Vertex/Foundry customers get
7// the correct model ID.
8export function getHardcodedTeammateModelFallback(): string {
9 return CLAUDE_OPUS_4_6_CONFIG[getAPIProvider()]
10}