Commit
·
eda969f
1
Parent(s):
cac98cc
Update app.py
Browse files
app.py
CHANGED
|
@@ -93,6 +93,11 @@ description = r"""
|
|
| 93 |
|
| 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"),
|
|
@@ -100,5 +105,6 @@ gr.ChatInterface(
|
|
| 100 |
title="Mix-OpenAI-Chat",
|
| 101 |
examples=examples,
|
| 102 |
description=description,
|
|
|
|
| 103 |
concurrency_limit=20,
|
| 104 |
).launch(show_api=False)
|
|
|
|
| 93 |
|
| 94 |
"""
|
| 95 |
|
| 96 |
+
|
| 97 |
+
article = r"""
|
| 98 |
+
<br><br><br><br><br>
|
| 99 |
+
"""
|
| 100 |
+
|
| 101 |
gr.ChatInterface(
|
| 102 |
fn=generate,
|
| 103 |
chatbot=gr.Chatbot(show_label=False, show_share_button=False, show_copy_button=True, likeable=True, layout="panel"),
|
|
|
|
| 105 |
title="Mix-OpenAI-Chat",
|
| 106 |
examples=examples,
|
| 107 |
description=description,
|
| 108 |
+
article=article,
|
| 109 |
concurrency_limit=20,
|
| 110 |
).launch(show_api=False)
|