mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2025-09-10 06:15:18 +00:00
Implement DownloadToS3Block (#133)
This commit is contained in:
parent
57062952b8
commit
3d1b146470
6 changed files with 128 additions and 3 deletions
|
@ -29,3 +29,8 @@ class WorkflowDefinitionHasDuplicateParameterKeys(BaseWorkflowException):
|
|||
f"WorkflowDefinition has parameters with duplicate keys. Each parameter needs to have a unique "
|
||||
f"key. Duplicate key(s): {','.join(duplicate_keys)}"
|
||||
)
|
||||
|
||||
|
||||
class DownloadFileMaxSizeExceeded(BaseWorkflowException):
|
||||
def __init__(self, max_size: int) -> None:
|
||||
super().__init__(f"Download file size exceeded the maximum allowed size of {max_size} MB.")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue