mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-14 09:08:32 +00:00
5 lines
166 B
Python
5 lines
166 B
Python
from langchain_core.pydantic_v1 import BaseModel, Field
|
|
|
|
|
|
class BaserowFormulaModel(BaseModel):
|
|
formula: str = Field(description="The generated Baserow formula")
|