MCPcopy Index your code
hub / github.com/codeaashu/claude-code / getBuiltinModelStrings

Function getBuiltinModelStrings

src/utils/model/modelStrings.ts:25–31  ·  view source on GitHub ↗
(provider: APIProvider)

Source from the content-addressed store, hash-verified

23const MODEL_KEYS = Object.keys(ALL_MODEL_CONFIGS) as ModelKey[]
24
25function getBuiltinModelStrings(provider: APIProvider): ModelStrings {
26 const out = {} as ModelStrings
27 for (const key of MODEL_KEYS) {
28 out[key] = ALL_MODEL_CONFIGS[key][provider]
29 }
30 return out
31}
32
33async function getBedrockModelStrings(): Promise<ModelStrings> {
34 const fallback = getBuiltinModelStrings('bedrock')

Callers 4

getBedrockModelStringsFunction · 0.85
initModelStringsFunction · 0.85
getModelStringsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected