Skip to content

Commit b4e353f

Browse files
committed
Add list recommender functionality to backend and frontend
- Introduced a new `list_recommender` module in the backend, including a FastAPI router for handling listing recommendations. - Implemented the logic for generating recommendations based on market data, including scoring and recommendation criteria. - Created a new Streamlit page for the list recommender, allowing users to view recommendations and analysis results. - Updated the main application to include the new list recommender page, enhancing the user interface with a dedicated section for listing recommendations. - Added necessary helper functions for data formatting and API data fetching to support the new functionality.
1 parent f8e8a1c commit b4e353f

File tree

5 files changed

+1295
-1
lines changed

5 files changed

+1295
-1
lines changed

backend/api/__init__.py

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
from . import (
2+
asset_liability,
3+
backend_health,
4+
deposits,
5+
health,
6+
liquidation,
7+
metadata,
8+
pnl,
9+
positions,
10+
price_shock,
11+
snapshot,
12+
ucache,
13+
vaults,
14+
delist_recommender,
15+
list_recommender,
16+
)

0 commit comments

Comments
 (0)