diff --git a/src/providers/deepinfra-shared.ts b/src/providers/deepinfra-shared.ts index 82e8cfb9793..10c99998812 100644 --- a/src/providers/deepinfra-shared.ts +++ b/src/providers/deepinfra-shared.ts @@ -1,7 +1,6 @@ export const DEEPINFRA_BASE_URL = "https://api.deepinfra.com/v1/openai/"; export const DEEPINFRA_DEFAULT_MODEL_ID = "openai/gpt-oss-120b"; export const DEEPINFRA_DEFAULT_MODEL_REF = `deepinfra/${DEEPINFRA_DEFAULT_MODEL_ID}`; -export const DEEPINFRA_DEFAULT_MODEL_NAME = "gpt-oss-120b"; export type DeepInfraModelCatalogEntry = { id: string; name: string; @@ -11,6 +10,8 @@ export type DeepInfraModelCatalogEntry = { maxTokens: number; }; +const DEEPINFRA_DEFAULT_MODEL_NAME = "gpt-oss-120b"; + /** * Static fallback catalog used by the sync onboarding path and as a * fallback when dynamic model discovery from the gateway API fails.