remove the the check that makes sure file url is coming from payload (#624)

This commit is contained in:
Kerem Yilmaz
2024-07-18 18:19:14 -07:00
committed by GitHub
parent f146247fe9
commit 50ff8dc441
4 changed files with 22 additions and 1 deletions

View File

@@ -221,6 +221,7 @@ class Task(TaskRequest):
screenshot_url=screenshot_url,
recording_url=recording_url,
errors=self.errors,
max_steps_per_run=self.max_steps_per_run,
)
@@ -236,6 +237,7 @@ class TaskResponse(BaseModel):
recording_url: str | None = None
failure_reason: str | None = None
errors: list[dict[str, Any]] = []
max_steps_per_run: int | None = None
class TaskOutput(BaseModel):