Session stores
Session stores persist snapshots for server-managed agents. They are the storage layer behind sessionId, snapshotId, loadChat(), snapshot reads, branching, background execution, and aborting detached work.
Use the Sessions and state guide first when you are deciding between server-managed and client-managed state. Use this page when you know the server should own state and need to choose or implement the persistence layer.
Choose a store
Section titled “Choose a store”- In-memory store for tests, demos, local examples, and single-process experiments.
- File store for local development, prototypes, CLIs, and single-host apps that need snapshots to survive process restarts.
- Firestore store for production apps on Google Cloud or Firebase that want a managed, multi-instance database without writing a store.
- Custom store for production web apps that need a different database, cloud storage, centralized authorization, retention policies, or tenant-aware persistence that the built-in stores do not cover.
Most applications only pass a store to aix.WithSessionStore(store). The agent runtime calls the store when it creates a snapshot, resumes with aix.WithSessionID or aix.WithSnapshotID, exposes snapshot companion actions, starts detached work, or aborts an in-flight turn.
Use an in-memory store
Section titled “Use an in-memory store”localstore.NewInMemorySessionStore keeps snapshots in process memory. It is fast, requires no setup, and implements aix.SnapshotSubscriber, which makes it useful for testing background execution and abort behavior locally.
import ( aix "github.com/firebase/genkit/go/ai/exp" "github.com/firebase/genkit/go/ai/exp/localstore" genkitx "github.com/firebase/genkit/go/genkit/exp")store := localstore.NewInMemorySessionStore[SupportState]()
supportAgent := genkitx.DefineAgent(g, "supportAgent", aix.InlinePrompt{ ai.WithSystem("Help customers understand their order status."), }, aix.WithSessionStore(store),)Do not use the in-memory store when conversations must survive a process restart or when multiple server instances need to share sessions. Each process gets its own isolated map, so a session created by one process is invisible to another.
The in-memory store does not have configuration options. If you need retention or tenant-scoped local files, use the file store.
Use a file-backed store
Section titled “Use a file-backed store”localstore.NewFileSessionStore stores each snapshot as a JSON file. It is a good fit for local development and single-host deployments where you want persistent state without operating a database.
store, err := localstore.NewFileSessionStore[SupportState]( "./.genkit/snapshots/support", localstore.WithMaxPersistedChainLength(20), localstore.WithSnapshotPathPrefix(func(ctx context.Context) string { return tenantIDFromContext(ctx) }), localstore.WithPollInterval(time.Second),)if err != nil { // Fails if the snapshot directory cannot be created or an option is // invalid, such as a path prefix that escapes the store directory. log.Fatalf("open support store: %v", err)}Snapshots are written under the directory passed to NewFileSessionStore. Without a path prefix, all snapshots are stored directly under that root.
Use WithMaxPersistedChainLength to bound how many snapshots are retained in one parent chain. A value of 1 keeps only the latest snapshot in a chain. Omitting the option leaves pruning disabled. Pruning follows parent links, so sibling branches are pruned independently when they are extended.
Use WithSnapshotPathPrefix to scope reads and writes to a subdirectory. Return a stable tenant or user identity from context.Context so one caller cannot read another caller’s snapshots. Prefixes may contain / for nested directories, but values that escape the store directory are rejected.
Use WithPollInterval to control how often the file store checks for status changes written by another process or store instance sharing the same directory. The default is one second. A value less than or equal to zero disables cross-process polling, so subscriptions observe only changes written through the same store instance.
The file store is safe for concurrent use inside one process, writes snapshots atomically with temporary files and rename, and implements aix.SnapshotSubscriber. It is still a local filesystem store, so use a custom store when many app instances need to coordinate durable sessions.
Use a Firestore store
Section titled “Use a Firestore store”firebasex.NewFirestoreSessionStore persists snapshots in Cloud Firestore. It is a managed, multi-instance store, so it is the built-in option for production apps where several server instances share sessions, and it implements aix.SnapshotSubscriber for background execution and abort.
The store resolves its Firestore client from the Firebase plugin registered with the Genkit instance, so pass the Firebase plugin to genkit.Init before constructing the store.
import ( "github.com/firebase/genkit/go/plugins/firebase" firebasex "github.com/firebase/genkit/go/plugins/firebase/exp")g := genkit.Init(ctx, genkit.WithPlugins(&firebase.Firebase{ProjectId: "my-project"}))
store, err := firebasex.NewFirestoreSessionStore[SupportState](ctx, g, firebasex.WithCollection("genkit-sessions"), firebasex.WithSnapshotPathPrefix(func(ctx context.Context) string { return tenantIDFromContext(ctx) }),)if err != nil { // Fails if the Firebase plugin is not registered on g or the Firestore // client cannot be resolved. log.Fatalf("open Firestore store: %v", err)}
supportAgent := genkitx.DefineAgent(g, "supportAgent", aix.InlinePrompt{ ai.WithSystem("Help customers understand their order status."), }, aix.WithSessionStore(store),)The State type parameter is the user-defined custom-state type carried in the session state; it must be JSON-serializable.
All options are optional:
WithCollectionsets the root collection that holds snapshot documents. It defaults togenkit-sessions. Two companion collections,<collection>-shardsand<collection>-pointers, are derived from it for sharded checkpoint state and per-session pointers.WithSnapshotPathPrefixderives a per-tenant prefix fromcontext.Context, such as an authenticated user or organization ID. When set, snapshots, shards, and pointers are nested under a tenant-scoped subcollection, so one tenant can never read another tenant’s snapshots even with a snapshot ID. The value must be a single valid Firestore document ID (no/separators) and stable for a snapshot’s lifetime, since every read recomputes it. An empty result falls back toglobal, which is also the default when the option is omitted.WithCheckpointIntervalsets the number of turns between full-state checkpoints. Between checkpoints the store writes JSON Patch diffs; a larger value writes fewer full checkpoints but reconstructs over more diffs. The number of diff documents read or written per turn is bounded by this value rather than by total session length. Must be at least1; defaults to25.WithShardSizesets the maximum size in bytes of a single shard or diff document. Checkpoint state is split into chunks of this size, and any diff exceeding it is promoted to a sharded checkpoint, so no document approaches Firestore’s 1 MiB limit. Must be positive; defaults to 512 KiB.
The store picks up Application Default Credentials and the FIRESTORE_EMULATOR_HOST environment variable through the Firebase plugin, so the same code runs against the Firestore emulator for local testing.
Because it implements aix.SnapshotSubscriber over Firestore’s native real-time listeners, a status change such as an abort committed by one process is observed by the process running the detached turn even across instances, without polling. The store does not prune snapshots, so plan retention for long-running or artifact-heavy conversations as described in Production guidance.
Implement a production store
Section titled “Implement a production store”When the built-in Firestore store does not fit, implement a custom aix.SessionStore so snapshots live in your own production data layer. This is the right approach for Cloud SQL, Spanner, Postgres, Redis-backed systems with durability, or application-specific storage that already handles user and tenant authorization.
A custom store implements snapshot reading and writing:
type SessionStore[State any] interface { GetSnapshot(ctx context.Context, snapshotID string) (*aix.SessionSnapshot[State], error) GetLatestSnapshot(ctx context.Context, sessionID string) (*aix.SessionSnapshot[State], error) SaveSnapshot( ctx context.Context, snapshotID string, fn func(existing *aix.SessionSnapshot[State]) (*aix.SessionSnapshot[State], error), ) (*aix.SessionSnapshot[State], error)}GetSnapshotloads a snapshot by exact ID.GetLatestSnapshotloads the most recently created snapshot for a session, whatever its status. UseCreatedAtfor recency, notUpdatedAt, because heartbeat writes update liveness without changing the conversation state. If two snapshots have the sameCreatedAt, break ties deterministically. Parent IDs are lineage metadata for this lookup, not how the latest session snapshot is resolved.SaveSnapshotmust be atomic. In a database, run the read, callback, and write in one transaction or use optimistic concurrency with retries. The callback may return a snapshot to save, returnnil, nilto skip the write, or return an error to fail the operation. Stores that retry on contention may call the callback more than once, so keep the callback free of external side effects.
The store owns identity. If snapshotID is empty, generate a fresh ID. If snapshotID is provided, persist that ID even if the callback returns a different one. Preserve a row’s existing session ID on update.
To support detached background work and abort, also implement aix.SnapshotSubscriber.
type SnapshotSubscriber interface { OnSnapshotStatusChange(ctx context.Context, snapshotID string) <-chan aix.SnapshotStatus}The channel should yield the current status when a subscription starts, then yield later status changes until the context is canceled. The runtime uses this to notice when an abort flips a pending snapshot to aborted.
Stores that do not implement SnapshotSubscriber can still support server-managed state, snapshots, and GetLatestSnapshot. The runtime rejects detach attempts because it cannot signal background work to stop.
Production guidance
Section titled “Production guidance”Store snapshots as sensitive user data. They can contain message history, custom state, artifacts, tool inputs, and generated outputs.
Scope every read and write by authenticated user, organization, or tenant. Do not rely on snapshot IDs alone as authorization. Derive tenancy from context.Context and apply it consistently in every store method.
Index by snapshot ID and by session ID plus creation time. GetLatestSnapshot should be efficient because it is the common path for continuing a conversation by sessionId.
Plan retention before launch. Snapshots are full conversation checkpoints, so long-running conversations and artifact-heavy agents can grow quickly.