langchain.js
    Preparing search index...

    Interface ConversationSummaryMemoryInput

    Interface for the input parameters of the ConversationSummaryMemory class.

    interface ConversationSummaryMemoryInput {
        aiPrefix?: string;
        chatHistory?: any;
        humanPrefix?: string;
        inputKey?: string;
        llm: BaseLanguageModelInterface;
        memoryKey?: string;
        outputKey?: string;
        prompt?: any;
        returnMessages?: boolean;
        summaryChatMessageClass?: new (content: string) => BaseMessage;
    }

    Hierarchy (View Summary)

    Index

    Properties

    aiPrefix?: string
    chatHistory?: any
    humanPrefix?: string
    inputKey?: string
    llm: BaseLanguageModelInterface
    memoryKey?: string
    outputKey?: string
    prompt?: any
    returnMessages?: boolean
    summaryChatMessageClass?: new (content: string) => BaseMessage