Implements FastAPI backend with ML model support for energy trading, including price prediction models and RL-based battery trading policy. Features dashboard, trading, backtest, and settings API routes with WebSocket support for real-time updates.
4 lines
131 B
Python
4 lines
131 B
Python
from app.ml.price_prediction import PricePredictor, PricePredictionTrainer
|
|
|
|
__all__ = ["PricePredictor", "PricePredictionTrainer"]
|