mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2025-09-16 18:29:40 +00:00
implement an endpoint for running one or more labelled blocks in a workflow (#2878)
This commit is contained in:
parent
993d0eaf45
commit
dd666d7e8e
6 changed files with 204 additions and 6 deletions
|
@ -128,6 +128,11 @@ class UnknownBlockType(SkyvernException):
|
|||
super().__init__(f"Unknown block type {block_type}")
|
||||
|
||||
|
||||
class BlockNotFound(SkyvernException):
|
||||
def __init__(self, block_label: str) -> None:
|
||||
super().__init__(f"Block {block_label} not found")
|
||||
|
||||
|
||||
class WorkflowNotFound(SkyvernHTTPException):
|
||||
def __init__(
|
||||
self,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue