message_to_dict#

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

将消息转换为字典。

Parameters:

消息 (BaseMessage) – 要转换的消息。

Returns:

消息作为一个字典。该字典将有一个“type”键表示消息类型,以及一个“data”键表示消息数据作为字典。

Return type:

字典