From ab91c983602e8c2a1cfcaae494bfe0a10397cd71 Mon Sep 17 00:00:00 2001 From: Luis Bauza Date: Thu, 8 Jan 2026 20:30:58 -0500 Subject: [PATCH] Update test to expect new model in axios request --- __tests__/commands/ask.test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/__tests__/commands/ask.test.js b/__tests__/commands/ask.test.js index f3c9736..eff78a2 100644 --- a/__tests__/commands/ask.test.js +++ b/__tests__/commands/ask.test.js @@ -102,7 +102,7 @@ describe('Ask Command', () => { expect(axios.post).toHaveBeenCalledWith( 'https://nano-gpt.com/api/v1/chat/completions', expect.objectContaining({ - model: 'deepseek/deepseek-v3.2', + model: 'zai-org/glm-4.7', }), expect.any(Object), ); @@ -258,4 +258,4 @@ describe('Ask Command', () => { await expect(askCommand.run(interaction)).rejects.toThrow('Failed to follow up'); }); }); -}); \ No newline at end of file +});