langchain.agents.format_scratchpad.log_to_messages
.format_log_to_messages¶
- langchain.agents.format_scratchpad.log_to_messages.format_log_to_messages(intermediate_steps: List[Tuple[AgentAction, str]], template_tool_response: str = '{observation}') List[BaseMessage] [source]¶
构建一个便签本以让代理继续其思考过程。
- 参数
intermediate_steps (List[Tuple[AgentAction, str]]) – 包含AgentAction和观测字符串元组的列表。
template_tool_response (str) – 格式化观测的模板。默认为 “{observation}”。
- 返回
便签本。
- 返回类型
List[BaseMessage]