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