From eb4314591ed9c383e729933bf64840857614f8bc Mon Sep 17 00:00:00 2001 From: Shuchang Zheng Date: Thu, 6 Mar 2025 12:18:42 -0800 Subject: [PATCH] fix ScrapedResult schema (#1898) --- skyvern/webeye/actions/actions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skyvern/webeye/actions/actions.py b/skyvern/webeye/actions/actions.py index aa823038..1717dd03 100644 --- a/skyvern/webeye/actions/actions.py +++ b/skyvern/webeye/actions/actions.py @@ -264,4 +264,4 @@ class ScrapeResult(BaseModel): 1. JSON representation of what the user is seeing """ - scraped_data: dict[str, Any] | list[dict[str, Any]] + scraped_data: dict[str, Any] | list | str | None