Files
langgraph/libs/checkpoint/langgraph
Lisandro Navarra d2882aba3c fix(checkpoint): widen Store put/aput value type to Mapping[str, Any]
TypedDict values don't structurally satisfy dict[str, Any] since dict
implies full mutability. Mapping[str, Any] accepts both plain dicts and
TypedDicts while still requiring string keys, matching what put()
actually needs from callers.
2026-08-13 14:23:23 -05:00
..