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