Deploy vLLM Service#
This guide explains how to deploy the multimodal sample app with the vLLM service enabled using the Makefile targets.
System Requirements#
Component |
Minimum Requirement |
|---|---|
Operating System |
Ubuntu 24.04 LTS or later |
Hardware |
Intel® Core™ Ultra Platform (PTL) or newer |
Prerequisites#
Ensure
.envis configured and includes valid values for:HOST_IPINFLUXDB_USERNAME,INFLUXDB_PASSWORDVISUALIZER_GRAFANA_USER,VISUALIZER_GRAFANA_PASSWORDMTX_WEBRTCICESERVERS2_0_USERNAME,MTX_WEBRTCICESERVERS2_0_PASSWORDS3_STORAGE_USERNAME,S3_STORAGE_PASSWORD
Download Models#
Download Qwen3.5 2B model and Qwen 3.5 2B fine tuned LoRA adapter
Please review and accept the Qwen3.5 2B license before downloading.
The LoRA adapter was specifically trained on a subset of the Intel Robotic Welding Multimodal Dataset and may not generalize to generic weld datasets.
mkdir -p configs/vllm/huggingface configs/vllm/models && \
cd configs/vllm/ && \
rm -rf .modelenv && \
python3 -m venv .modelenv && \
source .modelenv/bin/activate && \
pip3 install huggingface_hub==1.23.0 && \
rm -rf huggingface models && \
hf download Qwen/Qwen3.5-2B \
--local-dir ./huggingface/Qwen3.5-2B && \
hf download Intel/qwen3.5-2b-vlm-weld-explainability-lora \
--local-dir ./models/qwen3.5-2b-vlm-weld-explainability-lora && \
deactivate && \
cd ../..
Deploy the vLLM Service#
Note: vLLM preallocates GPU-addressable memory up to the limit specified by
VLLM_GPU_MEMORY_UTILIZATION(VRAM on dGPU, shared system memory on iGPU). Since the optimal value varies between platforms, updateVLLM_GPU_MEMORY_UTILIZATIONin the.envfile to match your target hardware.
Run:
cd edge-ai-suites/manufacturing-ai-suite/industrial-edge-insights-multimodal
make up_vllm
For a fresh build before deployment:
cd edge-ai-suites/manufacturing-ai-suite/industrial-edge-insights-multimodal
make build
make up_vllm
Verify the Deployment#
Check overall stack health:
Note: The command
make statusmay show errors in containers like ia-grafana when the user has not logged in for the first login OR due to session timeout. Just login again in Grafana and functionality wise if things are working, then ignoreuser token not founderrors along with other minor errors which may show up in Grafana logs.cd edge-ai-suites/manufacturing-ai-suite/industrial-edge-insights-multimodal make status
Confirm the vLLM container is running:
docker ps --filter "name=vllm-server"
Inspect vLLM logs:
docker logs -f vllm-server
Check the output in Grafana.
Use the link
https://localhost :3000to open Grafana in a browser (preferably Chrome).
Note: Use the link
https://localhost :30001to open Grafana in a browser (preferably Chrome) for the Helm deployment.Log in to Grafana using the values set for
VISUALIZER_GRAFANA_USERandVISUALIZER_GRAFANA_PASSWORDin the.envfile, then select Multimodal Weld Defect Detection Explainability Dashboard.
After logging in, click Dashboard.

Select Multimodal Weld Defect Detection Explainability Dashboard.

You should see the following output:

Stop the Deployment#
To bring down the full stack:
cd edge-ai-suites/manufacturing-ai-suite/industrial-edge-insights-multimodal
make down
Troubleshooting#
vllm-serverstartup delay after deployment Thevllm-serverservice can take about 10 minutes to fully come up aftermake up_vllm. This is expected while the model is initialized and loaded into memory.Error: configs/vllm/models directory does not exist.Create the directory and place the required model artifacts in it.Error: configs/vllm/models directory is empty.Add model files/checkpoints before runningmake up_vllm.HOST_IP is not setorHOST_IP is not a valid IPv4 address format.UpdateHOST_IPin.envwith a valid IPv4 address.Username/password validation failures from
check_env_variablesUpdate.envvalues so they match the Makefile validation rules.