Didier's picture
Update app.py
140394d verified
raw
history blame
386 Bytes
"""
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 (4-bits weights quantized) vision language model"
)
demo.launch()