Remove the export for DEEPINFRA_DEFAULT_MODEL_NAME

This commit is contained in:
Georgi Atsev 2026-03-20 11:03:47 +02:00
parent d3b2515e0e
commit ef8adf3306

View File

@ -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.