themissingCRAM
commited on
Commit
·
436e907
1
Parent(s):
600606a
gradio
Browse files
app.py
CHANGED
@@ -153,7 +153,7 @@ if __name__ == "__main__":
|
|
153 |
)
|
154 |
with gr.Blocks() as b:
|
155 |
chatbot = gr.Chatbot(type="messages", height=1000)
|
156 |
-
textbox = gr.Textbox(lines=
|
157 |
enter_button = gr.Button("enter")
|
158 |
stop_generating_button = gr.Button("stop generating")
|
159 |
clear_messages_button = gr.ClearButton([textbox,chatbot])
|
|
|
153 |
)
|
154 |
with gr.Blocks() as b:
|
155 |
chatbot = gr.Chatbot(type="messages", height=1000)
|
156 |
+
textbox = gr.Textbox(lines=1, label="chat message")
|
157 |
enter_button = gr.Button("enter")
|
158 |
stop_generating_button = gr.Button("stop generating")
|
159 |
clear_messages_button = gr.ClearButton([textbox,chatbot])
|