mirror of
https://github.com/hwchase17/langchain.git
synced 2025-04-28 03:51:50 +00:00
turn off repr (#6078)
This commit is contained in:
parent
a9b3b2e327
commit
cde1e8739a
@ -55,7 +55,7 @@ class Serializable(BaseModel, ABC):
|
||||
"""
|
||||
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:
|
||||
super().__init__(**kwargs)
|
||||
|
Loading…
Reference in New Issue
Block a user