File size: 373 Bytes
b69bd46
 
 
 
 
 
 
 
 
 
 
 
 
de60c53
b69bd46
 
 
 
 
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 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)