File size: 351 Bytes
1a436de
 
 
 
 
 
 
 
 
bcca921
1
2
3
4
5
6
7
8
9
10
11
from pydantic import BaseModel, Field


class SQLQueryModel(BaseModel):
    sql_query: str = Field(..., description="SQL query to execute.")
    explanation: str = Field(..., description="Short explanation of the SQL query.")


class PanderaSchemaModel(BaseModel):
    schema: str = Field(..., description="Only Pandera schema to validate the data.")