GZielinski commited on
Commit
b4439e3
·
verified ·
1 Parent(s): cafd505

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -987,16 +987,16 @@ with gr.Blocks(title="AIBDM 2026 Workshop App") as demo:
987
  )
988
  user_input = gr.Textbox(
989
  label="Ask about your data",
990
- placeholder="e.g. Show me sales trends / What are the top sellers? / Sentiment analysis",
991
  lines=1,
992
  )
993
  gr.Examples(
994
  examples=[
995
  "Show me the sales trends",
996
- "What does the sentiment look like?",
997
- "Which titles sell the most?",
998
- "Show the ARIMA forecasts",
999
- "What are the pricing decisions?",
1000
  "Give me a dashboard overview",
1001
  ],
1002
  inputs=user_input,
 
987
  )
988
  user_input = gr.Textbox(
989
  label="Ask about your data",
990
+ placeholder="e.g. Show me sales trends / Which products perform best? / Customer sentiment analysis",
991
  lines=1,
992
  )
993
  gr.Examples(
994
  examples=[
995
  "Show me the sales trends",
996
+ "What does customer sentiment look like across products?",
997
+ "Which products perform best?",
998
+ "Show the sales forecast for top products",
999
+ "What pricing decisions are recommended based on demand and sentiment?",
1000
  "Give me a dashboard overview",
1001
  ],
1002
  inputs=user_input,