Rebuilding provider model limits prevents removed entries from leaking into later compaction decisions after config changes. Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
125 lines
3.3 KiB
TypeScript
125 lines
3.3 KiB
TypeScript
/// <reference types="bun-types" />
|
|
|
|
import { describe, expect, test } from "bun:test"
|
|
import { applyProviderConfig } from "./provider-config-handler"
|
|
import { createModelCacheState } from "../plugin-state"
|
|
import { clearVisionCapableModelsCache, readVisionCapableModelsCache } from "../shared/vision-capable-models-cache"
|
|
|
|
describe("applyProviderConfig", () => {
|
|
test("clears stale model context limits when provider config changes", () => {
|
|
// given
|
|
const modelCacheState = createModelCacheState()
|
|
applyProviderConfig({
|
|
config: {
|
|
provider: {
|
|
opencode: {
|
|
models: {
|
|
"kimi-k2.5-free": {
|
|
limit: { context: 262144 },
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
modelCacheState,
|
|
})
|
|
|
|
// when
|
|
applyProviderConfig({
|
|
config: {
|
|
provider: {
|
|
google: {
|
|
models: {
|
|
"gemini-2.5-pro": {
|
|
limit: { context: 1048576 },
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
modelCacheState,
|
|
})
|
|
|
|
// then
|
|
expect(Array.from(modelCacheState.modelContextLimitsCache.entries())).toEqual([
|
|
["google/gemini-2.5-pro", 1048576],
|
|
])
|
|
})
|
|
|
|
test("caches vision-capable models from modalities and capabilities", () => {
|
|
// given
|
|
const modelCacheState = createModelCacheState()
|
|
const visionCapableModelsCache = modelCacheState.visionCapableModelsCache
|
|
if (!visionCapableModelsCache) {
|
|
throw new Error("visionCapableModelsCache should be initialized")
|
|
}
|
|
const config = {
|
|
provider: {
|
|
rundao: {
|
|
models: {
|
|
"public/qwen3.5-397b": {
|
|
modalities: {
|
|
input: ["text", "image"],
|
|
},
|
|
},
|
|
"public/text-only": {
|
|
modalities: {
|
|
input: ["text"],
|
|
},
|
|
},
|
|
},
|
|
},
|
|
google: {
|
|
models: {
|
|
"gemini-3-flash": {
|
|
capabilities: {
|
|
input: {
|
|
image: true,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
} satisfies Record<string, unknown>
|
|
|
|
// when
|
|
applyProviderConfig({ config, modelCacheState })
|
|
|
|
// then
|
|
expect(Array.from(visionCapableModelsCache.keys())).toEqual([
|
|
"rundao/public/qwen3.5-397b",
|
|
"google/gemini-3-flash",
|
|
])
|
|
expect(readVisionCapableModelsCache()).toEqual([
|
|
{ providerID: "rundao", modelID: "public/qwen3.5-397b" },
|
|
{ providerID: "google", modelID: "gemini-3-flash" },
|
|
])
|
|
})
|
|
|
|
test("clears stale vision-capable models when provider config changes", () => {
|
|
// given
|
|
const modelCacheState = createModelCacheState()
|
|
const visionCapableModelsCache = modelCacheState.visionCapableModelsCache
|
|
if (!visionCapableModelsCache) {
|
|
throw new Error("visionCapableModelsCache should be initialized")
|
|
}
|
|
visionCapableModelsCache.set("stale/old-model", {
|
|
providerID: "stale",
|
|
modelID: "old-model",
|
|
})
|
|
|
|
// when
|
|
applyProviderConfig({
|
|
config: { provider: {} },
|
|
modelCacheState,
|
|
})
|
|
|
|
// then
|
|
expect(visionCapableModelsCache.size).toBe(0)
|
|
expect(readVisionCapableModelsCache()).toEqual([])
|
|
})
|
|
})
|
|
|
|
clearVisionCapableModelsCache()
|