From 9e73341008eb7cab053af5b58b26ed669d2c4bd1 Mon Sep 17 00:00:00 2001 From: Kai Wu Date: Thu, 13 Mar 2025 18:58:12 -0700 Subject: [PATCH] fix: change dog.jpg path in test_vision_inference.py (#1624) # What does this PR do? quick fix as the vision_inference test dog.jpg path has been changed. [//]: # (If resolving an issue, uncomment and update the line below) [//]: # (Closes #[issue-number]) ## Test Plan [Describe the tests you ran to verify your changes with result summaries. *Provide clear instructions so the plan can be easily re-executed.*] [//]: # (## Documentation) --- tests/integration/inference/test_vision_inference.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/integration/inference/test_vision_inference.py b/tests/integration/inference/test_vision_inference.py index 984e563d7..9f6fb0478 100644 --- a/tests/integration/inference/test_vision_inference.py +++ b/tests/integration/inference/test_vision_inference.py @@ -36,7 +36,7 @@ def test_image_chat_completion_non_streaming(client_with_models, vision_model_id "type": "image", "image": { "url": { - "uri": "https://raw.githubusercontent.com/meta-llama/llama-stack/main/tests/api/inference/dog.png" + "uri": "https://raw.githubusercontent.com/meta-llama/llama-stack/main/tests/integration/inference/dog.png" }, }, }, @@ -65,7 +65,7 @@ def test_image_chat_completion_streaming(client_with_models, vision_model_id): "type": "image", "image": { "url": { - "uri": "https://raw.githubusercontent.com/meta-llama/llama-stack/main/tests/api/inference/dog.png" + "uri": "https://raw.githubusercontent.com/meta-llama/llama-stack/main/tests/integration/inference/dog.png" }, }, },