hunyuan-t commited on
Commit
e58ee8f
·
verified ·
1 Parent(s): 9a77e12

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -11
app.py CHANGED
@@ -86,21 +86,12 @@ latex_delimiters = [
86
 
87
  chatbot = gr.Chatbot(latex_delimiters=latex_delimiters, scale=9)
88
 
89
- css = """
90
- <style>
91
- .reasoning-content {
92
- color: #999999;
93
- }
94
- .normal-content {
95
- color: #000000;
96
- }
97
- </style>
98
- """
99
 
100
  demo = gr.ChatInterface(respond,
101
  title="Hunyuan T1",
102
  examples=example_prompts,
103
- chatbot=chatbot
 
104
 
105
  )
106
 
 
86
 
87
  chatbot = gr.Chatbot(latex_delimiters=latex_delimiters, scale=9)
88
 
 
 
 
 
 
 
 
 
 
 
89
 
90
  demo = gr.ChatInterface(respond,
91
  title="Hunyuan T1",
92
  examples=example_prompts,
93
+ chatbot=chatbot,
94
+ description="这是一个基于 Hunyuan T1 的聊天界面,支持自然语言对话。"
95
 
96
  )
97