File size: 386 Bytes
9b07e3a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
140394d
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 (4-bits weights quantized) vision language model"
)

demo.launch()