mirror of
https://github.com/TauricResearch/TradingAgents.git
synced 2026-06-17 05:16:14 +03:00
# Conflicts: # cli/utils.py # tradingagents/agents/analysts/social_media_analyst.py # tradingagents/agents/researchers/bear_researcher.py
18 lines
431 B
Python
18 lines
431 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"
|
|
|
|
|
|
class AssetType(str, Enum):
|
|
STOCK = "stock"
|
|
CRYPTO = "crypto"
|