MCPcopy
hub / github.com/codeaashu/claude-code / getAntModelOverrideConfig

Function getAntModelOverrideConfig

src/utils/model/antModels.ts:34–42  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

32// @[MODEL LAUNCH]: Update tengu_ant_model_override with new ant-only models
33// @[MODEL LAUNCH]: Add the codename to scripts/excluded-strings.txt to prevent it from leaking to external builds.
34export function getAntModelOverrideConfig(): AntModelOverrideConfig | null {
35 if (process.env.USER_TYPE !== 'ant') {
36 return null
37 }
38 return getFeatureValue_CACHED_MAY_BE_STALE<AntModelOverrideConfig | null>(
39 'tengu_ant_model_override',
40 null,
41 )
42}
43
44export function getAntModels(): AntModel[] {
45 if (process.env.USER_TYPE !== 'ant') {

Callers 4

getDefaultEffortForModelFunction · 0.85
getAntModelsFunction · 0.85

Tested by

no test coverage detected