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

interface ZepMemoryInput {
    aiPrefix?: string;
    apiKey?: string;
    baseURL: string;
    chatHistory?: BaseChatMessageHistory;
    humanPrefix?: string;
    inputKey?: string;
    memoryKey?: string;
    outputKey?: string;
    returnMessages?: boolean;
    sessionId: string;
}

Hierarchy (view full)

Implemented by

Properties

aiPrefix?: string
apiKey?: string
baseURL: string
chatHistory?: BaseChatMessageHistory
humanPrefix?: string
inputKey?: string
memoryKey?: string
outputKey?: string
returnMessages?: boolean
sessionId: string