Agent State Store (AgentStateStore)¶
Note
Recommended: use DistributedStore for one-line setup — it covers AgentStateStore, BaseStore, SandboxSnapshotSpec, and SandboxExecutionGuard together. Read on if you only need to configure AgentStateStore individually.
io.agentscope.core.state.AgentStateStore is the interface AgentScope uses to persist agent state — Memory, Workspace, Plan, and other components are serialized as State objects and stored via AgentStateStore, enabling restart recovery and cross-node sharing.
State is addressed by (userId, sessionId):
sessionId— required, non-blank, identifies a session.userId— optional.nullmeans anonymous / single-tenant (CLI, tests, etc.).
Available Implementations¶
Implementation |
Module |
When to use |
|---|---|---|
|
|
Unit tests |
|
|
Single-node dev (HarnessAgent default) |
|
|
Multi-replica production default |
|
|
Existing database infrastructure |
|
|
Alibaba Cloud ecosystem |
Standalone Configuration¶
ReActAgent agent = ReActAgent.builder()
.name("assistant")
.model(model)
.stateStore(stateStore) // any AgentStateStore implementation
.build();
For detailed usage and code examples, see each store’s documentation:
Redis
MySQL
OSS