mirror of
https://github.com/TauricResearch/TradingAgents.git
synced 2026-06-16 21:06:15 +03:00
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.
13 lines
359 B
Python
13 lines
359 B
Python
from enum import Enum
|
|
from typing import List, Optional, Dict
|
|
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"
|