Spaces:
Build error
Build error
shamik
commited on
Commit
·
bae9d99
1
Parent(s):
9cdf478
Modified the app.py with examples.
Browse files
app.py
CHANGED
|
@@ -86,5 +86,9 @@ gr.ChatInterface(
|
|
| 86 |
fn=generate,
|
| 87 |
chatbot=gr.Chatbot(show_label=False, show_share_button=False, show_copy_button=True, likeable=True, layout="panel"),
|
| 88 |
additional_inputs=additional_inputs,
|
| 89 |
-
title="""Have a chat with Mistral 7B"""
|
|
|
|
|
|
|
|
|
|
|
|
|
| 90 |
).launch(show_api=False)
|
|
|
|
| 86 |
fn=generate,
|
| 87 |
chatbot=gr.Chatbot(show_label=False, show_share_button=False, show_copy_button=True, likeable=True, layout="panel"),
|
| 88 |
additional_inputs=additional_inputs,
|
| 89 |
+
title="""Have a chat with Mistral 7B""",
|
| 90 |
+
examples=[
|
| 91 |
+
["Can you explain briefly to me what is the Python programming language?"],
|
| 92 |
+
["Write a 100-word article on 'Benefits of Open-Source in AI research'"],
|
| 93 |
+
]
|
| 94 |
).launch(show_api=False)
|