Please refer to README.md
vllm serve Qwen/Qwen2.5-Omni-7B --omni --port 8091If you have custom stage configs file, launch the server with command below
vllm serve Qwen/Qwen2.5-Omni-7B --omni --port 8091 --stage-configs-path /path/to/stage_configs_fileGet into the example folder
cd examples/online_serving/qwen2_5_omnipython openai_chat_completion_client_for_multimodal_generation.py --query-type mixed_modalitiesThe Python client supports the following command-line arguments:
--query-type(or-q): Query type (default:mixed_modalities)- Options:
mixed_modalities,use_audio_in_video,multi_audios,text
- Options:
--video-path(or-v): Path to local video file or URL- If not provided and query-type uses video, uses default video URL
- Supports local file paths (automatically encoded to base64) or HTTP/HTTPS URLs
- Example:
--video-path /path/to/video.mp4or--video-path https://example.com/video.mp4
--image-path(or-i): Path to local image file or URL- If not provided and query-type uses image, uses default image URL
- Supports local file paths (automatically encoded to base64) or HTTP/HTTPS URLs
- Supports common image formats: JPEG, PNG, GIF, WebP
- Example:
--image-path /path/to/image.jpgor--image-path https://example.com/image.png
--audio-path(or-a): Path to local audio file or URL- If not provided and query-type uses audio, uses default audio URL
- Supports local file paths (automatically encoded to base64) or HTTP/HTTPS URLs
- Supports common audio formats: MP3, WAV, OGG, FLAC, M4A
- Example:
--audio-path /path/to/audio.wavor--audio-path https://example.com/audio.mp3
--prompt(or-p): Custom text prompt/question- If not provided, uses default prompt for the selected query type
- Example:
--prompt "What are the main activities shown in this video?"
For example, to use mixed modalities with all local files:
python openai_chat_completion_client_for_multimodal_generation.py \
--query-type mixed_modalities \
--video-path /path/to/your/video.mp4 \
--image-path /path/to/your/image.jpg \
--audio-path /path/to/your/audio.wav \
--prompt "Analyze all the media content and provide a comprehensive summary."bash run_curl_multimodal_generation.sh mixed_modalitiesIf you want to control output modalities, e.g. only output text, you can run the command below:
python openai_chat_completion_client_for_multimodal_generation.py \
--query-type mixed_modalities \
--modalities textIf you want to enable streaming output, please set the argument as below. The final output will be obtained just after generated by corresponding stage. Now we only support text streaming output. Other modalities can output normally.
python openai_chat_completion_client_for_multimodal_generation.py \
--query-type mixed_modalities \
--streamThis Web UI demo allows users to interact with the model through a web browser.
The Gradio demo connects to a vLLM API server. You have two options:
The convenience script launches both the vLLM server and Gradio demo together:
./run_gradio_demo.sh --model Qwen/Qwen2.5-Omni-7B --server-port 8091 --gradio-port 7861This script will:
- Start the vLLM server in the background
- Wait for the server to be ready
- Launch the Gradio demo
- Handle cleanup when you press Ctrl+C
The script supports the following arguments:
--model: Model name/path (default: Qwen/Qwen2.5-Omni-7B)--server-port: Port for vLLM server (default: 8091)--gradio-port: Port for Gradio demo (default: 7861)--stage-configs-path: Path to custom stage configs YAML file (optional)--server-host: Host for vLLM server (default: 0.0.0.0)--gradio-ip: IP for Gradio demo (default: 127.0.0.1)--share: Share Gradio demo publicly (creates a public link)
Step 1: Launch the vLLM API server
vllm serve Qwen/Qwen2.5-Omni-7B --omni --port 8091If you have custom stage configs file:
vllm serve Qwen/Qwen2.5-Omni-7B --omni --port 8091 --stage-configs-path /path/to/stage_configs_fileStep 2: Run the Gradio demo
In a separate terminal:
python gradio_demo.py --model Qwen/Qwen2.5-Omni-7B --api-base http://localhost:8091/v1 --port 7861Then open http://localhost:7861/ on your local browser to interact with the web UI.
The gradio script supports the following arguments:
--model: Model name/path (should match the server model)--api-base: Base URL for the vLLM API server (default: http://localhost:8091/v1)--ip: Host/IP for Gradio server (default: 127.0.0.1)--port: Port for Gradio server (default: 7861)--share: Share the Gradio demo publicly (creates a public link)
If you encounter error about backend of librosa, try to install ffmpeg with command below.
sudo apt update
sudo apt install ffmpeg