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:
Return type:

abstract get_final_response() str[source]#

根据采取的步骤返回最终响应。

Return type:

字符串