From 4a2a319ae4bf22018892dc9b9e2bc277cada2aaa Mon Sep 17 00:00:00 2001 From: Sebastian Husch Lee Date: Tue, 30 Dec 2025 09:56:58 +0100 Subject: [PATCH] Change to new model that is less flaky --- integrations/togetherai/tests/test_togetherai_chat_generator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integrations/togetherai/tests/test_togetherai_chat_generator.py b/integrations/togetherai/tests/test_togetherai_chat_generator.py index c8d8f57a70..731e041a1c 100644 --- a/integrations/togetherai/tests/test_togetherai_chat_generator.py +++ b/integrations/togetherai/tests/test_togetherai_chat_generator.py @@ -685,7 +685,7 @@ def test_live_run_with_mixed_tools(self, mixed_tools): initial_messages = [ ChatMessage.from_user("What's the weather like in Paris and what is the population of Berlin?") ] - component = TogetherAIChatGenerator(model="openai/gpt-oss-120b", tools=mixed_tools) + component = TogetherAIChatGenerator(model="moonshotai/kimi-k2-thinking", tools=mixed_tools) results = component.run(messages=initial_messages) assert len(results["replies"]) > 0, "No replies received"