fix flaky image access in ci by switching to raw content url (#14940)

This commit is contained in:
Yuhao Yang
2025-12-13 10:52:06 -08:00
committed by GitHub
parent ea07a283b2
commit 06b58c5dc5
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ from sglang.srt.entrypoints.openai.protocol import ChatCompletionRequest
from sglang.srt.parser.conversation import generate_chat_conv
from sglang.test.test_utils import download_image_with_retry
TEST_IMAGE_URL = "https://github.com/sgl-project/sglang/blob/main/examples/assets/example_image.png?raw=true"
TEST_IMAGE_URL = "https://raw.githubusercontent.com/sgl-project/sglang/main/examples/assets/example_image.png"
class VLMInputTestBase: