Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
|
@@ -53,5 +53,9 @@ def chat(message, history):
|
|
| 53 |
|
| 54 |
|
| 55 |
|
| 56 |
-
demo = gr.ChatInterface(fn=chat,
|
|
|
|
|
|
|
|
|
|
|
|
|
| 57 |
demo.launch()
|
|
|
|
| 53 |
|
| 54 |
|
| 55 |
|
| 56 |
+
demo = gr.ChatInterface(fn=chat,
|
| 57 |
+
chatbot=gr.Chatbot(show_label=True, show_share_button=True, show_copy_button=True, likeable=True, layout="bubble", bubble_full_width=False),
|
| 58 |
+
theme="Soft",
|
| 59 |
+
examples=[["Write me a poem about Machine Learning."]],
|
| 60 |
+
title="gemma 2b-it")
|
| 61 |
demo.launch()
|