Skip to main content

Real-time Vision Language Model interaction web interface

Project description

Live VLM WebUI

GitHub stars GitHub forks CI/CD GitHub issues License Docker Pulls

A universal web interface for real-time Vision Language Model interaction and benchmarking.

Stream your webcam to any VLM and get live AI-powered analysis - perfect for testing models, benchmarking performance, and exploring vision AI capabilities across multiple domains and hardware platforms.

Chrome running Live VLM WebUI

[!TIP] โญ If you find this project useful, please consider giving it a star! It helps others discover this tool and motivates us to keep improving it. Thank you for your support! ๐Ÿ™

๐Ÿ“ข Share this project: X (Twitter) LinkedIn Reddit


๐Ÿš€ Quick Start (Easiest Way!)

For PC, Mac, DGX, and Jetson systems:

pip install live-vlm-webui
live-vlm-webui

Access the WebUI: Open https://localhost:8090 in your browser

[!WARNING] PyPI package coming soon! Works on all platforms including Jetson (requires openssl). For now, use Jetson Quick Start for platform-specific instructions or Development Installation below.

[!NOTE] Requirements:

  • OpenSSL - Required for SSL certificate generation (webcam access needs HTTPS)
    • Pre-installed on most systems (Ubuntu, macOS, WSL2, Jetson, DGX)
    • If missing, the server will provide clear installation instructions
  • VLM Backend - Ollama, vLLM, or cloud API. See VLM Backend Setup below

SSL certificates auto-generate on first run. Accept the browser security warning to proceed.

Platforms supported:

  • โœ… Linux (x86_64, ARM64)
  • โœ… macOS (Intel & Apple Silicon)
  • โœ… Windows (via WSL2)
  • โš ๏ธ Jetson (Orin, Thor) - pip works but Docker is simpler. See Jetson Quick Start below

๐Ÿค– Jetson Quick Start

[!IMPORTANT] Requires JetPack 6.x (Python 3.10+) or JetPack 7.0 (Python 3.12). JetPack 5.x has Python 3.8 which is not supported - use Docker or upgrade.

Option 1: Docker (Recommended - Works Out of the Box)

For all Jetson platforms (Orin, Thor):

# Clone the repository
git clone https://github.com/nvidia-ai-iot/live-vlm-webui.git
cd live-vlm-webui

# Run the auto-detection script
./scripts/start_container.sh

The script will:

  • โœ… Auto-detect your Jetson platform (Orin or Thor)
  • โœ… Pull the appropriate pre-built image from GitHub Container Registry
  • โœ… Configure GPU access automatically
  • โœ… Start the container with correct settings

Why Docker is recommended:

  • โœ… Works immediately - no platform-specific setup
  • โœ… Isolated environment - no system package conflicts
  • โœ… Full GPU monitoring included
  • โœ… Production-ready
  • โœ… No Python version conflicts

Access the WebUI: Open https://localhost:8090 in your browser


Option 2: pip install (Advanced)

For Jetson AGX Orin and Jetson Orin Nano (JetPack 6.x / r36.x):

# Install dependencies
sudo apt install openssl python3-pip

# Install jetson-stats for GPU monitoring (optional but recommended)
# Note: Use --break-system-packages if on newer JetPack with Python 3.12
sudo pip3 install -U jetson-stats

# Install the package
python3 -m pip install --user live-vlm-webui

# Add to PATH (one-time setup)
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrc
source ~/.bashrc

# Run it
live-vlm-webui

For Jetson Thor (JetPack 7.0 / r38.2+):

# Install dependencies
sudo apt install openssl pipx

# Ensure PATH for pipx
pipx ensurepath
source ~/.bashrc

# Install the package using pipx (required for Python 3.12)
pipx install live-vlm-webui

# Install jetson-stats for GPU monitoring (from GitHub - PyPI version doesn't support Thor yet)
# Step 1: Install system-wide for the jtop service
sudo pip3 install --break-system-packages git+https://github.com/rbonghi/jetson_stats.git
sudo jtop --install-service

# Step 2: Inject into pipx environment so live-vlm-webui can use it
pipx inject live-vlm-webui git+https://github.com/rbonghi/jetson_stats.git

# Step 3: Reboot for jtop service permissions to take effect
sudo reboot

