Skip to Content

Memory Service — OpenAPI

The memory service manages working memory, episodic memory, and the injection ledger.

Accessing the Spec

Swagger UIhttp://localhost:8002/docs 
ReDochttp://localhost:8002/redoc 
OpenAPI JSONhttp://localhost:8002/openapi.json 

These URLs access the service directly (port 8002), bypassing the API gateway. In production, use the gateway at port 8000.

Route Prefixes

  • /working-memory — Redis-backed conversation state (24h default TTL, overridable per-write via ttl_seconds, 64KB limit)
  • /episodic — pgvector-backed conversation summaries with semantic search
  • /ledger — Redis Hash injection ledger for skill deduplication

Explore the Swagger UI for full request/response schemas including WorkingMemoryResponse, EpisodicStoreResponse, EpisodicSearchResponse, LedgerCheckResponse, and LedgerMarkResponse.

Last updated on