Spaces:
Sleeping
Sleeping
File size: 392 Bytes
9b07e3a f74574b 9b07e3a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
"""
File: app.py
Description: Chat with the AutoRound quantized Mistral Small.
Author: Didier Guillevic
Date: 2025-05-08
"""
import os
import gradio as gr
from module_vision import demo as vision_block
demo = gr.TabbedInterface(
interface_list=[vision_block, ],
tab_names=["Vision", ],
title="Chat with a vision language model (with 4-bit weight quantization)"
)
demo.launch() |