Skip to content

Commit d859dd3

Browse files
committed
Fixup mllama
Also switch to `unsloth/Llama-3.2-11B-Vision-Instruct` for testing from the EU :).
1 parent c9b6478 commit d859dd3

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

integration-tests/models/__snapshots__/test_mllama/test_mllama_load.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
"usage": null
1515
}
1616
],
17-
"created": 1746054921,
17+
"created": 1747230173,
1818
"id": "",
19-
"model": "meta-llama/Llama-3.2-11B-Vision-Instruct",
19+
"model": "unsloth/Llama-3.2-11B-Vision-Instruct",
2020
"object": "chat.completion",
2121
"system_fingerprint": "3.3.0-dev0-native",
2222
"usage": {
@@ -40,9 +40,9 @@
4040
"usage": null
4141
}
4242
],
43-
"created": 1746054921,
43+
"created": 1747230173,
4444
"id": "",
45-
"model": "meta-llama/Llama-3.2-11B-Vision-Instruct",
45+
"model": "unsloth/Llama-3.2-11B-Vision-Instruct",
4646
"object": "chat.completion",
4747
"system_fingerprint": "3.3.0-dev0-native",
4848
"usage": {

integration-tests/models/__snapshots__/test_mllama/test_mllama_simpl.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@
55
"index": 0,
66
"logprobs": null,
77
"message": {
8-
"content": "A chicken stands on a pile of money, looking",
8+
"content": "A chicken sits on a pile of money, looking",
99
"name": null,
1010
"role": "assistant",
1111
"tool_calls": null
1212
},
1313
"usage": null
1414
}
1515
],
16-
"created": 1746054919,
16+
"created": 1747230171,
1717
"id": "",
18-
"model": "meta-llama/Llama-3.2-11B-Vision-Instruct",
18+
"model": "unsloth/Llama-3.2-11B-Vision-Instruct",
1919
"object": "chat.completion",
2020
"system_fingerprint": "3.3.0-dev0-native",
2121
"usage": {

integration-tests/models/test_mllama.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
@pytest.fixture(scope="module")
66
def mllama_handle(launcher):
77
with launcher(
8-
"meta-llama/Llama-3.2-11B-Vision-Instruct",
8+
"unsloth/Llama-3.2-11B-Vision-Instruct",
99
num_shard=2,
1010
) as handle:
1111
yield handle
@@ -48,7 +48,7 @@ async def test_mllama_simpl(mllama, response_snapshot):
4848
}
4949
assert (
5050
response.choices[0].message.content
51-
== "A chicken stands on a pile of money, looking"
51+
== "A chicken sits on a pile of money, looking"
5252
)
5353
assert response == response_snapshot
5454

0 commit comments

Comments
 (0)