mirror of
https://github.com/TauricResearch/TradingAgents.git
synced 2026-06-16 21:06:15 +03:00
16 lines
293 B
Python
16 lines
293 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"
|
|
|
|
|
|
class AssetType(str, Enum):
|
|
STOCK = "stock"
|
|
CRYPTO = "crypto"
|