From d303c1e37e764f18f09977bb3f4dd1b34b69dc9d Mon Sep 17 00:00:00 2001 From: drbh Date: Thu, 1 May 2025 10:20:45 -0400 Subject: [PATCH] fix: bump snaps for mllama (#3202) --- .../__snapshots__/test_mllama/test_mllama_load.json | 8 ++++---- .../__snapshots__/test_mllama/test_mllama_simpl.json | 6 +++--- integration-tests/models/test_mllama.py | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/integration-tests/models/__snapshots__/test_mllama/test_mllama_load.json b/integration-tests/models/__snapshots__/test_mllama/test_mllama_load.json index 690e275f..89f5184f 100644 --- a/integration-tests/models/__snapshots__/test_mllama/test_mllama_load.json +++ b/integration-tests/models/__snapshots__/test_mllama/test_mllama_load.json @@ -14,11 +14,11 @@ "usage": null } ], - "created": 1739290197, + "created": 1746054921, "id": "", "model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "object": "chat.completion", - "system_fingerprint": "3.1.1-dev0-native", + "system_fingerprint": "3.2.3-dev0-native", "usage": { "completion_tokens": 10, "prompt_tokens": 45, @@ -40,11 +40,11 @@ "usage": null } ], - "created": 1739290197, + "created": 1746054921, "id": "", "model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "object": "chat.completion", - "system_fingerprint": "3.1.1-dev0-native", + "system_fingerprint": "3.2.3-dev0-native", "usage": { "completion_tokens": 10, "prompt_tokens": 45, diff --git a/integration-tests/models/__snapshots__/test_mllama/test_mllama_simpl.json b/integration-tests/models/__snapshots__/test_mllama/test_mllama_simpl.json index c9c3c1b8..3134b027 100644 --- a/integration-tests/models/__snapshots__/test_mllama/test_mllama_simpl.json +++ b/integration-tests/models/__snapshots__/test_mllama/test_mllama_simpl.json @@ -5,7 +5,7 @@ "index": 0, "logprobs": null, "message": { - "content": "A chicken sits on a pile of money, looking", + "content": "A chicken stands on a pile of money, looking", "name": null, "role": "assistant", "tool_calls": null @@ -13,11 +13,11 @@ "usage": null } ], - "created": 1739290152, + "created": 1746054919, "id": "", "model": "meta-llama/Llama-3.2-11B-Vision-Instruct", "object": "chat.completion", - "system_fingerprint": "3.1.1-dev0-native", + "system_fingerprint": "3.2.3-dev0-native", "usage": { "completion_tokens": 10, "prompt_tokens": 45, diff --git a/integration-tests/models/test_mllama.py b/integration-tests/models/test_mllama.py index f023ad1d..95ec1d99 100644 --- a/integration-tests/models/test_mllama.py +++ b/integration-tests/models/test_mllama.py @@ -48,7 +48,7 @@ async def test_mllama_simpl(mllama, response_snapshot): } assert ( response.choices[0].message.content - == "A chicken sits on a pile of money, looking" + == "A chicken stands on a pile of money, looking" ) assert response == response_snapshot