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;
    humanPrefix?: string;
    memoryKey?: string;
}

Hierarchy (view full)

Implemented by

Properties

baseURL: string
sessionId: string
aiPrefix?: string
apiKey?: string
humanPrefix?: string
memoryKey?: string

Generated using TypeDoc