Interface LangChainBaseMessage

interface LangChainBaseMessage {
    content: string;
    additional_kwargs?: KVMap;
}

Properties

content: string
additional_kwargs?: KVMap