fix: Update test_ollama_uses_existing_num_ctx to match actual call parameters

This commit is contained in:
Paul Gauthier (aider) 2025-02-06 08:22:19 -08:00
parent 85399bd6e2
commit 3b16d6c291

View file

@ -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")