ListStepContainer#
- class langchain_experimental.plan_and_execute.schema.ListStepContainer[源代码]#
-
步骤列表的容器。
通过解析和验证来自关键字参数的输入数据来创建一个新模型。
如果输入数据无法验证以形成有效模型,则引发 [ValidationError][pydantic_core.ValidationError]。
self 被显式地设为仅位置参数,以允许 self 作为字段名称。
- param steps: List[Tuple[Step, StepResponse]] [Optional]#
步骤。
- add_step(step: Step, step_response: StepResponse) None [来源]#
向容器添加步骤和步骤响应。
- Parameters:
步骤 (Step)
step_response (StepResponse)
- Return type:
无