Update app.py
Browse files
app.py
CHANGED
|
@@ -59,7 +59,7 @@ block = gr.Blocks()
|
|
| 59 |
with block:
|
| 60 |
gr.Markdown("""<h1><center>Learn about Beism</center></h1>""")
|
| 61 |
chatbot = gr.Chatbot()
|
| 62 |
-
message = gr.Textbox(placeholder="
|
| 63 |
state = gr.State([])
|
| 64 |
submit = gr.Button("SEND")
|
| 65 |
submit.click(conv, inputs=[message, state], outputs=[chatbot, state])
|
|
|
|
| 59 |
with block:
|
| 60 |
gr.Markdown("""<h1><center>Learn about Beism</center></h1>""")
|
| 61 |
chatbot = gr.Chatbot()
|
| 62 |
+
message = gr.Textbox(placeholder="What is Beism?")
|
| 63 |
state = gr.State([])
|
| 64 |
submit = gr.Button("SEND")
|
| 65 |
submit.click(conv, inputs=[message, state], outputs=[chatbot, state])
|