# After reboot, run it
live-vlm-webui

[!WARNING] Ollama 0.12.10 incompatible with Jetson Thor (JetPack 7.0)

Ollama version 0.12.10 does not work on Thor - GPU inference will fail.

Solution: Use Ollama 0.12.9 or earlier:

curl -fsSL https://ollama.com/install.sh | OLLAMA_VERSION=0.12.9 sh

See troubleshooting guide for details and alternatives.

[!NOTE] Jetson Thor GPU Monitoring: Thor support is in the latest jetson-stats on GitHub but not yet released to PyPI.

Why two installations?

  1. System-wide (sudo pip3) - Runs the jtop background service
  2. Pipx environment (pipx inject) - Allows live-vlm-webui to access jtop data

The reboot ensures proper socket permissions for jtop access.

[!TIP] Jetson Thor (Python 3.12): Use pipx instead of pip due to PEP 668 protection. pipx automatically creates isolated environments for applications.

GPU Monitoring: Installing jetson-stats enables proper hardware detection and GPU/VRAM monitoring.

Access the WebUI: Open https://localhost:8090 in your browser

Benefits of pip install:

  • โœ… Editable code for development
  • โœ… Direct access to logs and debugging
  • โœ… No container overhead
  • โœ… Fine-grained control

Note: pip installation requires platform-specific setup steps. For production or simpler setup, use Docker (Option 1).


๐ŸŽฅ WebUI Usage

Once the server is running, access the web interface at https://localhost:8090

Accepting the SSL Certificate

1๏ธโƒฃ Click "Advanced" button 2๏ธโƒฃ Click "Proceed to localhost (unsafe)" 3๏ธโƒฃ Allow camera access when prompted
Chrome Advanced Chrome Proceed Chrome Webcam Access

Interface Overview

Left Sidebar Controls:

๐ŸŒ VLM API Configuration

  • Set API Base URL, API Key, and Model
    • ๐Ÿ”„ Refresh models button - Auto-detect available models
    • โž• Download button (coming soon)

๐Ÿ“น Camera Control

  • Dropdown menu lists all detected cameras
  • Switch cameras on-the-fly without restarting
  • START/STOP buttons for analysis control
  • Frame Interval: Process every N frames (1-3600)
    • Lower (5-30) = more frequent, higher GPU usage
    • Higher (60-300) = less frequent, power saving

โœ๏ธ Prompt Editor

  • 10+ preset prompts (scene description, object detection, safety, OCR, etc.)
  • Write custom prompts
  • Adjust Max Tokens for response length (1-4096)

Main Content Area:

๐Ÿค– VLM Output Info - Real-time analysis results:

  • Model name and inference latency metrics โฑ๏ธ
  • Current prompt display (gray box)
  • Generated text output

๐Ÿ–ผ๏ธ Video Feed - Live webcam

  • mirror toggle button ๐Ÿ”„

๐Ÿ“ˆ System Stats Card - Live monitoring:

  • System info: Hardware name with hostname with GPU info
  • GPU utilization and VRAM with progress bars
  • CPU and RAM stats
  • Sparkline graphs

Header:

  • Connection Status - WebSocket connectivity indicator
  • โš™๏ธ Settings - Advanced configuration modal (WebRTC, latency thresholds, debugging)
  • ๐ŸŒ™/โ˜€๏ธ Theme Toggle - Switch between Light/Dark modes

๐Ÿ’ป Development Installation (From Source)

For developers, contributors, and those who want full control:

# 1. Clone the repository
git clone https://github.com/nvidia-ai-iot/live-vlm-webui.git
cd live-vlm-webui

# 2. Create virtual environment
python3 -m venv .venv
source .venv/bin/activate

# 3. Upgrade pip and install in editable mode
pip install --upgrade pip setuptools wheel
pip install -e .

# 4. Start the server (SSL certs auto-generate)
./scripts/start_server.sh

Access the WebUI: Open https://localhost:8090

