mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2026-04-28 19:50:42 +00:00
feat(SKY-9160): default file parser type to Auto detect (backend) (#5576)
Some checks are pending
Auto Create GitHub Release on Version Change / check-version-change (push) Waiting to run
Auto Create GitHub Release on Version Change / create-release (push) Blocked by required conditions
Run tests and pre-commit / Run tests and pre-commit hooks (push) Waiting to run
Run tests and pre-commit / Frontend Lint and Build (push) Waiting to run
Publish Fern Docs / run (push) Waiting to run
Build Skyvern SDK and publish to PyPI / check-version-change (push) Waiting to run
Build Skyvern SDK and publish to PyPI / run-ci (push) Blocked by required conditions
Build Skyvern SDK and publish to PyPI / build-sdk (push) Blocked by required conditions
Some checks are pending
Auto Create GitHub Release on Version Change / check-version-change (push) Waiting to run
Auto Create GitHub Release on Version Change / create-release (push) Blocked by required conditions
Run tests and pre-commit / Run tests and pre-commit hooks (push) Waiting to run
Run tests and pre-commit / Frontend Lint and Build (push) Waiting to run
Publish Fern Docs / run (push) Waiting to run
Build Skyvern SDK and publish to PyPI / check-version-change (push) Waiting to run
Build Skyvern SDK and publish to PyPI / run-ci (push) Blocked by required conditions
Build Skyvern SDK and publish to PyPI / build-sdk (push) Blocked by required conditions
This commit is contained in:
parent
7f1533dcfe
commit
8efd3308ba
10 changed files with 20 additions and 17 deletions
|
|
@ -9685,7 +9685,8 @@
|
|||
"title": "File Url"
|
||||
},
|
||||
"file_type": {
|
||||
"$ref": "#/components/schemas/FileType"
|
||||
"$ref": "#/components/schemas/FileType",
|
||||
"default": "auto_detect"
|
||||
},
|
||||
"json_schema": {
|
||||
"anyOf": [
|
||||
|
|
@ -9704,8 +9705,7 @@
|
|||
"required": [
|
||||
"label",
|
||||
"output_parameter",
|
||||
"file_url",
|
||||
"file_type"
|
||||
"file_url"
|
||||
],
|
||||
"title": "FileParserBlock"
|
||||
},
|
||||
|
|
@ -9761,7 +9761,8 @@
|
|||
"title": "File Url"
|
||||
},
|
||||
"file_type": {
|
||||
"$ref": "#/components/schemas/FileType"
|
||||
"$ref": "#/components/schemas/FileType",
|
||||
"default": "auto_detect"
|
||||
},
|
||||
"json_schema": {
|
||||
"anyOf": [
|
||||
|
|
@ -9779,8 +9780,7 @@
|
|||
"type": "object",
|
||||
"required": [
|
||||
"label",
|
||||
"file_url",
|
||||
"file_type"
|
||||
"file_url"
|
||||
],
|
||||
"title": "FileParserBlockYAML"
|
||||
},
|
||||
|
|
@ -9795,6 +9795,7 @@
|
|||
"FileType": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"auto_detect",
|
||||
"csv",
|
||||
"excel",
|
||||
"pdf",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue