Spaces:
Sleeping
Sleeping
File size: 562 Bytes
9b07e3a 5b0b242 9b07e3a 5b0b242 f74574b 9b07e3a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
"""
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
from module_translation import demo as translation_block
from module_rewriting import demo as rewriting_block
demo = gr.TabbedInterface(
interface_list=[vision_block, translation_block, rewriting_block],
tab_names=["Vision", "Translation", "Rewriting"],
title="Chat with a vision language model (with 4-bit weight quantization)"
)
demo.launch() |