ADK for TypeScript: API Reference
    Preparing search index...

    Interface MemoryEntry

    Represents one memory entry.

    interface MemoryEntry {
        author?: string;
        content: Content;
        timestamp?: string;
    }

    Properties

    author?: string

    The author of the memory.

    content: Content

    The content of the memory entry.

    timestamp?: string

    The timestamp when the original content of this memory happened. This string will be forwarded to LLM. Preferred format is ISO 8601 format.