File size: 202 Bytes
c46e765
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
from pydantic import BaseModel

class TextRequest(BaseModel):
    text: str

class PredictionResponse(BaseModel):
    input_text: str
    cleaned_text: str
    sentiment: str
    emotion: str