From 1fd8bd02a4b45006b42c0920e19e5fefb54be992 Mon Sep 17 00:00:00 2001 From: Isotr0py Date: Mon, 1 Jun 2026 14:01:10 +0800 Subject: [PATCH] [Docs] Replace broken video url in examples (#44159) Signed-off-by: Isotr0py --- docs/features/multimodal_inputs.md | 2 +- .../multimodal/openai_chat_completion_client_for_multimodal.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/features/multimodal_inputs.md b/docs/features/multimodal_inputs.md index f6d4f3f86d8..847743dfff1 100644 --- a/docs/features/multimodal_inputs.md +++ b/docs/features/multimodal_inputs.md @@ -778,7 +778,7 @@ Then, you can use the OpenAI client as follows: base_url=openai_api_base, ) - video_url = "http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ForBiggerFun.mp4" + video_url = "https://huggingface.co/datasets/raushan-testing-hf/videos-test/resolve/main/sample_demo_1.mp4" ## Use video url in the payload chat_completion_from_url = client.chat.completions.create( diff --git a/examples/generate/multimodal/openai_chat_completion_client_for_multimodal.py b/examples/generate/multimodal/openai_chat_completion_client_for_multimodal.py index 3a007731c74..e1c4fd76d7d 100644 --- a/examples/generate/multimodal/openai_chat_completion_client_for_multimodal.py +++ b/examples/generate/multimodal/openai_chat_completion_client_for_multimodal.py @@ -203,7 +203,7 @@ def run_multi_image(model: str, max_completion_tokens: int) -> None: # Video input inference def run_video(model: str, max_completion_tokens: int) -> None: - video_url = "http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ForBiggerFun.mp4" + video_url = "https://huggingface.co/datasets/raushan-testing-hf/videos-test/resolve/main/sample_demo_1.mp4" video_base64 = encode_base64_content_from_url(video_url) ## Use video url in the payload