langchain.agents.format_scratchpad.log.format_log_to_str

langchain.agents.format_scratchpad.log.format_log_to_str(intermediate_steps: List[Tuple[AgentAction, str]], observation_prefix: str = 'Observation: ', llm_prefix: str = 'Thought: ') str[源代码]

构建一个让智能体继续其思维过程的草稿本。

参数
  • intermediate_steps (列表[元组[AgentAction字符串]]) – 包含智能体动作和观测字符串元组的列表。

  • observation_prefix (字符串) – 添加观测的前缀。默认为“Observation: ”。

  • llm_prefix (字符串) – 添加llm调用的前缀。默认为“Thought: ”。

返回值

草稿本。

返回类型

字符串

使用 format_log_to_str 的示例