Update app.py
Browse files
app.py
CHANGED
@@ -98,3 +98,5 @@ with app:
|
|
98 |
predict_button.click(fn=stock_prediction_app, inputs=[ticker, start_date, end_date], outputs=[output_text, output_image])
|
99 |
|
100 |
app.launch()
|
|
|
|
|
|
98 |
predict_button.click(fn=stock_prediction_app, inputs=[ticker, start_date, end_date], outputs=[output_text, output_image])
|
99 |
|
100 |
app.launch()
|
101 |
+
start_date = gr.Textbox(label="Start Date (YYYY-MM-DD)") # Textbox for manually entering dates
|
102 |
+
end_date = gr.Textbox(label="End Date (YYYY-MM-DD)") # Textbox for manually entering dates
|