From ef8adf3306448b94509835bbcefd0c230f3d78e1 Mon Sep 17 00:00:00 2001 From: Georgi Atsev Date: Fri, 20 Mar 2026 11:03:47 +0200 Subject: [PATCH] Remove the export for DEEPINFRA_DEFAULT_MODEL_NAME --- src/providers/deepinfra-shared.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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.