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 {
    baseURL: string;
    sessionId: string;
    aiPrefix?: string;
    apiKey?: string;
    chatHistory?: any;
    humanPrefix?: string;
    inputKey?: string;
    memoryKey?: string;
    outputKey?: string;
    returnMessages?: boolean;
}

Hierarchy (view full)

Implemented by

Properties

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

Generated using TypeDoc