Melika Kheirieh commited on
Commit
b695359
·
1 Parent(s): 8143b24

chore(ui): update example queries to match supported demo cases

Browse files
Files changed (2) hide show
  1. .DS_Store +0 -0
  2. demo/app.py +5 -2
.DS_Store CHANGED
Binary files a/.DS_Store and b/.DS_Store differ
 
demo/app.py CHANGED
@@ -209,9 +209,12 @@ def build_ui() -> gr.Blocks:
209
  gr.Examples(
210
  examples=[
211
  ["List all artists"],
212
- ["Top 5 customers by total invoice amount"],
 
 
213
  ["Total number of tracks per genre"],
214
- ["Top 3 albums by total sales"],
 
215
  ],
216
  inputs=[q],
217
  label="Try these example queries",
 
209
  gr.Examples(
210
  examples=[
211
  ["List all artists"],
212
+ [
213
+ "List customers whose total spending is above the average invoice total."
214
+ ],
215
  ["Total number of tracks per genre"],
216
+ ["List all albums with their total sales"],
217
+ ["Customers spending above average"],
218
  ],
219
  inputs=[q],
220
  label="Try these example queries",