refactor: align display label and docs with sentiment_analyst rename

The agent ingests news, StockTwits, and Reddit, but CLI labels, the
README description, and the legacy shim docstring still framed it as
social-media-only. Updates all user-visible surfaces so the name and
the implementation match.
This commit is contained in:
Yijia-Xiao
2026-05-11 06:25:22 +00:00
parent 9f7abfcbd5
commit 879e2bb5da
6 changed files with 16 additions and 14 deletions

View File

@@ -5,6 +5,8 @@ from pydantic import BaseModel
class AnalystType(str, Enum):
MARKET = "market"
# Wire value stays "social" for saved-config and string-keyed-caller
# back-compat; the user-facing label is "Sentiment Analyst".
SOCIAL = "social"
NEWS = "news"
FUNDAMENTALS = "fundamentals"