You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: use _default handler instead of non-existent super().dumps()
The bug was in line 28 where super().dumps(obj) was called, but the parent
class JsonPlusSerializer doesn't have a dumps() method.
The correct fix is to use orjson.dumps() with default=self._default, which
properly delegates LangChain object serialization to the parent's _default
method.
0 commit comments