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

Hierarchy (view full)

Implemented by

Properties

memories: BaseMemory[]
aiPrefix?: string
humanPrefix?: string
memoryKey?: string

Generated using TypeDoc