Interface defining the structure of the input data for the ZepMemory class. It includes properties like humanPrefix, aiPrefix, memoryKey, memoryType sessionId, and apiKey.

interface ZepCloudMemoryInput {
    apiKey: string;
    sessionId: string;
    aiPrefix?: string;
    humanPrefix?: string;
    memoryKey?: string;
    memoryType?: MemoryType;
    separateMessages?: boolean;
}

Hierarchy

  • BaseChatMemoryInput
    • ZepCloudMemoryInput

Implemented by

Properties

apiKey: string
sessionId: string
aiPrefix?: string
humanPrefix?: string
memoryKey?: string
memoryType?: MemoryType
separateMessages?: boolean