Spaces:
Runtime error
Runtime error
| class SentimentResultBase(BaseModel): | |
| positive_score: float | |
| negative_score: float | |
| neutral_score: float | |
| class SentimentResultCreate(SentimentResultBase): | |
| pass | |
| class SentimentResult(SentimentResultBase): | |
| id: int | |
| created_at: datetime | |
| user_id: int | |
| text_id: int | |
| class Config: | |
| from_attributes = True |