diff --git a/src/commands/models/list.rows.ts b/src/commands/models/list.rows.ts index 85509513f55..4a432f80030 100644 --- a/src/commands/models/list.rows.ts +++ b/src/commands/models/list.rows.ts @@ -401,6 +401,9 @@ export async function appendCatalogSupplementRows(params: { continue; } const key = modelKey(entry.provider, entry.id); + if (params.seenKeys.has(key)) { + continue; + } const model = resolveModelWithRegistry({ provider: entry.provider, modelId: entry.id,