forked from HAL9000/cleveragents-core
9 lines
196 B
Python
9 lines
196 B
Python
"""Type stubs for langgraph.checkpoint.memory module."""
|
|
|
|
class MemorySaver:
|
|
"""In-memory checkpoint saver for state graphs."""
|
|
|
|
def __init__(self) -> None: ...
|
|
|
|
__all__ = ["MemorySaver"]
|