Update app.py
Browse files
app.py
CHANGED
@@ -133,17 +133,9 @@ def respond(message, history):
|
|
133 |
demo = gr.ChatInterface(
|
134 |
fn=respond,
|
135 |
chatbot=gr.Chatbot(show_copy_button=True, likeable=True, layout="panel"),
|
136 |
-
description ="
|
137 |
textbox=gr.MultimodalTextbox(),
|
138 |
multimodal=True,
|
139 |
concurrency_limit=200,
|
140 |
-
examples=[
|
141 |
-
{"text": "Hy, who are you?",},
|
142 |
-
{"text": "What's the current price of Bitcoin",},
|
143 |
-
{"text": "Search and Tell me what's trending on Youtube.",},
|
144 |
-
{"text": "Create A Beautiful image of Effiel Tower at Night",},
|
145 |
-
{"text": "Write me a Python function to calculate the first 10 digits of the fibonacci sequence.",},
|
146 |
-
],
|
147 |
-
cache_examples=False,
|
148 |
)
|
149 |
demo.launch()
|
|
|
133 |
demo = gr.ChatInterface(
|
134 |
fn=respond,
|
135 |
chatbot=gr.Chatbot(show_copy_button=True, likeable=True, layout="panel"),
|
136 |
+
description =" ",
|
137 |
textbox=gr.MultimodalTextbox(),
|
138 |
multimodal=True,
|
139 |
concurrency_limit=200,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
140 |
)
|
141 |
demo.launch()
|