Spaces:
Sleeping
Sleeping
DmitrMakeev
commited on
Commit
•
4579d7a
1
Parent(s):
5d623bb
Update app.py
Browse files
app.py
CHANGED
@@ -88,11 +88,17 @@ additional_inputs=[
|
|
88 |
examples=[["", "Отвечай всегда полностью на русском языке", 0.5, 20480, 0.75, 1.2],
|
89 |
]
|
90 |
|
|
|
|
|
|
|
|
|
|
|
91 |
gr.ChatInterface(
|
92 |
fn=generate,
|
93 |
chatbot=gr.Chatbot(show_label=False, show_share_button=False, show_copy_button=True, likeable=True, layout="panel"),
|
94 |
additional_inputs=additional_inputs,
|
95 |
title="Mix-OpenAI-Chat",
|
96 |
examples=examples,
|
|
|
97 |
concurrency_limit=20,
|
98 |
).launch(show_api=False)
|
|
|
88 |
examples=[["", "Отвечай всегда полностью на русском языке", 0.5, 20480, 0.75, 1.2],
|
89 |
]
|
90 |
|
91 |
+
|
92 |
+
description = r"""
|
93 |
+
<br><br><br><br><br><br>
|
94 |
+
"""
|
95 |
+
|
96 |
gr.ChatInterface(
|
97 |
fn=generate,
|
98 |
chatbot=gr.Chatbot(show_label=False, show_share_button=False, show_copy_button=True, likeable=True, layout="panel"),
|
99 |
additional_inputs=additional_inputs,
|
100 |
title="Mix-OpenAI-Chat",
|
101 |
examples=examples,
|
102 |
+
description=description,
|
103 |
concurrency_limit=20,
|
104 |
).launch(show_api=False)
|