langchain.js
    Preparing search index...

    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 {
        aiPrefix?: string;
        apiKey: string;
        humanPrefix?: string;
        memoryKey?: string;
        memoryType?: MemoryType;
        separateMessages?: boolean;
        sessionId: string;
    }

    Hierarchy

    • BaseChatMemoryInput
      • ZepCloudMemoryInput

    Implemented by

    Index

    Properties

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