Real-time Vision Language Model interaction web interface
Project description
Live VLM WebUI
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.
[!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! ๐
๐ 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 shSee 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?
- System-wide (
sudo pip3) - Runs the jtop background service- Pipx environment (
pipx inject) - Allows live-vlm-webui to access jtop dataThe reboot ensures proper socket permissions for jtop access.
[!TIP] Jetson Thor (Python 3.12): Use
pipxinstead ofpipdue to PEP 668 protection. pipx automatically creates isolated environments for applications.GPU Monitoring: Installing
jetson-statsenables 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 |
|---|---|---|
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-venvand 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)
- Visit NVIDIA API Catalog
- Get API key on build.nvidia.com page.
- Configure in WebUI:
- API Base:
https://integrate.api.nvidia.com/v1 - API Key:
nvapi-YOUR_KEY - Model:
meta/llama-3.2-90b-vision-instruct
- API Base:
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
latesttag is a multi-arch image that automatically selects the correct architecture:
linux/amd64for x86_64 PC and DGX systemslinux/arm64for 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.shautomatically 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
- ๐ VLM Backend Setup - Detailed guide for Ollama, vLLM, SGLang, NVIDIA API
- ๐ Docker Compose Details - Complete stack setup with Ollama or NIM
- ๐ ๏ธ Manual Docker Deployment - Advanced Docker configurations
- โ๏ธ Advanced Configuration - Performance tuning, custom prompts, API compatibility
For Developers
- ๐จ Building Docker Images - Build platform-specific images for GHCR
- ๐งโ๐ป Contributing Guide - How to contribute to the project
Help & Support
- ๐ Troubleshooting Guide - Common issues and solutions
- ๐ฌ GitHub Issues - Bug reports and feature requests
- ๐ NVIDIA Developer Forums - Community 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.shor--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) orcurl http://localhost:11434/v1/models(Ollama) - Use
--network hostin Docker for local VLM services
GPU stats show "N/A"?
- PC: Add
--gpus allwhen 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. ๐
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8edd3f67705efb3ba1c840c43c8e2bdc6b0cdb460e92db0d85d1a04a6faf1ea0
|
|
| MD5 |
0fb16789207bcd9d8077c4b0b1fd2e1b
|
|
| BLAKE2b-256 |
a1d6d224a2524455603f6e0d16d5058cd779cd9300ad1de523bfbaf8a4e43643
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
live_vlm_webui-0.1.0.tar.gz -
Subject digest:
8edd3f67705efb3ba1c840c43c8e2bdc6b0cdb460e92db0d85d1a04a6faf1ea0 - Sigstore transparency entry: 688962528
- Sigstore integration time:
-
Permalink:
NVIDIA-AI-IOT/live-vlm-webui@5a464d7a5671423287f13170b5dbe478da8645a3 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/NVIDIA-AI-IOT
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheel.yml@5a464d7a5671423287f13170b5dbe478da8645a3 -
Trigger Event:
release
-
Statement type:
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bb726adc08e33c0bcc0557e26174de201c9f22daffed6fd36d06461e7f934fd9
|
|
| MD5 |
eecd1dbf7f7b92b397eecc5ab81c8944
|
|
| BLAKE2b-256 |
1fa0364dbbb10687c88d75c4d90788746c13d7282f204d06336e7fb7344d8dea
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
live_vlm_webui-0.1.0-py3-none-any.whl -
Subject digest:
bb726adc08e33c0bcc0557e26174de201c9f22daffed6fd36d06461e7f934fd9 - Sigstore transparency entry: 688962543
- Sigstore integration time:
-
Permalink:
NVIDIA-AI-IOT/live-vlm-webui@5a464d7a5671423287f13170b5dbe478da8645a3 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/NVIDIA-AI-IOT
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build-wheel.yml@5a464d7a5671423287f13170b5dbe478da8645a3 -
Trigger Event:
release
-
Statement type: