File size: 225 Bytes
f5b6851
 
 
 
 
 
 
1
2
3
4
5
6
7
from pydantic import BaseModel, Field

class SentimentRequest(BaseModel):
    text: str = Field(..., min_length=1, description="Texto para análise de sentimento")

class SentimentResponse(BaseModel):
    sentiment: str