suchintan.vibe code user goal check (#2349)

Co-authored-by: lawyzheng <lawyzheng1106@gmail.com>
This commit is contained in:
Shuchang Zheng
2025-05-15 08:18:24 -07:00
committed by GitHub
parent 847ddacebd
commit ed4280153f
30 changed files with 251 additions and 9 deletions

View File

@@ -90,6 +90,11 @@ class TaskBase(BaseModel):
description="The application for which the task is running",
examples=["forms"],
)
include_action_history_in_verification: bool | None = Field(
default=False,
description="Whether to include the action history when verifying the task is complete",
examples=[True, False],
)
class TaskRequest(TaskBase):

View File

@@ -35,6 +35,7 @@ class WorkflowRunBlock(BaseModel):
actions: list[Action] = []
created_at: datetime
modified_at: datetime
include_action_history_in_verification: bool | None = False
# for loop block
loop_values: list[Any] | None = None