Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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','
|
| 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 |
|