chore: fix lint/format

This commit is contained in:
Peter Steinberger
2026-01-20 13:52:59 +00:00
parent a81989048d
commit d69f246ba7
11 changed files with 25 additions and 43 deletions

View File

@@ -55,8 +55,7 @@ export function resolveModel(
const inlineModels = buildInlineProviderModels(providers);
const normalizedProvider = normalizeProviderId(provider);
const inlineMatch = inlineModels.find(
(entry) =>
normalizeProviderId(entry.provider) === normalizedProvider && entry.id === modelId,
(entry) => normalizeProviderId(entry.provider) === normalizedProvider && entry.id === modelId,
);
if (inlineMatch) {
const normalized = normalizeModelCompat(inlineMatch as Model<Api>);