()
| 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. |
| 34 | export 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 | |
| 44 | export function getAntModels(): AntModel[] { |
| 45 | if (process.env.USER_TYPE !== 'ant') { |
no test coverage detected