refactor: remove stale provider helpers

This commit is contained in:
Peter Steinberger
2026-05-01 11:09:47 +01:00
parent 61db2e06d5
commit bf7ac8d8c4
10 changed files with 0 additions and 41 deletions

View File

@@ -6,7 +6,6 @@ const MISTRAL_MANIFEST_CATALOG = manifest.modelCatalog.providers.mistral;
export const MISTRAL_BASE_URL = MISTRAL_MANIFEST_CATALOG.baseUrl;
export const MISTRAL_DEFAULT_MODEL_ID = "mistral-large-latest";
export const MISTRAL_DEFAULT_MODEL_REF = `mistral/${MISTRAL_DEFAULT_MODEL_ID}`;
function requireMistralManifestModel(id: string): (typeof MISTRAL_MANIFEST_CATALOG.models)[number] {
const model = MISTRAL_MANIFEST_CATALOG.models.find((entry) => entry.id === id);