Benefits of source installation:

  • โœ… Make code changes that take effect immediately (editable install)
  • โœ… Access to development tools and scripts
  • โœ… Works on macOS (unlike Docker which doesn't support webcam)
  • โœ… Full debugging capabilities

Platforms tested:

  • โœ… Linux (x86_64) - fully tested
  • โœ… DGX Spark (ARM64) - fully tested
  • โœ… Jetson Thor - fully tested
  • โœ… Jetson Orin - fully tested
  • โœ… macOS (Apple Silicon) - fully tested
  • โš ๏ธ Windows - WSL2 recommended, native Windows requires additional setup (FFmpeg, build tools)

[!TIP] For Jetson, we recommend Docker for production use. Source installation works but requires: sudo apt install python3.10-venv and careful pip management to avoid JetPack conflicts.


๐Ÿค– Setting Up Your VLM Backend

Choose the VLM backend that fits your needs:

Quick Comparison

Backend Setup Difficulty Model Coverage Speed GPU Required
Ollama โœ… ๐ŸŸข Easy 14+ vision models (link) ๐ŸŸข Fast ๐Ÿ  Yes (local)
vLLM โš ๏ธ ๐Ÿ”ด Varies (works best on PC) Widest HF model support ๐ŸŸข๐ŸŸข Fastest ๐Ÿ  Yes (local)
SGLang โš ๏ธ ๐Ÿ”ด Varies (works best on PC) Widest HF model support ๐ŸŸข๐ŸŸข Fastest ๐Ÿ  Yes (local)
NVIDIA NIM โš ๏ธ ๐ŸŸก Medium Limited VLM selection (improving) ๐ŸŸข๐ŸŸข Fastest ๐Ÿ  Yes (local)
NVIDIA API Catalog โœ… ๐ŸŸข Easy 12+ hosted VLMs ๐ŸŸก Depends โ˜๏ธ No (cloud)
OpenAI API โš ๏ธ ๐ŸŸข Easy GPT-4o, GPT-4o-mini ๐ŸŸก Depends โ˜๏ธ No (cloud)

Legend: โœ… Tested | โš ๏ธ Has auto-detection but not fully validated

Option A: Ollama (Recommended for Beginners)

# Install from https://ollama.ai/download
# Pull a vision model
ollama pull llama3.2-vision:11b

# Start server
ollama serve

Best for: Quick start, easy model management

Option B: vLLM (Recommended for Performance)

# Install vLLM
pip install vllm

# Start server
python -m vllm.entrypoints.openai.api_server \
  --model meta-llama/Llama-3.2-11B-Vision-Instruct \
  --port 8000

Best for: Production deployments, high throughput

Option C: NVIDIA API Catalog (No GPU Required)

  1. Visit NVIDIA API Catalog
  2. Get API key on build.nvidia.com page.
  3. Configure in WebUI:
    • API Base: https://integrate.api.nvidia.com/v1
    • API Key: nvapi-YOUR_KEY
    • Model: meta/llama-3.2-90b-vision-instruct

Best for: Cloud-based inference, instant access, free API trial usage

๐Ÿ“˜ Detailed Guide: VLM Backend Setup


๐Ÿ”ง Alternative Installation Methods

Docker (Recommended for Production & Jetson)

For PC, DGX Spark, and Jetson users who want containerized deployment:

# 1. Clone the repository
git clone https://github.com/nvidia-ai-iot/live-vlm-webui.git
cd live-vlm-webui

# 2. Run the auto-detection script
./scripts/start_container.sh

Benefits:

  • โœ… No dependency management
  • โœ… Isolated environment
  • โœ… Works across all platforms (x86_64, ARM64, Jetson)
  • โœ… Production-ready

Available pre-built images:

Platform Image Tag Pull Command
PC (x86_64) / DGX Spark latest docker pull ghcr.io/nvidia-ai-iot/live-vlm-webui:latest
Jetson Orin latest-jetson-orin docker pull ghcr.io/nvidia-ai-iot/live-vlm-webui:latest-jetson-orin
Jetson Thor latest-jetson-thor docker pull ghcr.io/nvidia-ai-iot/live-vlm-webui:latest-jetson-thor

[!TIP] The latest tag is a multi-arch image that automatically selects the correct architecture:

  • linux/amd64 for x86_64 PC and DGX systems
  • linux/arm64 for DGX Spark (ARM64 SBSA server)

๐Ÿ“˜ Detailed Guide: Manual Docker Setup


Docker Compose (Complete Stack with VLM Backend)

For PC and DGX Spark users who want VLM + WebUI in one command:

[!TIP] start_docker_compose.sh automatically detects your platform, checks Docker installation, and selects the correct profile. Just run it!

With Ollama (Easiest, No API Keys Required)

Using the launcher script (recommended):

./scripts/start_docker_compose.sh ollama

# Pull a vision model after startup
docker exec ollama ollama pull llama3.2-vision:11b

Or manually with docker compose:

docker compose --profile ollama up

# Pull a vision model
docker exec ollama ollama pull llama3.2-vision:11b

[!TIP] Backend-centric profiles make it easy: --profile ollama, --profile vllm (future), etc.

Includes:

  • โœ… Ollama for easy model management
  • โœ… Live VLM WebUI for real-time interaction
  • โœ… No API keys required

With NVIDIA NIM + Cosmos-Reason1-7B (Advanced)

[!TIP] Cosmos-Reason1-7B is the default NIM model because it's the only NVIDIA VLM NIM that supports both x86_64 (PC) and ARM64 (DGX Spark, Jetson Thor) architectures. Other NIM models like Llama-3.2-90B-Vision and Nemotron are x86_64-only.

Using the launcher script (recommended):

# Get NGC API Key from https://org.ngc.nvidia.com/setup/api-key
export NGC_API_KEY=<your-key>

./scripts/start_docker_compose.sh nim

Or manually with docker compose:

export NGC_API_KEY=<your-key>
docker compose --profile nim up

Includes:

  • โœ… NVIDIA NIM serving Cosmos-Reason1-7B with reasoning capabilities
  • โœ… Production-grade inference
  • โœ… Advanced VLM with planning and anomaly detection

[!IMPORTANT] NIM requires NGC API Key and downloads ~10-15GB on first run. Requires NVIDIA driver 565+ (CUDA 12.9 support).

๐Ÿ“˜ Detailed Guide: Docker Compose Setup Details


๐Ÿ“š Documentation

For Users

For Developers

Help & Support


โœจ Key Features

Core Functionality

  • ๐ŸŽฅ Real-time WebRTC streaming - Low-latency bidirectional video
  • ๐Ÿ”Œ OpenAI-compatible API - Works with vLLM, SGLang, Ollama, TGI, or any vision API
  • ๐Ÿ“ Interactive prompt editor - 10+ preset prompts + custom prompts
  • โšก Async processing - Smooth video while VLM processes frames in background
  • ๐Ÿ”ง Flexible deployment - Local inference or cloud APIs

UI & Visualization

  • ๐ŸŽจ Modern NVIDIA-themed UI - Professional design with NVIDIA green accents
  • ๐ŸŒ“ Light/Dark theme toggle - Automatic preference persistence
  • ๐Ÿ“Š Live system monitoring - Real-time GPU, VRAM, CPU, RAM stats with sparkline charts
  • โฑ๏ธ Inference metrics - Live latency tracking (last, average, total count)
  • ๐Ÿชž Video mirroring - Toggle button overlay on camera view
  • ๐Ÿ“ฑ Compact layout - Single-screen design

Platform Support

  • ๐Ÿ’ป Cross-platform monitoring - Auto-detects NVIDIA GPUs (NVML), Apple Silicon
  • ๐Ÿ–ฅ๏ธ Dynamic system detection - CPU model name and hostname
  • ๐Ÿ”’ HTTPS support - Self-signed certificates for secure webcam access
  • ๐ŸŒ Universal compatibility - PC (x86_64), DGX Spark (ARM64 SBSA), Jetson (Orin, Thor), Mac
  • ๐Ÿ—๏ธ Multi-arch Docker images - Single image works across x86_64 and ARM64 architectures

๐Ÿ—บ๏ธ Use Cases

  • ๐Ÿ”’ Security - Real-time monitoring and alert generation
  • ๐Ÿค– Robotics - Visual feedback for robot control
  • ๐Ÿญ Industrial - Quality control, safety monitoring, automation
  • ๐Ÿฅ Healthcare - Activity monitoring, fall detection
  • โ™ฟ Accessibility - Visual assistance for visually impaired users
  • ๐Ÿ“š Education - Interactive learning experiences
  • ๐ŸŽฌ Content Creation - Live scene analysis for video production
  • ๐ŸŽฎ Gaming - AI game master or interactive experiences

๐Ÿš‘ Troubleshooting

Quick Fixes

Camera not accessible?

  • Use HTTPS (not HTTP): ./scripts/start_server.sh or --ssl-cert cert.pem --ssl-key key.pem
  • Accept the self-signed certificate warning (Advanced โ†’ Proceed)

Can't connect to VLM?

  • Check VLM is running: curl http://localhost:8000/v1/models (vLLM) or curl http://localhost:11434/v1/models (Ollama)
  • Use --network host in Docker for local VLM services

GPU stats show "N/A"?

  • PC: Add --gpus all when running Docker
  • Jetson: Add --privileged -v /run/jtop.sock:/run/jtop.sock:ro

Slow performance?

  • Use smaller model (gemma3:4b instead of gemma3:11b)
  • Increase Frame Processing Interval (60+ frames)
  • Reduce Max Tokens (50-100 instead of 512)

๐Ÿค Contributing

We โค๏ธ contributions from the community! This project is built with passion and we'd love your help making it even better.

How you can help:

  • โญ Star this repo - It really helps us and takes just 1 second!
  • ๐Ÿ› Report bugs - Found an issue? Let us know
  • ๐Ÿ’ก Suggest features - Have an idea? Create a feature request
  • ๐Ÿ”ง Submit PRs - Code contributions are always welcome!
  • ๐Ÿ“ข Share it - Tell others about this project
  • ๐Ÿ“ Improve docs - Help us make the documentation better

Areas for improvement:

  • ๐Ÿ“ Jetson VRAM utilization - Workaround for measuring GPU memory consumption
  • โšก Hardware-accelerated video processing on Jetson - Use NVENC/NVDEC
  • โž• Model download UI - Ability to initiate backend's model donwload from Web UI
  • ๐Ÿ“œ Log functionality - Keep the past analysis results viewable
  • ๐Ÿ† Benchmark mode - Side-by-side model comparison
  • ๐Ÿ‘ฅ Multi-session support - Support multiple sessions for hosting

See Contributing Guide for details.

[!IMPORTANT] โญ Don't forget to star the repository if you found it helpful! Your support means the world to us and helps demonstrate the value of this work to the community and our organization.


๐Ÿ“ฆ Project Structure

live-vlm-webui/
โ”œโ”€โ”€ src/
โ”‚   โ””โ”€โ”€ live_vlm_webui/       # Main Python package
โ”‚       โ”œโ”€โ”€ __init__.py       # Package initialization
โ”‚       โ”œโ”€โ”€ server.py         # Main WebRTC server with WebSocket support
โ”‚       โ”œโ”€โ”€ video_processor.py # Video frame processing and VLM integration
โ”‚       โ”œโ”€โ”€ gpu_monitor.py    # Cross-platform GPU/system monitoring
โ”‚       โ”œโ”€โ”€ vlm_service.py    # VLM API integration
โ”‚       โ””โ”€โ”€ static/
โ”‚           โ””โ”€โ”€ index.html    # Frontend web UI
โ”‚
โ”œโ”€โ”€ scripts/                  # Bash scripts & utilities
โ”‚   โ”œโ”€โ”€ start_server.sh      # Quick start script with SSL
โ”‚   โ”œโ”€โ”€ stop_server.sh       # Stop the server
โ”‚   โ”œโ”€โ”€ start_container.sh   # Auto-detection Docker launcher
โ”‚   โ”œโ”€โ”€ stop_container.sh    # Stop Docker container
โ”‚   โ”œโ”€โ”€ start_docker_compose.sh # Docker Compose launcher
โ”‚   โ”œโ”€โ”€ generate_cert.sh     # SSL certificate generation
โ”‚   โ”œโ”€โ”€ build_multiarch.sh   # Multi-arch Docker build
โ”‚   โ””โ”€โ”€ build_multiarch_cuda.sh
โ”‚
โ”œโ”€โ”€ docker/                   # Docker configuration
โ”‚   โ”œโ”€โ”€ Dockerfile            # x86_64 PC / DGX Spark (multi-arch)
โ”‚   โ”œโ”€โ”€ Dockerfile.jetson-orin # Jetson Orin
โ”‚   โ”œโ”€โ”€ Dockerfile.jetson-thor # Jetson Thor
โ”‚   โ”œโ”€โ”€ Dockerfile.jetson     # Generic Jetson
โ”‚   โ”œโ”€โ”€ Dockerfile.mac        # macOS (testing)
โ”‚   โ””โ”€โ”€ docker-compose.yml    # Unified stack (Ollama + NIM)
โ”‚
โ”œโ”€โ”€ tests/                    # Unit tests
โ”‚   โ””โ”€โ”€ __init__.py
โ”‚
โ”œโ”€โ”€ prototypes/               # Experimental/prototype scripts (not production)
โ”‚   โ”œโ”€โ”€ examples.sh
โ”‚   โ”œโ”€โ”€ test_mac_docker.sh
โ”‚   โ””โ”€โ”€ test_gpu_monitor_mac.py
โ”‚
โ”œโ”€โ”€ docs/                     # Detailed documentation
โ”‚   โ”œโ”€โ”€ setup/                # Setup guides
โ”‚   โ”œโ”€โ”€ usage/                # Usage guides
โ”‚   โ”œโ”€โ”€ development/          # Developer guides
โ”‚   โ””โ”€โ”€ troubleshooting.md
โ”‚
โ”œโ”€โ”€ pyproject.toml            # Modern Python packaging (PEP 621)
โ”œโ”€โ”€ requirements.txt          # Python dependencies
โ”œโ”€โ”€ requirements-dev.txt      # Development dependencies
โ”œโ”€โ”€ MANIFEST.in               # Package data includes
โ”œโ”€โ”€ README.md                 # This file
โ”œโ”€โ”€ CONTRIBUTING.md           # Contribution guidelines
โ””โ”€โ”€ LICENSE                   # Apache 2.0 license

๐Ÿ“„ License

This project is licensed under the Apache License 2.0 - see the LICENSE file for details.

SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
SPDX-License-Identifier: Apache-2.0

๐Ÿ™ Acknowledgments

  • Built with aiortc - Python WebRTC implementation
  • Compatible with vLLM, SGLang, and Ollama
  • Inspired by the growing ecosystem of open-source vision language models, including NanoVLM

๐Ÿ“ Citation

If you use this in your research or project, please cite:

@software{live_vlm_webui,
  title = {Live VLM WebUI: Real-time Vision AI Interaction},
  year = {2025},
  url = {https://github.com/nvidia-ai-iot/live-vlm-webui}
}

โญ Star History

Thank you to everyone who has starred this project! Your support drives us to keep improving and innovating. ๐Ÿš€

Star History Chart

Haven't starred yet? Click here to give us a โญ โ€” it takes just a second and helps us tremendously!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

live_vlm_webui-0.1.0.tar.gz (372.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

live_vlm_webui-0.1.0-py3-none-any.whl (361.8 kB view details)

Uploaded Python 3

File details

Details for the file live_vlm_webui-0.1.0.tar.gz.

File metadata

  • Download URL: live_vlm_webui-0.1.0.tar.gz
  • Upload date:
  • Size: 372.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for live_vlm_webui-0.1.0.tar.gz
Algorithm Hash digest
SHA256 8edd3f67705efb3ba1c840c43c8e2bdc6b0cdb460e92db0d85d1a04a6faf1ea0
MD5 0fb16789207bcd9d8077c4b0b1fd2e1b
BLAKE2b-256 a1d6d224a2524455603f6e0d16d5058cd779cd9300ad1de523bfbaf8a4e43643

See more details on using hashes here.

Provenance

The following attestation bundles were made for live_vlm_webui-0.1.0.tar.gz:

Publisher: build-wheel.yml on NVIDIA-AI-IOT/live-vlm-webui

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file live_vlm_webui-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: live_vlm_webui-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 361.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for live_vlm_webui-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 bb726adc08e33c0bcc0557e26174de201c9f22daffed6fd36d06461e7f934fd9
MD5 eecd1dbf7f7b92b397eecc5ab81c8944
BLAKE2b-256 1fa0364dbbb10687c88d75c4d90788746c13d7282f204d06336e7fb7344d8dea

See more details on using hashes here.

Provenance

The following attestation bundles were made for live_vlm_webui-0.1.0-py3-none-any.whl:

Publisher: build-wheel.yml on NVIDIA-AI-IOT/live-vlm-webui

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page