chore(provider): remove unused pruning functions

This commit is contained in:
Gustavo Madeira Santana
2026-02-23 21:30:59 -05:00
parent 4032390572
commit 207ec7cfae
4 changed files with 4 additions and 162 deletions

View File

@@ -8,7 +8,6 @@ import {
applyModelAllowlist,
applyModelFallbacksFromSelection,
applyPrimaryModel,
pruneKilocodeProviderModelsToAllowlist,
promptDefaultModel,
promptModelAllowlist,
} from "./model-picker.js";
@@ -127,7 +126,6 @@ export async function promptAuthConfig(
});
if (allowlistSelection.models) {
next = applyModelAllowlist(next, allowlistSelection.models);
next = pruneKilocodeProviderModelsToAllowlist(next, allowlistSelection.models);
next = applyModelFallbacksFromSelection(next, allowlistSelection.models);
}
}