Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -102,8 +102,8 @@ def vote(data: gr.LikeData):
|
|
| 102 |
with gr.Blocks() as demo:
|
| 103 |
gr.Markdown("""<h1><center>DylanAI by CIONIC</center></h1>""")
|
| 104 |
gr.Markdown("""<p><center>For best results, please ask DylanAI one question at a time. Unlike Human Dylan, DylanAI cannot multitask.</center></p>""")
|
| 105 |
-
chatbot = gr.Chatbot()
|
| 106 |
-
textbox = gr.Textbox()
|
| 107 |
clear = gr.Button("Clear")
|
| 108 |
|
| 109 |
# Chain user and bot functions with `.then()`
|
|
|
|
| 102 |
with gr.Blocks() as demo:
|
| 103 |
gr.Markdown("""<h1><center>DylanAI by CIONIC</center></h1>""")
|
| 104 |
gr.Markdown("""<p><center>For best results, please ask DylanAI one question at a time. Unlike Human Dylan, DylanAI cannot multitask.</center></p>""")
|
| 105 |
+
chatbot = gr.Chatbot(label="DylanAI")
|
| 106 |
+
textbox = gr.Textbox(label="Type your question here")
|
| 107 |
clear = gr.Button("Clear")
|
| 108 |
|
| 109 |
# Chain user and bot functions with `.then()`
|