shagatoo commited on
Commit
4010e76
·
verified ·
1 Parent(s): 73c40ca

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -393,6 +393,10 @@ with gr.Blocks(title="Stock Price Forecaster", theme=gr.themes.Soft()) as app:
393
 
394
  # Add examples (use safe function)
395
  gr.Examples(
 
 
 
 
396
  inputs=[ticker_input, days_input],
397
  outputs=[plot_output, summary_output, predictions_table],
398
  fn=predict_stock_price_safe,
 
393
 
394
  # Add examples (use safe function)
395
  gr.Examples(
396
+ examples=[
397
+ ["AAPL", 7],
398
+ ["AAPL", 15]
399
+ ],
400
  inputs=[ticker_input, days_input],
401
  outputs=[plot_output, summary_output, predictions_table],
402
  fn=predict_stock_price_safe,