Interface that defines the shape of the input object that the CombinedMemory constructor accepts. It extends the BaseChatMemoryInput interface and adds additional properties.

interface CombinedMemoryInput {
    memories: BaseMemory[];
    aiPrefix?: string;
    chatHistory?: any;
    humanPrefix?: string;
    inputKey?: string;
    memoryKey?: string;
    outputKey?: string;
    returnMessages?: boolean;
}

Hierarchy (view full)

Implemented by

Properties

memories: BaseMemory[]
aiPrefix?: string
chatHistory?: any
humanPrefix?: string
inputKey?: string
memoryKey?: string
outputKey?: string
returnMessages?: boolean

Generated using TypeDoc