SessionStore API¶
Conversation log for resumable @channel(durable=True) sessions. Backed by the
app's StoragePlugin (in-memory, Redis, or SQLAlchemy).
Details: Channels & Agent Sessions.
Durable conversation log for resumable @channel sessions.
Keyed by conversation id over the app's StoragePlugin (InMemory / Redis / SQL), so a session survives a disconnect: the handler reloads history on reconnect and continues where it left off.
SessionStore
¶
Source code in src/istos/primitives/session_store.py
history(conversation_id, limit=1000)
async
¶
Prior messages oldest-first: [{dir, data, ts}, ...].