feat(screener): POST /snapshot/refresh-news-sentiment with telegram_text

This commit is contained in:
2026-05-13 23:44:38 +09:00
parent 4b4f91c052
commit ca8bcb3fed
2 changed files with 60 additions and 0 deletions

View File

@@ -276,6 +276,30 @@ def list_runs(limit: int = 30):
]
# ---------- /snapshot/refresh-news-sentiment ----------
from .ai_news import pipeline as _ai_pipeline
from .ai_news import telegram as _ai_telegram
@router.post("/snapshot/refresh-news-sentiment")
async def post_refresh_news_sentiment(asof: Optional[str] = None):
asof_date = dt.date.fromisoformat(asof) if asof else dt.date.today()
if asof_date.weekday() >= 5:
return {"asof": asof_date.isoformat(), "status": "skipped_weekend"}
if _is_holiday(asof_date):
return {"asof": asof_date.isoformat(), "status": "skipped_holiday"}
with _conn() as c:
summary = await _ai_pipeline.refresh_daily(c, asof_date)
summary["telegram_text"] = _ai_telegram.build_message(
asof=summary["asof"],
top_pos=summary["top_pos"], top_neg=summary["top_neg"],
tokens_input=summary["tokens_input"],
tokens_output=summary["tokens_output"],
)
return summary
@router.get("/runs/{run_id}")
def get_run(run_id: int):
with _conn() as c: