mirror of
https://github.com/hwchase17/langchain
synced 2024-11-06 03:20:49 +00:00
turn off repr (#6078)
This commit is contained in:
parent
a9b3b2e327
commit
cde1e8739a
@ -55,7 +55,7 @@ class Serializable(BaseModel, ABC):
|
|||||||
"""
|
"""
|
||||||
return {}
|
return {}
|
||||||
|
|
||||||
lc_kwargs: Dict[str, Any] = Field(default_factory=dict, exclude=True)
|
lc_kwargs: Dict[str, Any] = Field(default_factory=dict, exclude=True, repr=False)
|
||||||
|
|
||||||
def __init__(self, **kwargs: Any) -> None:
|
def __init__(self, **kwargs: Any) -> None:
|
||||||
super().__init__(**kwargs)
|
super().__init__(**kwargs)
|
||||||
|
Loading…
Reference in New Issue
Block a user