File size: 237 Bytes
fc9f4fe
 
 
 
 
 
 
51ef325
 
 
 
1
2
3
4
5
6
7
8
9
10
11
from pydantic import BaseModel, Field
from typing import Optional, List


class FormDetails(BaseModel):
    fields: List[str]
    values: List[str]

class TranslateDetails(BaseModel):
    translated_text: str
    translated_language: str