Skip to content
This repository was archived by the owner on Mar 19, 2026. It is now read-only.

Commit 8554771

Browse files
committed
pre-commit check
1 parent 06a55b3 commit 8554771

File tree

2 files changed

+39
-316
lines changed

2 files changed

+39
-316
lines changed

tests/llm/test_models.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,13 @@ def test_get_groq_model(monkeypatch):
4646
assert isinstance(model, ChatGroq)
4747
assert model.model_name == "mixtral-8x7b-32768"
4848

49+
4950
def test_get_ollama_model(monkeypatch):
5051
model = get_model("ollama/qwen2.5")
5152
assert isinstance(model, ChatOllama)
5253
assert model.model == "qwen2.5"
5354

55+
5456
def test_get_model_with_invalid_format():
5557
with pytest.raises(ValueError, match="The model `gpt-4o` is not valid."):
5658
get_model("gpt-4o")

0 commit comments

Comments
 (0)