Spaces:
Running
on
Zero
Running
on
Zero
""" | |
File: app.py | |
Description: Chat with the Qwen3 (text / think) model. | |
Author: Didier Guillevic | |
Date: 2025-05-10 | |
""" | |
import os | |
import gradio as gr | |
from module_translation import demo as translation_block | |
demo = gr.TabbedInterface( | |
interface_list=[translation_block,], | |
tab_names=["Translation",], | |
title="Qwen3 text/think model" | |
) | |
demo.launch(show_api=False) |