Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -103,17 +103,17 @@ with gr.Blocks(
|
|
103 |
theme=gr.themes.Soft()
|
104 |
) as demo:
|
105 |
gr.Markdown(
|
106 |
-
f"""<h1><center
|
107 |
-
这儿是一个__中文__
|
108 |
这是量化版兮辞·析辞的部署,具有__70亿__个参数,在 CPU 上运行。
|
109 |
SLIDE 是一种会话语言模型,在多种类型的语料库上进行训练。
|
110 |
本节目由上海师范大学附属外国语中学__NLPark__赞助播出~
|
111 |
"""
|
112 |
)
|
113 |
with gr.Row():
|
114 |
-
with gr.Column(scale=
|
115 |
chatbot = gr.Chatbot(label="兮辞如是说").style(height=400)
|
116 |
-
system_prompt = gr.Textbox(label="系统提示词", placeholder="", value=SYSTEM_PROMPT, interactive=False)
|
117 |
with gr.Column(min_width=80, scale=1):
|
118 |
with gr.Tab(label="设置参数"):
|
119 |
top_p = gr.Slider(
|
@@ -149,9 +149,9 @@ with gr.Blocks(
|
|
149 |
).style(container=False)
|
150 |
with gr.Column():
|
151 |
with gr.Row():
|
152 |
-
submit = gr.Button("开凹!")
|
153 |
-
stop = gr.Button("全局时空断裂")
|
154 |
-
clear = gr.Button("打扫群内垃圾")
|
155 |
with gr.Row():
|
156 |
gr.Markdown(
|
157 |
"""警告:该模型可能会生成事实上或道德上不正确的文本。NLPark和兮辞对此不承担任何责任。"""
|
|
|
103 |
theme=gr.themes.Soft()
|
104 |
) as demo:
|
105 |
gr.Markdown(
|
106 |
+
f"""<h1><center>上师附外-兮辞·析辞-人工智能助理</center></h1>
|
107 |
+
这儿是一个__中文__模型的部署。
|
108 |
这是量化版兮辞·析辞的部署,具有__70亿__个参数,在 CPU 上运行。
|
109 |
SLIDE 是一种会话语言模型,在多种类型的语料库上进行训练。
|
110 |
本节目由上海师范大学附属外国语中学__NLPark__赞助播出~
|
111 |
"""
|
112 |
)
|
113 |
with gr.Row():
|
114 |
+
with gr.Column(scale=5):
|
115 |
chatbot = gr.Chatbot(label="兮辞如是说").style(height=400)
|
116 |
+
system_prompt = gr.Textbox(label="系统提示词", placeholder="", value=SYSTEM_PROMPT, interactive=False, lines=5)
|
117 |
with gr.Column(min_width=80, scale=1):
|
118 |
with gr.Tab(label="设置参数"):
|
119 |
top_p = gr.Slider(
|
|
|
149 |
).style(container=False)
|
150 |
with gr.Column():
|
151 |
with gr.Row():
|
152 |
+
submit = gr.Button("Submit / 开凹!")
|
153 |
+
stop = gr.Button("Stop / 全局时空断裂")
|
154 |
+
clear = gr.Button("Clear / 打扫群内垃圾")
|
155 |
with gr.Row():
|
156 |
gr.Markdown(
|
157 |
"""警告:该模型可能会生成事实上或道德上不正确的文本。NLPark和兮辞对此不承担任何责任。"""
|