Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LlamaIndexTS
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mirrored_repos
MachineLearning
run-llama
LlamaIndexTS
Commits
c902fcbc
Unverified
Commit
c902fcbc
authored
4 weeks ago
by
Thuc Pham
Committed by
GitHub
4 weeks ago
Browse files
Options
Downloads
Patches
Plain Diff
chore: bump llamacloud openapi (#1674)
parent
88d776f3
No related branches found
Branches containing commit
Tags
v0.1.33
Tags containing commit
No related merge requests found
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.changeset/eleven-plums-prove.md
+5
-0
5 additions, 0 deletions
.changeset/eleven-plums-prove.md
packages/cloud/openapi.json
+4824
-2114
4824 additions, 2114 deletions
packages/cloud/openapi.json
packages/cloud/src/reader.ts
+44
-0
44 additions, 0 deletions
packages/cloud/src/reader.ts
with
4873 additions
and
2114 deletions
.changeset/eleven-plums-prove.md
0 → 100644
+
5
−
0
View file @
c902fcbc
---
"
@llamaindex/cloud"
:
patch
---
chore: bump llamacloud openapi
This diff is collapsed.
Click to expand it.
packages/cloud/openapi.json
+
4824
−
2114
View file @
c902fcbc
This diff is collapsed.
Click to expand it.
packages/cloud/src/reader.ts
+
44
−
0
View file @
c902fcbc
...
...
@@ -4,6 +4,7 @@ import { fs, getEnv, path } from "@llamaindex/env";
import
{
type
Body_upload_file_api_v1_parsing_upload_post
,
type
ParserLanguages
,
type
ParsingMode
,
getJobApiV1ParsingJobJobIdGet
,
getJobImageResultApiV1ParsingJobJobIdResultImageNameGet
,
getJobJsonResultApiV1ParsingJobJobIdResultJsonGet
,
...
...
@@ -127,6 +128,26 @@ export class LlamaParseReader extends FileReader {
readonly
#client
:
Client
;
output_tables_as_HTML
:
boolean
=
false
;
input_s3_region
?:
string
|
undefined
;
output_s3_region
?:
string
|
undefined
;
preserve_layout_alignment_across_pages
?:
boolean
|
undefined
;
spreadsheet_extract_sub_tables
?:
boolean
|
undefined
;
formatting_instruction
?:
string
|
undefined
;
parse_mode
?:
ParsingMode
|
undefined
;
system_prompt
?:
string
|
undefined
;
system_prompt_append
?:
string
|
undefined
;
user_prompt
?:
string
|
undefined
;
job_timeout_in_seconds
?:
number
|
undefined
;
job_timeout_extra_time_per_page_in_seconds
?:
number
|
undefined
;
strict_mode_image_extraction
?:
boolean
|
undefined
;
strict_mode_image_ocr
?:
boolean
|
undefined
;
strict_mode_reconstruction
?:
boolean
|
undefined
;
strict_mode_buggy_font
?:
boolean
|
undefined
;
ignore_document_elements_for_layout_detection
?:
boolean
|
undefined
;
complemental_formatting_instruction
?:
string
|
undefined
;
content_guideline_instruction
?:
string
|
undefined
;
constructor
(
params
:
Partial
<
Omit
<
LlamaParseReader
,
"
language
"
|
"
apiKey
"
>>
&
{
language
?:
ParserLanguages
|
ParserLanguages
[]
|
undefined
;
...
...
@@ -252,6 +273,29 @@ export class LlamaParseReader extends FileReader {
structured_output_json_schema_name
:
this
.
structured_output_json_schema_name
,
extract_layout
:
this
.
extract_layout
,
output_tables_as_HTML
:
this
.
output_tables_as_HTML
,
input_s3_region
:
this
.
input_s3_region
,
output_s3_region
:
this
.
output_s3_region
,
preserve_layout_alignment_across_pages
:
this
.
preserve_layout_alignment_across_pages
,
spreadsheet_extract_sub_tables
:
this
.
spreadsheet_extract_sub_tables
,
formatting_instruction
:
this
.
formatting_instruction
,
parse_mode
:
this
.
parse_mode
,
system_prompt
:
this
.
system_prompt
,
system_prompt_append
:
this
.
system_prompt_append
,
user_prompt
:
this
.
user_prompt
,
job_timeout_in_seconds
:
this
.
job_timeout_in_seconds
,
job_timeout_extra_time_per_page_in_seconds
:
this
.
job_timeout_extra_time_per_page_in_seconds
,
strict_mode_image_extraction
:
this
.
strict_mode_image_extraction
,
strict_mode_image_ocr
:
this
.
strict_mode_image_ocr
,
strict_mode_reconstruction
:
this
.
strict_mode_reconstruction
,
strict_mode_buggy_font
:
this
.
strict_mode_buggy_font
,
ignore_document_elements_for_layout_detection
:
this
.
ignore_document_elements_for_layout_detection
,
complemental_formatting_instruction
:
this
.
complemental_formatting_instruction
,
content_guideline_instruction
:
this
.
content_guideline_instruction
,
}
satisfies
{
[
Key
in
keyof
Body_upload_file_api_v1_parsing_upload_post
]
-
?:
|
Body_upload_file_api_v1_parsing_upload_post
[
Key
]
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment