sentiment_analyzer / schemas.py
xclasscode's picture
Update schemas.py
37e3930 verified
raw
history blame
386 Bytes
from pydantic import BaseModel
from datetime import datetime
class SentimentResultBase(BaseModel):
text_input: str
score: float
label: str
class SentimentResultCreate(SentimentResultBase):
pass
class SentimentResult(SentimentResultBase):
id: int
created_at: datetime
# Ensure SentimentResult inherits from BaseModel
SentimentResultBase.update_forward_refs()