dung-vpt-uney
Deploy latest CoRGI Gradio demo
b6a01d6
raw
history blame
207 Bytes
"""Hugging Face Spaces entrypoint for the CoRGI Qwen3-VL demo."""
from corgi.gradio_app import build_demo
demo = build_demo()
demo.queue(concurrency_count=1)
if __name__ == "__main__":
demo.launch()