Spaces:
Sleeping
Sleeping
Update app/config.py
Browse files- app/config.py +1 -1
app/config.py
CHANGED
|
@@ -21,7 +21,7 @@ class Settings:
|
|
| 21 |
alpha_vantage_api_key: str = os.getenv("ALPHA_VANTAGE_API_KEY")
|
| 22 |
|
| 23 |
# Prediction params
|
| 24 |
-
history_window: int = int(os.getenv("HISTORY_WINDOW", "
|
| 25 |
max_forecast_days: int = int(os.getenv("MAX_FORECAST_DAYS", "14"))
|
| 26 |
|
| 27 |
def validate(self):
|
|
|
|
| 21 |
alpha_vantage_api_key: str = os.getenv("ALPHA_VANTAGE_API_KEY")
|
| 22 |
|
| 23 |
# Prediction params
|
| 24 |
+
history_window: int = int(os.getenv("HISTORY_WINDOW", "50"))
|
| 25 |
max_forecast_days: int = int(os.getenv("MAX_FORECAST_DAYS", "14"))
|
| 26 |
|
| 27 |
def validate(self):
|