Source code for langchain.chains.query_constructor.schema

from pydantic import BaseModel


[docs]class AttributeInfo(BaseModel): """Information about a data source attribute.""" name: str description: str type: str
[docs] class Config: """Configuration for this pydantic object.""" arbitrary_types_allowed = True frozen = True