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

class TranslationInput(BaseModel):
    text_to_translate : str = Field(..., description="Text to be translated")
    target_language : str = Field(..., description="Target language for translation")