themissingCRAM
commited on
Commit
·
0225d03
1
Parent(s):
f4b8a3e
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=1, label="chat message",value="What is the average each customer paid?")
|
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 (with default sample question)",value="What is the average each customer paid?")
|
157 |
enter_button = gr.Button("enter")
|
158 |
stop_generating_button = gr.Button("stop generating")
|
159 |
clear_messages_button = gr.ClearButton([textbox,chatbot])
|