Spaces:
Running
on
Zero
Running
on
Zero
Create app.py
Browse files
app.py
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""
|
| 2 |
+
File: app.py
|
| 3 |
+
Description: Chat with the AutoRound quantized Mistral Small.
|
| 4 |
+
Author: Didier Guillevic
|
| 5 |
+
Date: 2025-05-08
|
| 6 |
+
"""
|
| 7 |
+
|
| 8 |
+
import os
|
| 9 |
+
import gradio as gr
|
| 10 |
+
|
| 11 |
+
from module_vision import demo as vision_block
|
| 12 |
+
|
| 13 |
+
demo = gr.TabbedInterface(
|
| 14 |
+
interface_list=[vision_block, ],
|
| 15 |
+
tab_names=["Vision", ],
|
| 16 |
+
title="Chat with a vision language model"
|
| 17 |
+
)
|
| 18 |
+
|
| 19 |
+
demo.launch()
|