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