sentiment_analyzer / schemas.py
xclasscode's picture
Update schemas.py
9690ed8
raw
history blame
293 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