From 19df83f7ab142d809cc4ae4daee5f75ab634dcbf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Magnus=20M=C3=BCller?= <67061560+MagMueller@users.noreply.github.com> Date: Sat, 25 Oct 2025 09:51:07 -0700 Subject: [PATCH] Linter --- tests/ci/models/test_llm_models.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/tests/ci/models/test_llm_models.py b/tests/ci/models/test_llm_models.py index bbf4987a9..7f53de9f7 100644 --- a/tests/ci/models/test_llm_models.py +++ b/tests/ci/models/test_llm_models.py @@ -32,9 +32,7 @@ MODELS_TO_TEST = [ # Google models (from gemini.py) pytest.param(ChatGoogle, 'gemini-flash-latest', 'GOOGLE_API_KEY', {}, id='google_gemini_flash_latest'), # Groq models (from llama4-groq.py) - pytest.param( - ChatGroq, 'meta-llama/llama-4-maverick-17b-128e-instruct', 'GROQ_API_KEY', {}, id='groq_llama_4_maverick' - ), + pytest.param(ChatGroq, 'meta-llama/llama-4-maverick-17b-128e-instruct', 'GROQ_API_KEY', {}, id='groq_llama_4_maverick'), # DeepSeek models (from deepseek-chat.py) pytest.param( ChatDeepSeek, @@ -62,9 +60,7 @@ MODELS_TO_TEST = [ id='qwen_vl_max', ), # Cerebras (from cerebras_example.py) - using the model from the example - pytest.param( - ChatCerebras, 'qwen-3-235b-a22b-thinking-2507', 'CEREBRAS_API_KEY', {}, id='cerebras_qwen_3_235b_thinking' - ), + pytest.param(ChatCerebras, 'qwen-3-235b-a22b-thinking-2507', 'CEREBRAS_API_KEY', {}, id='cerebras_qwen_3_235b_thinking'), # OpenRouter (from openrouter.py) pytest.param( ChatOpenAI,