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(),}); Copy
const memoryService = new MemoryService({ storage: new InMemoryStorageProvider(), summaryProvider: new PassthroughSummaryProvider(),});
Extract text from session events without summarization. Returns MemoryContent with rawText populated.
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.
Example