Spaces:
Sleeping
Sleeping
File size: 338 Bytes
d7527be | 1 2 3 4 5 6 7 8 | from crewai.tools import BaseTool
from typing import Type
from pydantic import BaseModel, Field
from typing import List, Any,Annotated
import pandas as pd
class SaveTranslationInput(BaseModel):
data: List[List[Any]] = Field(..., description="2D list representing the full translation table. The first row is the header.",strict=True)
|