langchain.js
    Preparing search index...

    Interface CombinedMemoryInput

    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 {
        aiPrefix?: string;
        chatHistory?: any;
        humanPrefix?: string;
        inputKey?: string;
        memories: BaseMemory[];
        memoryKey?: string;
        outputKey?: string;
        returnMessages?: boolean;
    }

    Hierarchy (View Summary)

    Implemented by

    Index

    Properties

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