langchain_core.messages.base
.merge_content¶
- langchain_core.messages.base.merge_content(Union[str, List[Union[str, Dict]]], Union[str, List[Union[str, Dict]]]) Union[str, List[Union[str, Dict]]] [source]¶
合并两个消息内容。
- 参数
first_content (Union[str, List[Union[str, Dict]]]) – 第一个内容。可以是字符串或列表。
second_content – 第二个内容。可以是字符串或列表。
contents (Union[str, List[Union[str, Dict]]]) –
- 返回
合并后的内容。
- 返回类型
Union[str, List[Union[str, Dict]]]