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

This commit is contained in:
Aaron Perez 2026-04-21 13:02:49 -05:00 committed by GitHub
parent 7f1533dcfe
commit 8efd3308ba
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 20 additions and 17 deletions

View file

@ -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",