mirror of
https://github.com/TauricResearch/TradingAgents.git
synced 2025-06-27 00:41:34 +00:00
11 lines
221 B
Python
11 lines
221 B
Python
![]() |
from enum import Enum
|
||
|
from typing import List, Optional, Dict
|
||
|
from pydantic import BaseModel
|
||
|
|
||
|
|
||
|
class AnalystType(str, Enum):
|
||
|
MARKET = "market"
|
||
|
SOCIAL = "social"
|
||
|
NEWS = "news"
|
||
|
FUNDAMENTALS = "fundamentals"
|