message_to_dict#

langchain_core.messages.base.message_to_dict(message: BaseMessage) dict[source]#

Convert a Message to a dictionary.

Parameters:

message (BaseMessage) – Message to convert.

Returns:

Message as a dict. The dict will have a β€œtype” key with the message type and a β€œdata” key with the message data as a dict.

Return type:

dict