petrified commited on
Commit
93cee4e
·
verified ·
1 Parent(s): 8732eae

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -4
app.py CHANGED
@@ -186,13 +186,12 @@ with gr.Blocks() as demo:
186
  height=500
187
  )
188
  with gr.Column():
189
- chat_input = gr.Textbox(placeholder="Type your message here...", label="Chat")
190
- chat_output = gr.Textbox(label="Response", interactive=False)
191
-
192
  examples = gr.Examples(
193
- examples=['Top 10 prod_cate sales', 'Top product in category Seafood','Sum sales trend of product name called Lobster by time per day'],
194
  inputs=chat_input
195
  )
 
 
196
 
197
  submit_button = gr.Button("生成响应")
198
 
 
186
  height=500
187
  )
188
  with gr.Column():
 
 
 
189
  examples = gr.Examples(
190
+ examples=['Top 10 prod_cate sales', 'Top product in category Seafood','What is the daily sales trend of the product Lobster'],
191
  inputs=chat_input
192
  )
193
+ chat_input = gr.Textbox(placeholder="Type your message here...", label="Chat")
194
+ chat_output = gr.Textbox(label="Response", interactive=False)
195
 
196
  submit_button = gr.Button("生成响应")
197