Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -87,12 +87,12 @@ chatbot = gr.Chatbot(height=450,
|
|
87 |
layout="bubble")
|
88 |
|
89 |
with gr.Blocks() as demo:
|
90 |
-
gr.HTML("<h1><center>
|
91 |
gr.ChatInterface(
|
92 |
generate,
|
93 |
chatbot=chatbot, # Use the created Chatbot object
|
94 |
additional_inputs=additional_inputs,
|
95 |
-
examples=[["
|
96 |
|
97 |
)
|
98 |
|
|
|
87 |
layout="bubble")
|
88 |
|
89 |
with gr.Blocks() as demo:
|
90 |
+
gr.HTML("<h1><center>Gemma-7B-Chat 💬<h1><center>")
|
91 |
gr.ChatInterface(
|
92 |
generate,
|
93 |
chatbot=chatbot, # Use the created Chatbot object
|
94 |
additional_inputs=additional_inputs,
|
95 |
+
examples=[["What is the meaning of life?"], ["Tell me something about Mt Fuji."]],
|
96 |
|
97 |
)
|
98 |
|