Spaces:
Running
Running
File size: 506 Bytes
e8fb5c0 0a632f8 dc944d5 e8fb5c0 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 25 26 |
import os
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",
src=dashscope_gradio.registry,
accept_token=not os.getenv("DASHSCOPE_API_KEY"),
)
if __name__ == "__main__":
demo.launch()
|