Spaces:
Runtime error
Runtime error
File size: 321 Bytes
63deadc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
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
|