zhangyi617's picture
Upload folder using huggingface_hub
129cd69
raw
history blame contribute delete
321 Bytes
from langchain_core.pydantic_v1 import BaseModel
class AttributeInfo(BaseModel):
"""Information about a data source attribute."""
name: str
description: str
type: str
class Config:
"""Configuration for this pydantic object."""
arbitrary_types_allowed = True
frozen = True