A pass-through summary provider that extracts text from session events without any LLM summarization.

Use this when you want to store the full conversation text without summarization, or when you want to handle summarization externally.

const memoryService = new MemoryService({
storage: new InMemoryStorageProvider(),
summaryProvider: new PassthroughSummaryProvider(),
});

Implements

Constructors

Methods

Constructors

Methods