Spaces:
Running
on
Zero
Running
on
Zero
| """ | |
| 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() |