Contexts
Release rolling / release (push) Successful in 9m38s

This commit is contained in:
2026-08-18 21:29:16 -04:00
parent 6886335351
commit 7184b17553
10 changed files with 351 additions and 152 deletions
@@ -20,6 +20,11 @@ test('QVAC catalog covers profiles and extra chat ids', async (t) => {
t.ok(ids.includes('GEMMA4_2B_MULTIMODAL_Q4_K_M'))
t.is(s.bareAgentQvacModelForProfile('recommended').id, 'QWEN3_1_7B_INST_Q4')
t.is(s.bareAgentQvacModelForProfile('strong').id, 'QWEN3_4B_INST_Q4_K_M')
for (const m of s.BARE_AGENT_QVAC_CHAT_MODELS) {
t.ok(m.ctxSize >= 8192, m.id + ' missing ctxSize')
}
t.is(s.bareAgentQvacFindChatModel('QWEN3_5_4B_MULTIMODAL_Q4_K_M').ctxSize, 262144)
t.is(s.bareAgentQvacFindChatModel('GEMMA4_2B_MULTIMODAL_Q4_K_M').ctxSize, 131072)
})
test('parse OpenAI models skips embeddings and sorts', async (t) => {