actrone-memory
    Preparing search index...

    Interface LcMessageClasses

    Optional real message-class constructors so the adapter emits genuine LangChain instances (new HumanMessage(content)) instead of structural stand-ins.

    interface LcMessageClasses {
        human: new (content: string) => LcChatMessage;
        ai: new (content: string) => LcChatMessage;
        system?: new (content: string) => LcChatMessage;
    }
    Index
    human: new (content: string) => LcChatMessage
    ai: new (content: string) => LcChatMessage
    system?: new (content: string) => LcChatMessage