Spaces:
Sleeping
Sleeping
File size: 221 Bytes
03a64a1 |
1 2 3 4 5 6 7 8 9 10 11 |
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"
|