llama-cloud 0.0.5__py3-none-any.whl → 0.0.7__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of llama-cloud might be problematic. Click here for more details.
- llama_cloud/__init__.py +4 -2
- llama_cloud/resources/component_definitions/client.py +18 -18
- llama_cloud/resources/data_sinks/client.py +2 -2
- llama_cloud/resources/data_sources/client.py +2 -2
- llama_cloud/resources/evals/client.py +12 -12
- llama_cloud/resources/files/client.py +8 -8
- llama_cloud/resources/parsing/client.py +16 -0
- llama_cloud/resources/pipelines/client.py +110 -34
- llama_cloud/resources/projects/client.py +24 -24
- llama_cloud/types/__init__.py +4 -2
- llama_cloud/types/eval_dataset_job_record.py +1 -1
- llama_cloud/types/llama_parse_parameters.py +49 -0
- llama_cloud/types/llama_parse_supported_file_extensions.py +124 -0
- llama_cloud/types/{pipeline_file_status_response.py → managed_ingestion_status_response.py} +2 -8
- llama_cloud/types/pipeline.py +3 -3
- llama_cloud/types/pipeline_create.py +4 -0
- llama_cloud/types/project.py +0 -2
- {llama_cloud-0.0.5.dist-info → llama_cloud-0.0.7.dist-info}/METADATA +1 -1
- {llama_cloud-0.0.5.dist-info → llama_cloud-0.0.7.dist-info}/RECORD +21 -20
- {llama_cloud-0.0.5.dist-info → llama_cloud-0.0.7.dist-info}/LICENSE +0 -0
- {llama_cloud-0.0.5.dist-info → llama_cloud-0.0.7.dist-info}/WHEEL +0 -0
|
@@ -38,13 +38,13 @@ class EvalDatasetJobRecord(pydantic.BaseModel):
|
|
|
38
38
|
description="The correlation ID for this job. Used for tracking the job across services."
|
|
39
39
|
)
|
|
40
40
|
parent_job_execution_id: typing.Optional[str] = pydantic.Field(description="The ID of the parent job execution.")
|
|
41
|
+
created_at: typing.Optional[dt.datetime] = pydantic.Field(description="Creation datetime")
|
|
41
42
|
id: typing.Optional[str] = pydantic.Field(description="Unique identifier")
|
|
42
43
|
status: StatusEnum
|
|
43
44
|
error_message: typing.Optional[str]
|
|
44
45
|
attempts: typing.Optional[int] = pydantic.Field(description="The number of times this job has been attempted")
|
|
45
46
|
started_at: typing.Optional[dt.datetime]
|
|
46
47
|
ended_at: typing.Optional[dt.datetime]
|
|
47
|
-
created_at: typing.Optional[dt.datetime] = pydantic.Field(description="Creation datetime")
|
|
48
48
|
updated_at: typing.Optional[dt.datetime] = pydantic.Field(description="Update datetime")
|
|
49
49
|
data: typing.Optional[Base] = pydantic.Field(description="Additional metadata for the job execution.")
|
|
50
50
|
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
import datetime as dt
|
|
4
|
+
import typing
|
|
5
|
+
|
|
6
|
+
from ..core.datetime_utils import serialize_datetime
|
|
7
|
+
from .parser_languages import ParserLanguages
|
|
8
|
+
|
|
9
|
+
try:
|
|
10
|
+
import pydantic
|
|
11
|
+
if pydantic.__version__.startswith("1."):
|
|
12
|
+
raise ImportError
|
|
13
|
+
import pydantic.v1 as pydantic # type: ignore
|
|
14
|
+
except ImportError:
|
|
15
|
+
import pydantic # type: ignore
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
class LlamaParseParameters(pydantic.BaseModel):
|
|
19
|
+
"""
|
|
20
|
+
Settings that can be configured for how to use LlamaParse to parse files witin a LlamaCloud pipeline.
|
|
21
|
+
"""
|
|
22
|
+
|
|
23
|
+
languages: typing.Optional[typing.List[ParserLanguages]]
|
|
24
|
+
parsing_instruction: typing.Optional[str]
|
|
25
|
+
disable_ocr: typing.Optional[bool]
|
|
26
|
+
invalidate_cache: typing.Optional[bool]
|
|
27
|
+
do_not_cache: typing.Optional[bool]
|
|
28
|
+
fast_mode: typing.Optional[bool]
|
|
29
|
+
skip_diagonal_text: typing.Optional[bool]
|
|
30
|
+
gpt_4_o_mode: typing.Optional[bool] = pydantic.Field(alias="gpt4o_mode")
|
|
31
|
+
gpt_4_o_api_key: typing.Optional[str] = pydantic.Field(alias="gpt4o_api_key")
|
|
32
|
+
do_not_unroll_columns: typing.Optional[bool]
|
|
33
|
+
page_separator: typing.Optional[str]
|
|
34
|
+
bounding_box: typing.Optional[str]
|
|
35
|
+
target_pages: typing.Optional[str]
|
|
36
|
+
|
|
37
|
+
def json(self, **kwargs: typing.Any) -> str:
|
|
38
|
+
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
|
39
|
+
return super().json(**kwargs_with_defaults)
|
|
40
|
+
|
|
41
|
+
def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
|
|
42
|
+
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
|
43
|
+
return super().dict(**kwargs_with_defaults)
|
|
44
|
+
|
|
45
|
+
class Config:
|
|
46
|
+
frozen = True
|
|
47
|
+
smart_union = True
|
|
48
|
+
allow_population_by_field_name = True
|
|
49
|
+
json_encoders = {dt.datetime: serialize_datetime}
|
|
@@ -47,6 +47,37 @@ class LlamaParseSupportedFileExtensions(str, enum.Enum):
|
|
|
47
47
|
EPUB = ".epub"
|
|
48
48
|
HTML = ".html"
|
|
49
49
|
HTM = ".htm"
|
|
50
|
+
XLS = ".xls"
|
|
51
|
+
XLSX = ".xlsx"
|
|
52
|
+
XLSM = ".xlsm"
|
|
53
|
+
XLSB = ".xlsb"
|
|
54
|
+
XLW = ".xlw"
|
|
55
|
+
CSV = ".csv"
|
|
56
|
+
DIF = ".dif"
|
|
57
|
+
SYLK = ".sylk"
|
|
58
|
+
SLK = ".slk"
|
|
59
|
+
PRN = ".prn"
|
|
60
|
+
NUMBERS = ".numbers"
|
|
61
|
+
ET = ".et"
|
|
62
|
+
ODS = ".ods"
|
|
63
|
+
FODS = ".fods"
|
|
64
|
+
UOS_1 = ".uos1"
|
|
65
|
+
UOS_2 = ".uos2"
|
|
66
|
+
DBF = ".dbf"
|
|
67
|
+
WK_1 = ".wk1"
|
|
68
|
+
WK_2 = ".wk2"
|
|
69
|
+
WK_3 = ".wk3"
|
|
70
|
+
WK_4 = ".wk4"
|
|
71
|
+
WKS = ".wks"
|
|
72
|
+
WQ_1 = ".wq1"
|
|
73
|
+
WQ_2 = ".wq2"
|
|
74
|
+
WB_1 = ".wb1"
|
|
75
|
+
WB_2 = ".wb2"
|
|
76
|
+
WB_3 = ".wb3"
|
|
77
|
+
QPW = ".qpw"
|
|
78
|
+
XLR = ".xlr"
|
|
79
|
+
ETH = ".eth"
|
|
80
|
+
TSV = ".tsv"
|
|
50
81
|
|
|
51
82
|
def visit(
|
|
52
83
|
self,
|
|
@@ -86,6 +117,37 @@ class LlamaParseSupportedFileExtensions(str, enum.Enum):
|
|
|
86
117
|
epub: typing.Callable[[], T_Result],
|
|
87
118
|
html: typing.Callable[[], T_Result],
|
|
88
119
|
htm: typing.Callable[[], T_Result],
|
|
120
|
+
xls: typing.Callable[[], T_Result],
|
|
121
|
+
xlsx: typing.Callable[[], T_Result],
|
|
122
|
+
xlsm: typing.Callable[[], T_Result],
|
|
123
|
+
xlsb: typing.Callable[[], T_Result],
|
|
124
|
+
xlw: typing.Callable[[], T_Result],
|
|
125
|
+
csv: typing.Callable[[], T_Result],
|
|
126
|
+
dif: typing.Callable[[], T_Result],
|
|
127
|
+
sylk: typing.Callable[[], T_Result],
|
|
128
|
+
slk: typing.Callable[[], T_Result],
|
|
129
|
+
prn: typing.Callable[[], T_Result],
|
|
130
|
+
numbers: typing.Callable[[], T_Result],
|
|
131
|
+
et: typing.Callable[[], T_Result],
|
|
132
|
+
ods: typing.Callable[[], T_Result],
|
|
133
|
+
fods: typing.Callable[[], T_Result],
|
|
134
|
+
uos_1: typing.Callable[[], T_Result],
|
|
135
|
+
uos_2: typing.Callable[[], T_Result],
|
|
136
|
+
dbf: typing.Callable[[], T_Result],
|
|
137
|
+
wk_1: typing.Callable[[], T_Result],
|
|
138
|
+
wk_2: typing.Callable[[], T_Result],
|
|
139
|
+
wk_3: typing.Callable[[], T_Result],
|
|
140
|
+
wk_4: typing.Callable[[], T_Result],
|
|
141
|
+
wks: typing.Callable[[], T_Result],
|
|
142
|
+
wq_1: typing.Callable[[], T_Result],
|
|
143
|
+
wq_2: typing.Callable[[], T_Result],
|
|
144
|
+
wb_1: typing.Callable[[], T_Result],
|
|
145
|
+
wb_2: typing.Callable[[], T_Result],
|
|
146
|
+
wb_3: typing.Callable[[], T_Result],
|
|
147
|
+
qpw: typing.Callable[[], T_Result],
|
|
148
|
+
xlr: typing.Callable[[], T_Result],
|
|
149
|
+
eth: typing.Callable[[], T_Result],
|
|
150
|
+
tsv: typing.Callable[[], T_Result],
|
|
89
151
|
) -> T_Result:
|
|
90
152
|
if self is LlamaParseSupportedFileExtensions.PDF:
|
|
91
153
|
return pdf()
|
|
@@ -159,3 +221,65 @@ class LlamaParseSupportedFileExtensions(str, enum.Enum):
|
|
|
159
221
|
return html()
|
|
160
222
|
if self is LlamaParseSupportedFileExtensions.HTM:
|
|
161
223
|
return htm()
|
|
224
|
+
if self is LlamaParseSupportedFileExtensions.XLS:
|
|
225
|
+
return xls()
|
|
226
|
+
if self is LlamaParseSupportedFileExtensions.XLSX:
|
|
227
|
+
return xlsx()
|
|
228
|
+
if self is LlamaParseSupportedFileExtensions.XLSM:
|
|
229
|
+
return xlsm()
|
|
230
|
+
if self is LlamaParseSupportedFileExtensions.XLSB:
|
|
231
|
+
return xlsb()
|
|
232
|
+
if self is LlamaParseSupportedFileExtensions.XLW:
|
|
233
|
+
return xlw()
|
|
234
|
+
if self is LlamaParseSupportedFileExtensions.CSV:
|
|
235
|
+
return csv()
|
|
236
|
+
if self is LlamaParseSupportedFileExtensions.DIF:
|
|
237
|
+
return dif()
|
|
238
|
+
if self is LlamaParseSupportedFileExtensions.SYLK:
|
|
239
|
+
return sylk()
|
|
240
|
+
if self is LlamaParseSupportedFileExtensions.SLK:
|
|
241
|
+
return slk()
|
|
242
|
+
if self is LlamaParseSupportedFileExtensions.PRN:
|
|
243
|
+
return prn()
|
|
244
|
+
if self is LlamaParseSupportedFileExtensions.NUMBERS:
|
|
245
|
+
return numbers()
|
|
246
|
+
if self is LlamaParseSupportedFileExtensions.ET:
|
|
247
|
+
return et()
|
|
248
|
+
if self is LlamaParseSupportedFileExtensions.ODS:
|
|
249
|
+
return ods()
|
|
250
|
+
if self is LlamaParseSupportedFileExtensions.FODS:
|
|
251
|
+
return fods()
|
|
252
|
+
if self is LlamaParseSupportedFileExtensions.UOS_1:
|
|
253
|
+
return uos_1()
|
|
254
|
+
if self is LlamaParseSupportedFileExtensions.UOS_2:
|
|
255
|
+
return uos_2()
|
|
256
|
+
if self is LlamaParseSupportedFileExtensions.DBF:
|
|
257
|
+
return dbf()
|
|
258
|
+
if self is LlamaParseSupportedFileExtensions.WK_1:
|
|
259
|
+
return wk_1()
|
|
260
|
+
if self is LlamaParseSupportedFileExtensions.WK_2:
|
|
261
|
+
return wk_2()
|
|
262
|
+
if self is LlamaParseSupportedFileExtensions.WK_3:
|
|
263
|
+
return wk_3()
|
|
264
|
+
if self is LlamaParseSupportedFileExtensions.WK_4:
|
|
265
|
+
return wk_4()
|
|
266
|
+
if self is LlamaParseSupportedFileExtensions.WKS:
|
|
267
|
+
return wks()
|
|
268
|
+
if self is LlamaParseSupportedFileExtensions.WQ_1:
|
|
269
|
+
return wq_1()
|
|
270
|
+
if self is LlamaParseSupportedFileExtensions.WQ_2:
|
|
271
|
+
return wq_2()
|
|
272
|
+
if self is LlamaParseSupportedFileExtensions.WB_1:
|
|
273
|
+
return wb_1()
|
|
274
|
+
if self is LlamaParseSupportedFileExtensions.WB_2:
|
|
275
|
+
return wb_2()
|
|
276
|
+
if self is LlamaParseSupportedFileExtensions.WB_3:
|
|
277
|
+
return wb_3()
|
|
278
|
+
if self is LlamaParseSupportedFileExtensions.QPW:
|
|
279
|
+
return qpw()
|
|
280
|
+
if self is LlamaParseSupportedFileExtensions.XLR:
|
|
281
|
+
return xlr()
|
|
282
|
+
if self is LlamaParseSupportedFileExtensions.ETH:
|
|
283
|
+
return eth()
|
|
284
|
+
if self is LlamaParseSupportedFileExtensions.TSV:
|
|
285
|
+
return tsv()
|
|
@@ -15,14 +15,8 @@ except ImportError:
|
|
|
15
15
|
import pydantic # type: ignore
|
|
16
16
|
|
|
17
17
|
|
|
18
|
-
class
|
|
19
|
-
""
|
|
20
|
-
Schema for the status of a pipeline file.
|
|
21
|
-
"""
|
|
22
|
-
|
|
23
|
-
file_id: str = pydantic.Field(description="The ID of the file")
|
|
24
|
-
pipeline_id: str = pydantic.Field(description="The ID of the pipeline")
|
|
25
|
-
status: ManagedIngestionStatus = pydantic.Field(description="The status of the pipeline file")
|
|
18
|
+
class ManagedIngestionStatusResponse(pydantic.BaseModel):
|
|
19
|
+
status: ManagedIngestionStatus = pydantic.Field(description="Status of the ingestion.")
|
|
26
20
|
|
|
27
21
|
def json(self, **kwargs: typing.Any) -> str:
|
|
28
22
|
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
llama_cloud/types/pipeline.py
CHANGED
|
@@ -7,7 +7,7 @@ from ..core.datetime_utils import serialize_datetime
|
|
|
7
7
|
from .configured_transformation_item import ConfiguredTransformationItem
|
|
8
8
|
from .data_sink import DataSink
|
|
9
9
|
from .eval_execution_params import EvalExecutionParams
|
|
10
|
-
from .
|
|
10
|
+
from .llama_parse_parameters import LlamaParseParameters
|
|
11
11
|
from .pipeline_type import PipelineType
|
|
12
12
|
from .preset_retrieval_params import PresetRetrievalParams
|
|
13
13
|
|
|
@@ -46,8 +46,8 @@ class Pipeline(pydantic.BaseModel):
|
|
|
46
46
|
llama_parse_enabled: typing.Optional[bool] = pydantic.Field(
|
|
47
47
|
description="Whether to use LlamaParse during pipeline execution."
|
|
48
48
|
)
|
|
49
|
-
|
|
50
|
-
description="
|
|
49
|
+
llama_parse_parameters: typing.Optional[LlamaParseParameters] = pydantic.Field(
|
|
50
|
+
description="Settings that can be configured for how to use LlamaParse to parse files within a LlamaCloud pipeline."
|
|
51
51
|
)
|
|
52
52
|
data_sink: typing.Optional[DataSink] = pydantic.Field(
|
|
53
53
|
description="The data sink for the pipeline. If None, the pipeline will use the fully managed data sink."
|
|
@@ -7,6 +7,7 @@ from ..core.datetime_utils import serialize_datetime
|
|
|
7
7
|
from .configured_transformation_item import ConfiguredTransformationItem
|
|
8
8
|
from .data_sink_create import DataSinkCreate
|
|
9
9
|
from .eval_execution_params import EvalExecutionParams
|
|
10
|
+
from .llama_parse_parameters import LlamaParseParameters
|
|
10
11
|
from .pipeline_type import PipelineType
|
|
11
12
|
from .preset_retrieval_params import PresetRetrievalParams
|
|
12
13
|
|
|
@@ -42,6 +43,9 @@ class PipelineCreate(pydantic.BaseModel):
|
|
|
42
43
|
llama_parse_enabled: typing.Optional[bool] = pydantic.Field(
|
|
43
44
|
description="Whether to use LlamaParse during pipeline execution."
|
|
44
45
|
)
|
|
46
|
+
llama_parse_parameters: typing.Optional[LlamaParseParameters] = pydantic.Field(
|
|
47
|
+
description="Settings that can be configured for how to use LlamaParse to parse files within a LlamaCloud pipeline."
|
|
48
|
+
)
|
|
45
49
|
name: str
|
|
46
50
|
pipeline_type: typing.Optional[PipelineType] = pydantic.Field(
|
|
47
51
|
description="Type of pipeline. Either PLAYGROUND or MANAGED."
|
llama_cloud/types/project.py
CHANGED
|
@@ -4,7 +4,6 @@ import datetime as dt
|
|
|
4
4
|
import typing
|
|
5
5
|
|
|
6
6
|
from ..core.datetime_utils import serialize_datetime
|
|
7
|
-
from .pipeline import Pipeline
|
|
8
7
|
|
|
9
8
|
try:
|
|
10
9
|
import pydantic
|
|
@@ -24,7 +23,6 @@ class Project(pydantic.BaseModel):
|
|
|
24
23
|
id: str = pydantic.Field(description="Unique identifier")
|
|
25
24
|
created_at: typing.Optional[dt.datetime] = pydantic.Field(description="Creation datetime")
|
|
26
25
|
updated_at: typing.Optional[dt.datetime] = pydantic.Field(description="Update datetime")
|
|
27
|
-
pipelines: typing.List[Pipeline]
|
|
28
26
|
ad_hoc_eval_dataset_id: typing.Optional[str]
|
|
29
27
|
user_id: str = pydantic.Field(description="The user ID of the project owner.")
|
|
30
28
|
is_default: typing.Optional[bool] = pydantic.Field(
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
llama_cloud/__init__.py,sha256=
|
|
1
|
+
llama_cloud/__init__.py,sha256=kw-9ebdu7WbO7zDdlEW2X1qhoAiPwb90AJtm-X849-I,7581
|
|
2
2
|
llama_cloud/client.py,sha256=zteEQ5dmzOW5mgEqQ-i9PBh01Ocx0LIN6jxHPy9CBlI,3786
|
|
3
3
|
llama_cloud/core/__init__.py,sha256=QJS3CJ2TYP2E1Tge0CS6Z7r8LTNzJHQVX1hD3558eP0,519
|
|
4
4
|
llama_cloud/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
|
|
@@ -11,33 +11,33 @@ llama_cloud/errors/__init__.py,sha256=pbbVUFtB9LCocA1RMWMMF_RKjsy5YkOKX5BAuE49w6
|
|
|
11
11
|
llama_cloud/errors/unprocessable_entity_error.py,sha256=FvR7XPlV3Xx5nu8HNlmLhBRdk4so_gCHjYT5PyZe6sM,313
|
|
12
12
|
llama_cloud/resources/__init__.py,sha256=CZM0cBk0JjOYkzt1OIl9iQzVBQmD4KuWJsIhrf6BMW0,887
|
|
13
13
|
llama_cloud/resources/component_definitions/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
14
|
-
llama_cloud/resources/component_definitions/client.py,sha256
|
|
14
|
+
llama_cloud/resources/component_definitions/client.py,sha256=YYfoXNa1qim2OdD5y4N5mvoBZKtrCuXS560mtqH_-1c,7569
|
|
15
15
|
llama_cloud/resources/data_sinks/__init__.py,sha256=nsMEyxkVilxvQGSdJi0Z0yKZoTaTWewZIGJNoMwNDsw,205
|
|
16
|
-
llama_cloud/resources/data_sinks/client.py,sha256=
|
|
16
|
+
llama_cloud/resources/data_sinks/client.py,sha256=jsXsLcT4FaIV3f0gBb6aEZVyUuvNjdF-CPlujzfvMag,19699
|
|
17
17
|
llama_cloud/resources/data_sinks/types/__init__.py,sha256=M9AO57_TUUgjUcGOhxcROql5U7UbJDbEm7aQj3YqU2I,269
|
|
18
18
|
llama_cloud/resources/data_sinks/types/data_sink_update_component.py,sha256=TjBOpvPvUIyi-NT1Gv1vShMoe-jzDKc8UYaFfo7XOO8,249
|
|
19
19
|
llama_cloud/resources/data_sinks/types/data_sink_update_component_one.py,sha256=wNaRFihU7fW2nhLALvqcRZngS9-rudxn_dgmh_z6FRs,639
|
|
20
20
|
llama_cloud/resources/data_sources/__init__.py,sha256=CCs8ur4fvszPjy0GpTWmMjUAx0WykNgKDKFDNbkYLeM,289
|
|
21
|
-
llama_cloud/resources/data_sources/client.py,sha256=
|
|
21
|
+
llama_cloud/resources/data_sources/client.py,sha256=uN4gjCbsR3aGxZoE6ouyX2bWEp_AelGX_lOigDF3lHQ,20911
|
|
22
22
|
llama_cloud/resources/data_sources/types/__init__.py,sha256=iOdDXvAM6w80PR62JCscsTOwzDIXHHcG_Ypv18DEdic,410
|
|
23
23
|
llama_cloud/resources/data_sources/types/data_source_update_component.py,sha256=8MoJgdjYmN5WqntDpMXX34WJsf-Wsn0gYw_0t9SOTTA,257
|
|
24
24
|
llama_cloud/resources/data_sources/types/data_source_update_component_one.py,sha256=jfHjlwkUonW0Z73XhJ3w0BZpmptuXU205FWXS1Ucf44,742
|
|
25
25
|
llama_cloud/resources/data_sources/types/data_source_update_custom_metadata_value.py,sha256=3aFC-p8MSxjhOu2nFtqk0pixj6RqNqcFnbOYngUdZUk,215
|
|
26
26
|
llama_cloud/resources/evals/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
27
|
-
llama_cloud/resources/evals/client.py,sha256=
|
|
27
|
+
llama_cloud/resources/evals/client.py,sha256=P0NmQPRu606DZ2U-RKZRgh25BMriWyKGB77X0Dfe4q0,27603
|
|
28
28
|
llama_cloud/resources/files/__init__.py,sha256=aZpyTj6KpZvA5XVwmuo1sIlRs7ba98btxVBZ6j5vIsI,155
|
|
29
|
-
llama_cloud/resources/files/client.py,sha256=
|
|
29
|
+
llama_cloud/resources/files/client.py,sha256=pU7ugpqW4dAXJycVg3KxUI82ixiH6vZtcwAaHyPdsDA,22186
|
|
30
30
|
llama_cloud/resources/files/types/__init__.py,sha256=ZWnnYWuDYZSfUJc7Jv3HyovzijdB--DTK4YB-uPcDsA,181
|
|
31
31
|
llama_cloud/resources/files/types/file_create_resource_info_value.py,sha256=R7Y-CJf7fnbvIqE3xOI5XOrmPwLbVJLC7zpxMu8Zopk,201
|
|
32
32
|
llama_cloud/resources/parsing/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
33
|
-
llama_cloud/resources/parsing/client.py,sha256=
|
|
33
|
+
llama_cloud/resources/parsing/client.py,sha256=P-2g7zca-qXhMr5DLCkJqeOyrq3uTNFtV-VBb1bmJ0Q,36528
|
|
34
34
|
llama_cloud/resources/pipelines/__init__.py,sha256=H7yaFIN62vjuhU3TOKzzuf8qpxZRgw1xVa-eyig-2YU,175
|
|
35
|
-
llama_cloud/resources/pipelines/client.py,sha256=
|
|
35
|
+
llama_cloud/resources/pipelines/client.py,sha256=IL49vu9HBi74o5iTXu8ld44jqMWBgdnHF8sGdXWcwec,106962
|
|
36
36
|
llama_cloud/resources/pipelines/types/__init__.py,sha256=xuT4OBPLrRfEe-E3UVdJvRjl9jTp7tNBK_YzZBb6Kj8,212
|
|
37
37
|
llama_cloud/resources/pipelines/types/pipeline_file_update_custom_metadata_value.py,sha256=trI48WLxPcAqV9207Q6-3cj1nl4EGlZpw7En56ZsPgg,217
|
|
38
38
|
llama_cloud/resources/projects/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
39
|
-
llama_cloud/resources/projects/client.py,sha256
|
|
40
|
-
llama_cloud/types/__init__.py,sha256=
|
|
39
|
+
llama_cloud/resources/projects/client.py,sha256=-ctl7lYcuXBJfdbBoYHWTkAD46BV2k5Vb_KHoUAg6Vg,46734
|
|
40
|
+
llama_cloud/types/__init__.py,sha256=UtfkKO9KZ03jpjMHHsW1y-VB8C3f0zKtXcLtbFZSqEI,10402
|
|
41
41
|
llama_cloud/types/azure_open_ai_embedding.py,sha256=Ne7DkOTpdwGsH2DUVIGdT5T8Nmk6J61lHGbmgG90LuY,3438
|
|
42
42
|
llama_cloud/types/base.py,sha256=cn_Zn61yLMDCMm1iZTPvKILSRlqRzOqZtSYyYBY5dIE,938
|
|
43
43
|
llama_cloud/types/base_prompt_template.py,sha256=GO9k4EDVMf3gRQIA4bVfXqgIMKnKTXhi1JlGvhqXDRY,1576
|
|
@@ -83,7 +83,7 @@ llama_cloud/types/data_source_custom_metadata_value.py,sha256=pTZn5yjZYmuOhsLABF
|
|
|
83
83
|
llama_cloud/types/data_source_definition.py,sha256=HlSlTxzYcQJOSo_2OSroAE8vAr-otDvTNBSEkA54vL8,1575
|
|
84
84
|
llama_cloud/types/eval_dataset.py,sha256=Uav-YJqAvyzCp1j2XavzzVLV975uki71beIBLkCt8LY,1408
|
|
85
85
|
llama_cloud/types/eval_dataset_job_params.py,sha256=vcXLJWO581uigNvGAurPDgMeEFtQURWucLF5pemdeS0,1343
|
|
86
|
-
llama_cloud/types/eval_dataset_job_record.py,sha256=
|
|
86
|
+
llama_cloud/types/eval_dataset_job_record.py,sha256=LWfxxOokpExuGxjhCnF79NvKBJ2x8QNdOMU8Ak1VmEU,2656
|
|
87
87
|
llama_cloud/types/eval_execution_params.py,sha256=TkdGGLfBIS2AeeUZtQBqC-Ln7_xPsU44JbN0yOBuP3Q,1382
|
|
88
88
|
llama_cloud/types/eval_execution_params_override.py,sha256=yhYHQvtk50FW_3oOFpOU-Swuh0MhBTY2-GNsXVWZJNY,1399
|
|
89
89
|
llama_cloud/types/eval_llm_model_data.py,sha256=H56AfhYsPA3eMKj1418_67tJ-5PsCDW36-6Zyif-f3M,1162
|
|
@@ -100,12 +100,14 @@ llama_cloud/types/http_validation_error.py,sha256=iOSKYv0dJGjyIq8DAeLVKNJY-GiM1b
|
|
|
100
100
|
llama_cloud/types/hugging_face_inference_api_embedding.py,sha256=_nXn3KkPnnQiuspEUsBASHJOjeGYHuDUq1eBfXr6xwg,3315
|
|
101
101
|
llama_cloud/types/hugging_face_inference_api_embedding_token.py,sha256=A7-_YryBcsP4G5uRyJ9acao3XwX5-YC3NRndTeDAPj4,144
|
|
102
102
|
llama_cloud/types/json_node_parser.py,sha256=w7U_HbyxIDTEyJCdrk4j_8IUaqVsqEkpOJ6cq-0xz0A,1577
|
|
103
|
-
llama_cloud/types/
|
|
103
|
+
llama_cloud/types/llama_parse_parameters.py,sha256=hphB95tS4k7uH9BtM4XdErSfc6lcECq_6YpnAT5JRg8,1810
|
|
104
|
+
llama_cloud/types/llama_parse_supported_file_extensions.py,sha256=EAaw2iWIf08gY1JTg-t-VtZsuHIpNwpwCZPG1xXc2RA,10077
|
|
104
105
|
llama_cloud/types/llm.py,sha256=T-Uv5OO0E6Rscpn841302jx3c7G1uo9LJkdrGlNGk30,2238
|
|
105
106
|
llama_cloud/types/local_eval.py,sha256=77NY_rq4zr0V3iB-PXE7Om6LcjRrytLbQ55f_ovAF-M,2050
|
|
106
107
|
llama_cloud/types/local_eval_results.py,sha256=G1rLE6vO2lEziHQ6bAbZvpJMTrkSYWFvsS1iyZZ44Jw,1449
|
|
107
108
|
llama_cloud/types/local_eval_sets.py,sha256=XJSSriwRvkma889pPiBQrpRakKejKOX3tWPu1TGb1ug,1181
|
|
108
109
|
llama_cloud/types/managed_ingestion_status.py,sha256=IW5WpBSofGlJfypFrl3mp4yx9Lq4eHFs-1IOl1R33dI,1128
|
|
110
|
+
llama_cloud/types/managed_ingestion_status_response.py,sha256=oqpY5Iw08offH-0xlEj-F4YN7BUJgP3gSw0EBWmjFGg,1118
|
|
109
111
|
llama_cloud/types/markdown_element_node_parser.py,sha256=N3HKe8ZVVzJvley9UxATSbXhNkgVafhJgtnyMePjMBU,2121
|
|
110
112
|
llama_cloud/types/markdown_node_parser.py,sha256=T4VNqkKmwQtItpdIC2uwfBnIGEfGQ8s6F9vR9ChW64M,1589
|
|
111
113
|
llama_cloud/types/message_role.py,sha256=38ES71HMWfKesfFqSkTBxDcqdNqJHlNYQr1pPKlxSXs,1208
|
|
@@ -124,8 +126,8 @@ llama_cloud/types/parsing_job_json_result.py,sha256=vC0FNMklitCgcB0esthMfv_RbbyF
|
|
|
124
126
|
llama_cloud/types/parsing_job_markdown_result.py,sha256=E3-CVNFH1IMyuGs_xzYfYdNgq9AdnDshA_CxOTXz_dQ,1094
|
|
125
127
|
llama_cloud/types/parsing_job_text_result.py,sha256=1QZielAWXuzPFOgr_DWshXPjmbExAAgAHKAEYVQVtJ8,1082
|
|
126
128
|
llama_cloud/types/parsing_usage.py,sha256=Wy_c-kAFADDBZgDwqNglsJv_t7vcjOm-8EY32oZEYzU,995
|
|
127
|
-
llama_cloud/types/pipeline.py,sha256=
|
|
128
|
-
llama_cloud/types/pipeline_create.py,sha256=
|
|
129
|
+
llama_cloud/types/pipeline.py,sha256=BMJh_QfmaqHgZsfiabu3QpNmfRDPXYqiS0Cp_632UOM,2807
|
|
130
|
+
llama_cloud/types/pipeline_create.py,sha256=_8qO8PVbD6zHW4xsYEHD4TQ-LhD5YE0iWK2x8BIALs0,2833
|
|
129
131
|
llama_cloud/types/pipeline_data_source.py,sha256=A3AlRzTD7zr1y-u5O5LFESqIupbbG-fqUndQgeYj77w,2062
|
|
130
132
|
llama_cloud/types/pipeline_data_source_component.py,sha256=Pk_K0Gv7xSWe5BKCdxz82EFd6AQDvZGN-6t3zg9h8NY,265
|
|
131
133
|
llama_cloud/types/pipeline_data_source_component_one.py,sha256=9j6n_Mhp3_nGg1O-V8Xeb46vLRTRH7hJzVPShFYOMfM,690
|
|
@@ -137,12 +139,11 @@ llama_cloud/types/pipeline_file_create.py,sha256=2h7EVJk2Hez8FJ5AVqynWUpWDOkLmTO
|
|
|
137
139
|
llama_cloud/types/pipeline_file_create_custom_metadata_value.py,sha256=olVj5yhQFx1QqWO1Wv9d6AtL-YyYO9_OYtOfcD2ZeGY,217
|
|
138
140
|
llama_cloud/types/pipeline_file_custom_metadata_value.py,sha256=ClFphYDNlHxeyLF5BWxIUhs2rooS0Xtqxr_Ae8dn8zE,211
|
|
139
141
|
llama_cloud/types/pipeline_file_resource_info_value.py,sha256=s3uFGQNwlUEr-X4TJZkW_kMBvX3h1sXRJoYlJRvHSDc,209
|
|
140
|
-
llama_cloud/types/pipeline_file_status_response.py,sha256=lVFL9CdsFo_TV-vsrhrrVwnPqJzVX5nCuG71aM2qVD8,1328
|
|
141
142
|
llama_cloud/types/pipeline_type.py,sha256=tTqrhxHP5xd7W2dQGD0e5FOv886nwJssyaVlXpWrtRo,551
|
|
142
143
|
llama_cloud/types/pooling.py,sha256=5Fr6c8rx9SDWwWzEvD78suob2d79ktodUtLUAUHMbP8,651
|
|
143
144
|
llama_cloud/types/preset_retrieval_params.py,sha256=y63ynv_SUYSq2vfYHNvw7LhiUtuVkvRDVmu1Xn8RY90,1907
|
|
144
145
|
llama_cloud/types/presigned_url.py,sha256=pUOIs2hFESZCuiqMsnn7pB6dgh_XO6w7vAV4OhKrq94,1345
|
|
145
|
-
llama_cloud/types/project.py,sha256
|
|
146
|
+
llama_cloud/types/project.py,sha256=-EWRwtaBs6rPeEVH8T-3eWvM3VrGNCL4zkr3-loMiik,1523
|
|
146
147
|
llama_cloud/types/project_create.py,sha256=GxGmsXGJM-cHrvPFLktEkj9JtNsSdFae7-HPZFB4er0,1014
|
|
147
148
|
llama_cloud/types/prompt_mixin_prompts.py,sha256=HRJlfFXFDOaGjqkB4prCDuz2fgwXhUi5I5roGykjRmU,1381
|
|
148
149
|
llama_cloud/types/prompt_spec.py,sha256=dCJOp3Gn5Y7EmC3iDIH4mM_fBtCMCwCPwPRgzyDY-q0,1516
|
|
@@ -161,7 +162,7 @@ llama_cloud/types/token_text_splitter.py,sha256=Mv8xBCvMXyYuQq1KInPe65O0YYCLWxs6
|
|
|
161
162
|
llama_cloud/types/transformation_category_names.py,sha256=0xjYe-mDW9OKbTGqL5fSbTvqsfrG4LDu_stW_ubVLl4,582
|
|
162
163
|
llama_cloud/types/validation_error.py,sha256=yZDLtjUHDY5w82Ra6CW0H9sLAr18R0RY1UNgJKR72DQ,1084
|
|
163
164
|
llama_cloud/types/validation_error_loc_item.py,sha256=LAtjCHIllWRBFXvAZ5QZpp7CPXjdtN9EB7HrLVo6EP0,128
|
|
164
|
-
llama_cloud-0.0.
|
|
165
|
-
llama_cloud-0.0.
|
|
166
|
-
llama_cloud-0.0.
|
|
167
|
-
llama_cloud-0.0.
|
|
165
|
+
llama_cloud-0.0.7.dist-info/LICENSE,sha256=_iNqtPcw1Ue7dZKwOwgPtbegMUkWVy15hC7bffAdNmY,1067
|
|
166
|
+
llama_cloud-0.0.7.dist-info/METADATA,sha256=SFxHQPUn2Bt8tQeMWjT5p37B2zT947-9o5C2autNTu0,750
|
|
167
|
+
llama_cloud-0.0.7.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
|
|
168
|
+
llama_cloud-0.0.7.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|