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?: "perpetual" | "summary_retriever" | "message_window";
    separateMessages?: boolean;
}

Hierarchy

  • BaseChatMemoryInput
    • ZepCloudMemoryInput

Implemented by

Properties

apiKey: string
sessionId: string
aiPrefix?: string
humanPrefix?: string
memoryKey?: string
memoryType?: "perpetual" | "summary_retriever" | "message_window"
separateMessages?: boolean

Generated using TypeDoc