Merge pull request #435 from Kilo-Org/kevinvandijk/kilo-opencode-v1.1.63

OpenCode v1.1.63
This commit is contained in:
Kevin van Dijk
2026-02-18 17:58:36 +01:00
committed by GitHub
+3 -3
View File
@@ -366,9 +366,9 @@ export async function CodexAuthPlugin(input: PluginInput): Promise<Hooks> {
"gpt-5.1-codex",
])
for (const modelId of Object.keys(provider.models)) {
if (!allowedModels.has(modelId)) {
delete provider.models[modelId]
}
if (modelId.includes("codex")) continue
if (allowedModels.has(modelId)) continue
delete provider.models[modelId]
}
if (!provider.models["gpt-5.3-codex"]) {