From e5612540b2bb3127aca583457a870c6f77b188cf Mon Sep 17 00:00:00 2001 From: LawyZheng Date: Wed, 3 Sep 2025 12:05:20 +0800 Subject: [PATCH] fix extract action model (#3348) --- 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 61b8de08..3aaa16ff 100644 --- a/skyvern/webeye/actions/actions.py +++ b/skyvern/webeye/actions/actions.py @@ -242,7 +242,7 @@ class CompleteAction(DecisiveAction): class ExtractAction(Action): action_type: ActionType = ActionType.EXTRACT data_extraction_goal: str | None = None - data_extraction_schema: dict[str, Any] | None = None + data_extraction_schema: dict[str, Any] | list | str | None = None class ScrollAction(Action):