Spaces:
Running
Running
| """ | |
| ChemGraph Memory Module | |
| Provides persistent session storage for ChemGraph conversations, | |
| enabling users to review past sessions and resume from previous context. | |
| """ | |
| from chemgraph.memory.store import SessionStore | |
| from chemgraph.memory.schemas import Session, SessionMessage, SessionSummary | |
| __all__ = ["SessionStore", "Session", "SessionMessage", "SessionSummary"] | |