fix(tests): route the cross-adapter e2e to deepseek-official and re-record the translation-prompt snapshot

This commit is contained in:
Yichen Jiang
2026-07-30 11:16:05 +08:00
parent 51415debe5
commit 65bd54f8b4
2 changed files with 2 additions and 2 deletions

View File

@@ -155,7 +155,7 @@ describe.skipIf(!process.env.DEEPSEEK_API_KEY)('llm-pi-ai e2e (real API)', () =>
const prompt = ask('Reply with exactly the word: pong')
const [fromDeepSeek, fromPiAi] = await Promise.all([
assemble(deepseekCtx, { model: FLASH, messages: prompt, maxTokens: 50 }),
assemble(deepseekCtx, { provider: 'deepseek-official', model: FLASH, messages: prompt, maxTokens: 50 }),
assemble(piCtx, { model: FLASH, messages: prompt, maxTokens: 50 }),
])
expect(blockKinds(fromPiAi)).toEqual(blockKinds(fromDeepSeek))