mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2025-09-14 17:29:40 +00:00
Enforce navigation_goal in NavigationBlock and data_extraction_goal in ExtractionBlock (#1257)
This commit is contained in:
parent
d52025472f
commit
f28a3bc497
3 changed files with 7 additions and 3 deletions
|
@ -253,9 +253,9 @@ class NavigationBlockYAML(BlockYAML):
|
|||
class ExtractionBlockYAML(BlockYAML):
|
||||
block_type: Literal[BlockType.EXTRACTION] = BlockType.EXTRACTION # type: ignore
|
||||
|
||||
data_extraction_goal: str
|
||||
url: str | None = None
|
||||
title: str = ""
|
||||
data_extraction_goal: str | None = None
|
||||
data_schema: dict[str, Any] | list | None = None
|
||||
max_retries: int = 0
|
||||
max_steps_per_run: int | None = None
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue