File size: 471 Bytes
0a632f8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import dashscope_gradio

from utils import get_app

demo = get_app(
    models=[
        "qwen-turbo-latest",
        "qwen-turbo",
        "qwen-plus",
        "qwen-max",
        "qwen1.5-110b-chat",
        "qwen1.5-72b-chat",
        "qwen1.5-32b-chat",
        "qwen1.5-14b-chat",
        "qwen1.5-7b-chat",
    ],
    default_model="qwen-turbo-latest",
    registry=dashscope_gradio.registry,
    accept_token=False,
)

if __name__ == "__main__":
    demo.launch()