Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -1,54 +1,54 @@
|
|
1 |
-
from typing import List, Tuple, Union
|
2 |
-
from web_ui import WebUI
|
3 |
-
import math
|
4 |
-
import os
|
5 |
-
|
6 |
-
from qwen_agent.agents import Assistant
|
7 |
-
from qwen_agent.gui.gradio import gr
|
8 |
-
|
9 |
-
def app_gui():
|
10 |
-
# Define the agent
|
11 |
-
bot = Assistant(llm={
|
12 |
-
'model': os.environ.get("MODELNAME"),
|
13 |
-
'generate_cfg': {
|
14 |
-
'max_input_tokens': 32768,
|
15 |
-
'max_retries': 10,
|
16 |
-
'temperature': float(os.environ.get("T", 0.001)),
|
17 |
-
'repetition_penalty': float(os.environ.get("R", 1.0)),
|
18 |
-
"top_k": int(os.environ.get("K", 20)),
|
19 |
-
"top_p": float(os.environ.get("P", 0.8)),
|
20 |
-
}},
|
21 |
-
name='QwQ-32B-preview',
|
22 |
-
description='QwQ-32B-Preview is an experimental research model developed by the Qwen Team, focused on advancing AI reasoning capabilities. As a preview release, it demonstrates promising analytical abilities while having several important limitations such as code switching and recursive reasoning loops. Only single-turn queries are supported in this demo.',
|
23 |
-
system_message= 'You are a helpful and harmless assistant. You are Qwen developed by Alibaba. You should think step-by-step.',
|
24 |
-
rag_cfg={'max_ref_token': 32768, 'rag_searchers': []},
|
25 |
-
)
|
26 |
-
chatbot_config = {
|
27 |
-
'input.placeholder': "Type \"/clear\" to clear the history",
|
28 |
-
'verbose': True,
|
29 |
-
'prompt.suggestions': [
|
30 |
-
{
|
31 |
-
'text': 'How many r in strawberry'
|
32 |
-
},
|
33 |
-
{
|
34 |
-
'text': 'Find the least odd prime factor of $2019^8+1$.'
|
35 |
-
},
|
36 |
-
{
|
37 |
-
'text': '''Sๅ
็ใPๅ
็ใQๅ
็ไปไปฌ็ฅ้ๆกๅญ็ๆฝๅฑ้ๆ16ๅผ ๆๅ
็๏ผ็บขๆกAใQใ4 ้ปๆกJใ8ใ4ใ2ใ7ใ3 ่่ฑKใQใ5ใ4ใ6 ๆนๅAใ5ใ็บฆ็ฟฐๆๆไป่ฟ16ๅผ ็ไธญๆๅบไธๅผ ็ๆฅ๏ผๅนถๆ่ฟๅผ ็็็นๆฐๅ่ฏ Pๅ
็๏ผๆ่ฟๅผ ็็่ฑ่ฒๅ่ฏQๅ
็ใ่ฟๆถ๏ผ็บฆ็ฟฐๆๆ้ฎPๅ
็ๅQ ๅ
็๏ผไฝ ไปฌ่ฝไปๅทฒ็ฅ็็นๆฐๆ่ฑ่ฒไธญๆจ็ฅ่ฟๅผ ็ๆฏไปไน็ๅ๏ผไบๆฏ๏ผSๅ
็ๅฌๅฐๅฆไธ็ๅฏน่ฏ๏ผ
|
38 |
-
|
39 |
-
Pๅ
็๏ผๆไธ็ฅ้่ฟๅผ ็ใ
|
40 |
-
|
41 |
-
Qๅ
็๏ผๆ็ฅ้ไฝ ไธ็ฅ้่ฟๅผ ็ใ
|
42 |
-
|
43 |
-
Pๅ
็๏ผ็ฐๅจๆ็ฅ้่ฟๅผ ็ไบใ
|
44 |
-
|
45 |
-
Qๅ
็๏ผๆไน็ฅ้ไบใ
|
46 |
-
|
47 |
-
่ฏท้ฎ๏ผ่ฟๅผ ็ๆฏไปไน็๏ผ'''
|
48 |
-
},
|
49 |
-
]
|
50 |
-
}
|
51 |
-
WebUI(bot, chatbot_config=chatbot_config).run()
|
52 |
-
|
53 |
-
if __name__ == '__main__':
|
54 |
-
app_gui()
|
|
|
1 |
+
from typing import List, Tuple, Union
|
2 |
+
from web_ui import WebUI
|
3 |
+
import math
|
4 |
+
import os
|
5 |
+
|
6 |
+
from qwen_agent.agents import Assistant
|
7 |
+
from qwen_agent.gui.gradio import gr
|
8 |
+
|
9 |
+
def app_gui():
|
10 |
+
# Define the agent
|
11 |
+
bot = Assistant(llm={
|
12 |
+
'model': os.environ.get("MODELNAME"),
|
13 |
+
'generate_cfg': {
|
14 |
+
'max_input_tokens': 32768,
|
15 |
+
'max_retries': 10,
|
16 |
+
'temperature': float(os.environ.get("T", 0.001)),
|
17 |
+
'repetition_penalty': float(os.environ.get("R", 1.0)),
|
18 |
+
"top_k": int(os.environ.get("K", 20)),
|
19 |
+
"top_p": float(os.environ.get("P", 0.8)),
|
20 |
+
}},
|
21 |
+
name='QwQ-32B-preview',
|
22 |
+
description='QwQ-32B-Preview is an experimental research model developed by the Qwen Team, focused on advancing AI reasoning capabilities. As a preview release, it demonstrates promising analytical abilities while having several important limitations such as code switching and recursive reasoning loops. Only single-turn queries are supported in this demo.',
|
23 |
+
system_message= 'You are a helpful and harmless assistant. You are Qwen developed by Alibaba. You should think step-by-step.',
|
24 |
+
rag_cfg={'max_ref_token': 32768, 'rag_searchers': []},
|
25 |
+
)
|
26 |
+
chatbot_config = {
|
27 |
+
'input.placeholder': "Type \"/clear\" to clear the history",
|
28 |
+
'verbose': True,
|
29 |
+
'prompt.suggestions': [
|
30 |
+
{
|
31 |
+
'text': 'How many r in strawberry'
|
32 |
+
},
|
33 |
+
{
|
34 |
+
'text': 'Find the least odd prime factor of $2019^8+1$.'
|
35 |
+
},
|
36 |
+
{
|
37 |
+
'text': '''Sๅ
็ใPๅ
็ใQๅ
็ไปไปฌ็ฅ้ๆกๅญ็ๆฝๅฑ้ๆ16ๅผ ๆๅ
็๏ผ็บขๆกAใQใ4 ้ปๆกJใ8ใ4ใ2ใ7ใ3 ่่ฑKใQใ5ใ4ใ6 ๆนๅAใ5ใ็บฆ็ฟฐๆๆไป่ฟ16ๅผ ็ไธญๆๅบไธๅผ ็ๆฅ๏ผๅนถๆ่ฟๅผ ็็็นๆฐๅ่ฏ Pๅ
็๏ผๆ่ฟๅผ ็็่ฑ่ฒๅ่ฏQๅ
็ใ่ฟๆถ๏ผ็บฆ็ฟฐๆๆ้ฎPๅ
็ๅQ ๅ
็๏ผไฝ ไปฌ่ฝไปๅทฒ็ฅ็็นๆฐๆ่ฑ่ฒไธญๆจ็ฅ่ฟๅผ ็ๆฏไปไน็ๅ๏ผไบๆฏ๏ผSๅ
็ๅฌๅฐๅฆไธ็ๅฏน่ฏ๏ผ
|
38 |
+
|
39 |
+
Pๅ
็๏ผๆไธ็ฅ้่ฟๅผ ็ใ
|
40 |
+
|
41 |
+
Qๅ
็๏ผๆ็ฅ้ไฝ ไธ็ฅ้่ฟๅผ ็ใ
|
42 |
+
|
43 |
+
Pๅ
็๏ผ็ฐๅจๆ็ฅ้่ฟๅผ ็ไบใ
|
44 |
+
|
45 |
+
Qๅ
็๏ผๆไน็ฅ้ไบใ
|
46 |
+
|
47 |
+
่ฏท้ฎ๏ผ่ฟๅผ ็ๆฏไปไน็๏ผ'''
|
48 |
+
},
|
49 |
+
]
|
50 |
+
}
|
51 |
+
WebUI(bot, chatbot_config=chatbot_config).run(concurrency_limit=80)
|
52 |
+
|
53 |
+
if __name__ == '__main__':
|
54 |
+
app_gui()
|