Update app.py
Browse files
app.py
CHANGED
|
@@ -25,12 +25,12 @@ demo = gr.Blocks()
|
|
| 25 |
|
| 26 |
with demo:
|
| 27 |
with gr.Row():
|
| 28 |
-
|
| 29 |
-
|
| 30 |
|
| 31 |
with gr.Row():
|
| 32 |
-
|
| 33 |
-
|
| 34 |
|
| 35 |
submit_button = gr.Button("Send")
|
| 36 |
|
|
|
|
| 25 |
|
| 26 |
with demo:
|
| 27 |
with gr.Row():
|
| 28 |
+
output_chatbot = gr.outputs.Chatbot()
|
| 29 |
+
output_state = gr.outputs.State()
|
| 30 |
|
| 31 |
with gr.Row():
|
| 32 |
+
input_text = gr.inputs.Textbox(label="write some text")
|
| 33 |
+
input_state = gr.inputs.State()
|
| 34 |
|
| 35 |
submit_button = gr.Button("Send")
|
| 36 |
|