From 3b16d6c291f31e7f6db4d3112214b6bdce5031bd Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Thu, 6 Feb 2025 08:22:19 -0800 Subject: [PATCH] fix: Update test_ollama_uses_existing_num_ctx to match actual call parameters --- tests/basic/test_models.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/basic/test_models.py b/tests/basic/test_models.py index 04179aea7..4df152e2f 100644 --- a/tests/basic/test_models.py +++ b/tests/basic/test_models.py @@ -254,10 +254,8 @@ class TestModels(unittest.TestCase): model=model.name, messages=messages, stream=False, - temperature=ANY, + temperature=0, num_ctx=4096, - tools=None, - tool_choice=None, ) @patch("aider.models.litellm.completion")