llama-cloud 0.1.9__py3-none-any.whl → 0.1.10__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 +30 -8
- llama_cloud/resources/__init__.py +14 -3
- llama_cloud/resources/chat_apps/client.py +99 -133
- llama_cloud/resources/llama_extract/__init__.py +16 -2
- llama_cloud/resources/llama_extract/client.py +272 -102
- llama_cloud/resources/llama_extract/types/__init__.py +14 -3
- llama_cloud/resources/llama_extract/types/extract_agent_create_data_schema.py +9 -0
- llama_cloud/resources/llama_extract/types/{extract_agent_create_data_schema_value.py → extract_agent_create_data_schema_zero_value.py} +1 -1
- llama_cloud/resources/llama_extract/types/extract_agent_update_data_schema.py +9 -0
- llama_cloud/resources/llama_extract/types/{extract_agent_update_data_schema_value.py → extract_agent_update_data_schema_zero_value.py} +1 -1
- llama_cloud/resources/llama_extract/types/extract_schema_validate_request_data_schema.py +9 -0
- llama_cloud/resources/llama_extract/types/extract_schema_validate_request_data_schema_zero_value.py +7 -0
- llama_cloud/resources/organizations/client.py +8 -12
- llama_cloud/resources/parsing/client.py +64 -0
- llama_cloud/resources/reports/client.py +30 -26
- llama_cloud/resources/retrievers/client.py +16 -4
- llama_cloud/types/__init__.py +18 -4
- llama_cloud/types/chat_app.py +11 -9
- llama_cloud/types/chat_app_response.py +12 -10
- llama_cloud/types/cloud_mongo_db_atlas_vector_search.py +1 -0
- llama_cloud/types/extract_job_create.py +4 -2
- llama_cloud/types/extract_job_create_data_schema_override.py +9 -0
- llama_cloud/types/{extract_job_create_data_schema_override_value.py → extract_job_create_data_schema_override_zero_value.py} +1 -1
- llama_cloud/types/extract_run.py +2 -2
- llama_cloud/types/extract_run_data.py +11 -0
- llama_cloud/types/extract_run_data_item_value.py +5 -0
- llama_cloud/types/extract_run_data_zero_value.py +5 -0
- llama_cloud/types/extract_schema_validate_response.py +32 -0
- llama_cloud/types/extract_schema_validate_response_data_schema_value.py +7 -0
- llama_cloud/types/llama_extract_settings.py +4 -0
- llama_cloud/types/llama_parse_parameters.py +8 -0
- llama_cloud/types/plan.py +4 -0
- llama_cloud/types/preset_composite_retrieval_params.py +35 -0
- llama_cloud/types/report_file_info.py +37 -0
- llama_cloud/types/report_metadata.py +2 -1
- {llama_cloud-0.1.9.dist-info → llama_cloud-0.1.10.dist-info}/METADATA +1 -1
- {llama_cloud-0.1.9.dist-info → llama_cloud-0.1.10.dist-info}/RECORD +39 -28
- llama_cloud/types/extract_run_data_value.py +0 -5
- {llama_cloud-0.1.9.dist-info → llama_cloud-0.1.10.dist-info}/LICENSE +0 -0
- {llama_cloud-0.1.9.dist-info → llama_cloud-0.1.10.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,32 @@
|
|
|
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 .extract_schema_validate_response_data_schema_value import ExtractSchemaValidateResponseDataSchemaValue
|
|
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 ExtractSchemaValidateResponse(pydantic.BaseModel):
|
|
19
|
+
data_schema: typing.Dict[str, typing.Optional[ExtractSchemaValidateResponseDataSchemaValue]]
|
|
20
|
+
|
|
21
|
+
def json(self, **kwargs: typing.Any) -> str:
|
|
22
|
+
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
|
23
|
+
return super().json(**kwargs_with_defaults)
|
|
24
|
+
|
|
25
|
+
def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
|
|
26
|
+
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
|
27
|
+
return super().dict(**kwargs_with_defaults)
|
|
28
|
+
|
|
29
|
+
class Config:
|
|
30
|
+
frozen = True
|
|
31
|
+
smart_union = True
|
|
32
|
+
json_encoders = {dt.datetime: serialize_datetime}
|
|
@@ -4,6 +4,7 @@ import datetime as dt
|
|
|
4
4
|
import typing
|
|
5
5
|
|
|
6
6
|
from ..core.datetime_utils import serialize_datetime
|
|
7
|
+
from .llama_parse_parameters import LlamaParseParameters
|
|
7
8
|
|
|
8
9
|
try:
|
|
9
10
|
import pydantic
|
|
@@ -30,6 +31,9 @@ class LlamaExtractSettings(pydantic.BaseModel):
|
|
|
30
31
|
)
|
|
31
32
|
extraction_prompt: typing.Optional[str] = pydantic.Field(description="The prompt to use for the extraction.")
|
|
32
33
|
error_handling_prompt: typing.Optional[str] = pydantic.Field(description="The prompt to use for error handling.")
|
|
34
|
+
llama_parse_params: typing.Optional[LlamaParseParameters] = pydantic.Field(
|
|
35
|
+
description="LlamaParse related settings."
|
|
36
|
+
)
|
|
33
37
|
|
|
34
38
|
def json(self, **kwargs: typing.Any) -> str:
|
|
35
39
|
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
|
@@ -82,6 +82,14 @@ class LlamaParseParameters(pydantic.BaseModel):
|
|
|
82
82
|
complemental_formatting_instruction: typing.Optional[str]
|
|
83
83
|
content_guideline_instruction: typing.Optional[str]
|
|
84
84
|
spreadsheet_extract_sub_tables: typing.Optional[bool]
|
|
85
|
+
job_timeout_in_seconds: typing.Optional[float]
|
|
86
|
+
job_timeout_extra_time_per_page_in_seconds: typing.Optional[float]
|
|
87
|
+
strict_mode_image_extraction: typing.Optional[bool]
|
|
88
|
+
strict_mode_image_ocr: typing.Optional[bool]
|
|
89
|
+
strict_mode_reconstruction: typing.Optional[bool]
|
|
90
|
+
strict_mode_buggy_font: typing.Optional[bool]
|
|
91
|
+
ignore_document_elements_for_layout_detection: typing.Optional[bool]
|
|
92
|
+
output_tables_as_html: typing.Optional[bool] = pydantic.Field(alias="output_tables_as_HTML")
|
|
85
93
|
|
|
86
94
|
def json(self, **kwargs: typing.Any) -> str:
|
|
87
95
|
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
llama_cloud/types/plan.py
CHANGED
|
@@ -15,6 +15,8 @@ except ImportError:
|
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
class Plan(pydantic.BaseModel):
|
|
18
|
+
id: str = pydantic.Field(description="The ID of the plan")
|
|
19
|
+
name: typing.Optional[str]
|
|
18
20
|
total_users: typing.Optional[int]
|
|
19
21
|
total_indexes: typing.Optional[int]
|
|
20
22
|
total_indexed_pages: typing.Optional[int]
|
|
@@ -25,6 +27,8 @@ class Plan(pydantic.BaseModel):
|
|
|
25
27
|
allowed_external_index: typing.Optional[bool] = pydantic.Field(
|
|
26
28
|
description="If is allowed to use external data sources or sinks in indexes"
|
|
27
29
|
)
|
|
30
|
+
starting_on: typing.Optional[dt.datetime]
|
|
31
|
+
ending_before: typing.Optional[dt.datetime]
|
|
28
32
|
|
|
29
33
|
def json(self, **kwargs: typing.Any) -> str:
|
|
30
34
|
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
|
@@ -0,0 +1,35 @@
|
|
|
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 .composite_retrieval_mode import CompositeRetrievalMode
|
|
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 PresetCompositeRetrievalParams(pydantic.BaseModel):
|
|
19
|
+
mode: typing.Optional[CompositeRetrievalMode] = pydantic.Field(description="The mode of composite retrieval.")
|
|
20
|
+
rerank_top_n: typing.Optional[int] = pydantic.Field(
|
|
21
|
+
description="The number of nodes to retrieve after reranking over retrieved nodes from all retrieval tools."
|
|
22
|
+
)
|
|
23
|
+
|
|
24
|
+
def json(self, **kwargs: typing.Any) -> str:
|
|
25
|
+
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
|
26
|
+
return super().json(**kwargs_with_defaults)
|
|
27
|
+
|
|
28
|
+
def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
|
|
29
|
+
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
|
30
|
+
return super().dict(**kwargs_with_defaults)
|
|
31
|
+
|
|
32
|
+
class Config:
|
|
33
|
+
frozen = True
|
|
34
|
+
smart_union = True
|
|
35
|
+
json_encoders = {dt.datetime: serialize_datetime}
|
|
@@ -0,0 +1,37 @@
|
|
|
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
|
+
|
|
8
|
+
try:
|
|
9
|
+
import pydantic
|
|
10
|
+
if pydantic.__version__.startswith("1."):
|
|
11
|
+
raise ImportError
|
|
12
|
+
import pydantic.v1 as pydantic # type: ignore
|
|
13
|
+
except ImportError:
|
|
14
|
+
import pydantic # type: ignore
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
class ReportFileInfo(pydantic.BaseModel):
|
|
18
|
+
"""
|
|
19
|
+
Information about a file stored in S3
|
|
20
|
+
"""
|
|
21
|
+
|
|
22
|
+
original_name: str = pydantic.Field(description="Original filename uploaded by user")
|
|
23
|
+
s_3_path: str = pydantic.Field(alias="s3_path", description="Path to file in S3")
|
|
24
|
+
|
|
25
|
+
def json(self, **kwargs: typing.Any) -> str:
|
|
26
|
+
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
|
27
|
+
return super().json(**kwargs_with_defaults)
|
|
28
|
+
|
|
29
|
+
def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
|
|
30
|
+
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
|
31
|
+
return super().dict(**kwargs_with_defaults)
|
|
32
|
+
|
|
33
|
+
class Config:
|
|
34
|
+
frozen = True
|
|
35
|
+
smart_union = True
|
|
36
|
+
allow_population_by_field_name = True
|
|
37
|
+
json_encoders = {dt.datetime: serialize_datetime}
|
|
@@ -4,6 +4,7 @@ import datetime as dt
|
|
|
4
4
|
import typing
|
|
5
5
|
|
|
6
6
|
from ..core.datetime_utils import serialize_datetime
|
|
7
|
+
from .report_file_info import ReportFileInfo
|
|
7
8
|
from .report_state import ReportState
|
|
8
9
|
|
|
9
10
|
try:
|
|
@@ -25,7 +26,7 @@ class ReportMetadata(pydantic.BaseModel):
|
|
|
25
26
|
report_metadata: typing.Dict[str, typing.Any] = pydantic.Field(description="The metadata for the report")
|
|
26
27
|
state: ReportState = pydantic.Field(description="The state of the report")
|
|
27
28
|
input_files: typing.Optional[typing.List[str]]
|
|
28
|
-
template_file: typing.Optional[
|
|
29
|
+
template_file: typing.Optional[ReportFileInfo]
|
|
29
30
|
template_text: typing.Optional[str]
|
|
30
31
|
template_instructions: typing.Optional[str]
|
|
31
32
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
llama_cloud/__init__.py,sha256=
|
|
1
|
+
llama_cloud/__init__.py,sha256=XR7VmwNyA8J1EOA5Cjs8XO-CpX60iZIxUudaz1GDXrI,21935
|
|
2
2
|
llama_cloud/client.py,sha256=0fK6iRBCA77eSs0zFrYQj-zD0BLy6Dr2Ss0ETJ4WaOY,5555
|
|
3
3
|
llama_cloud/core/__init__.py,sha256=QJS3CJ2TYP2E1Tge0CS6Z7r8LTNzJHQVX1hD3558eP0,519
|
|
4
4
|
llama_cloud/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
|
|
@@ -9,9 +9,9 @@ llama_cloud/core/remove_none_from_dict.py,sha256=8m91FC3YuVem0Gm9_sXhJ2tGvP33owJ
|
|
|
9
9
|
llama_cloud/environment.py,sha256=q4q-uY5WgcSlzfHwEANOqFQPu0lstqvMnVOsSfifMKo,168
|
|
10
10
|
llama_cloud/errors/__init__.py,sha256=pbbVUFtB9LCocA1RMWMMF_RKjsy5YkOKX5BAuE49w6g,170
|
|
11
11
|
llama_cloud/errors/unprocessable_entity_error.py,sha256=FvR7XPlV3Xx5nu8HNlmLhBRdk4so_gCHjYT5PyZe6sM,313
|
|
12
|
-
llama_cloud/resources/__init__.py,sha256=
|
|
12
|
+
llama_cloud/resources/__init__.py,sha256=aC0gr3yZcSJOKjHaBxSEhcZSxFkXsSVh8SvdK25CKso,3843
|
|
13
13
|
llama_cloud/resources/chat_apps/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
14
|
-
llama_cloud/resources/chat_apps/client.py,sha256=
|
|
14
|
+
llama_cloud/resources/chat_apps/client.py,sha256=olEESaQB-fmQTIi1zfheTTUpt3iBw5-lTYVmiIX9u_s,22943
|
|
15
15
|
llama_cloud/resources/component_definitions/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
16
16
|
llama_cloud/resources/component_definitions/client.py,sha256=YYfoXNa1qim2OdD5y4N5mvoBZKtrCuXS560mtqH_-1c,7569
|
|
17
17
|
llama_cloud/resources/data_sinks/__init__.py,sha256=ZHUjn3HbKhq_7QS1q74r2m5RGKF5lxcvF2P6pGvpcis,147
|
|
@@ -37,15 +37,19 @@ llama_cloud/resources/files/types/file_create_permission_info_value.py,sha256=KP
|
|
|
37
37
|
llama_cloud/resources/files/types/file_create_resource_info_value.py,sha256=R7Y-CJf7fnbvIqE3xOI5XOrmPwLbVJLC7zpxMu8Zopk,201
|
|
38
38
|
llama_cloud/resources/jobs/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
39
39
|
llama_cloud/resources/jobs/client.py,sha256=mN9uOzys9aZkhOJkApUy0yhfNeK8X09xQxT34ZPptNY,5386
|
|
40
|
-
llama_cloud/resources/llama_extract/__init__.py,sha256=
|
|
41
|
-
llama_cloud/resources/llama_extract/client.py,sha256=
|
|
42
|
-
llama_cloud/resources/llama_extract/types/__init__.py,sha256=
|
|
43
|
-
llama_cloud/resources/llama_extract/types/
|
|
44
|
-
llama_cloud/resources/llama_extract/types/
|
|
40
|
+
llama_cloud/resources/llama_extract/__init__.py,sha256=MgOA61chV7LogriUoyswOT627LaVt3UIb-imM3BvHdQ,617
|
|
41
|
+
llama_cloud/resources/llama_extract/client.py,sha256=dzJ_7YihxOm8KmxDOjkuDLG5ON7TrNnrO7y_dsaCHAQ,53802
|
|
42
|
+
llama_cloud/resources/llama_extract/types/__init__.py,sha256=yY34YD-MI4SnSbyJY5JwCGBBfqRr0dNh2zibRUt8mt4,895
|
|
43
|
+
llama_cloud/resources/llama_extract/types/extract_agent_create_data_schema.py,sha256=zB31hJQ8hKaIsPkfTWiX5hqsPVFMyyeWEDZ_Aq237jo,305
|
|
44
|
+
llama_cloud/resources/llama_extract/types/extract_agent_create_data_schema_zero_value.py,sha256=xoyXH3f0Y5beMWBxmtXSz6QoB_df_-0QBsYdjBhZnGw,217
|
|
45
|
+
llama_cloud/resources/llama_extract/types/extract_agent_update_data_schema.py,sha256=argR5gPRUYWY6ADCMKRdg-8NM-rsBM91_TEn8NKqVy8,305
|
|
46
|
+
llama_cloud/resources/llama_extract/types/extract_agent_update_data_schema_zero_value.py,sha256=Nvd892EFhg-PzlqoFp5i2owL7hCZ2SsuL7U4Tk9NeRI,217
|
|
47
|
+
llama_cloud/resources/llama_extract/types/extract_schema_validate_request_data_schema.py,sha256=uMqpKJdCmUNtryS2bkQTNA1AgDlWdtsBOP31iMt3zNA,346
|
|
48
|
+
llama_cloud/resources/llama_extract/types/extract_schema_validate_request_data_schema_zero_value.py,sha256=cUS7ez5r0Vx8T7SxwLYptZMmvpT5JoDVMyn54Q6VL-g,227
|
|
45
49
|
llama_cloud/resources/organizations/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
46
|
-
llama_cloud/resources/organizations/client.py,sha256=
|
|
50
|
+
llama_cloud/resources/organizations/client.py,sha256=VRqPsWYEksvysYgKIOGnfhXjC3aaf9OHK6fHsS-XHqk,55460
|
|
47
51
|
llama_cloud/resources/parsing/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
48
|
-
llama_cloud/resources/parsing/client.py,sha256=
|
|
52
|
+
llama_cloud/resources/parsing/client.py,sha256=TrJEJyBnVwD8t6fkOCCcIbfTvzZoJd-43D0r41nyaSQ,65732
|
|
49
53
|
llama_cloud/resources/pipelines/__init__.py,sha256=Mx7p3jDZRLMltsfywSufam_4AnHvmAfsxtMHVI72e-8,1083
|
|
50
54
|
llama_cloud/resources/pipelines/client.py,sha256=MORoQkrH6-8-utV41zrXjFW2BegDsa_6pJhJvFH4OMQ,134251
|
|
51
55
|
llama_cloud/resources/pipelines/types/__init__.py,sha256=jjaMc0V3K1HZLMYZ6WT4ydMtBCVy-oF5koqTCovbDws,1202
|
|
@@ -55,12 +59,12 @@ llama_cloud/resources/pipelines/types/pipeline_update_transform_config.py,sha256
|
|
|
55
59
|
llama_cloud/resources/projects/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
56
60
|
llama_cloud/resources/projects/client.py,sha256=B1A68C_rm7pfI6_fq9Xm1zuHdt9O8mLk1ZVvIt0iFb4,55882
|
|
57
61
|
llama_cloud/resources/reports/__init__.py,sha256=cruYbQ1bIuJbRpkfaQY7ajUEslffjd7KzvzMzbtPH94,217
|
|
58
|
-
llama_cloud/resources/reports/client.py,sha256
|
|
62
|
+
llama_cloud/resources/reports/client.py,sha256=-Gr3GgfEACSXoQ6knz8Vm0p6Rl6Ej3YosRfqCv74T5U,45908
|
|
59
63
|
llama_cloud/resources/reports/types/__init__.py,sha256=LfwDYrI4RcQu-o42iAe7HkcwHww2YU90lOonBPTmZIk,291
|
|
60
64
|
llama_cloud/resources/reports/types/update_report_plan_api_v_1_reports_report_id_plan_patch_request_action.py,sha256=Qh-MSeRvDBfNb5hoLELivv1pLtrYVf52WVoP7G8V34A,807
|
|
61
65
|
llama_cloud/resources/retrievers/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
62
|
-
llama_cloud/resources/retrievers/client.py,sha256=
|
|
63
|
-
llama_cloud/types/__init__.py,sha256=
|
|
66
|
+
llama_cloud/resources/retrievers/client.py,sha256=ASDdqnwXX4qj0sCAkWO7RKFnQ1oiLzBLIQ2bwqnMOKs,24905
|
|
67
|
+
llama_cloud/types/__init__.py,sha256=C_H0QvJ5RsXeDzazGGJZ5Qrf82DbzYAcByebPTl2Ot4,25950
|
|
64
68
|
llama_cloud/types/advanced_mode_transform_config.py,sha256=4xCXye0_cPmVS1F8aNTx81sIaEPjQH9kiCCAIoqUzlI,1502
|
|
65
69
|
llama_cloud/types/advanced_mode_transform_config_chunking_config.py,sha256=wYbJnWLpeQDfhmDZz-wJfYzD1iGT5Jcxb9ga3mzUuvk,1983
|
|
66
70
|
llama_cloud/types/advanced_mode_transform_config_segmentation_config.py,sha256=anNGq0F5-IlbIW3kpC8OilzLJnUq5tdIcWHnRnmlYsg,1303
|
|
@@ -75,8 +79,8 @@ llama_cloud/types/bedrock_embedding_config.py,sha256=32dMhoA2cLx1jeogDnCl9WPVb83
|
|
|
75
79
|
llama_cloud/types/box_auth_mechanism.py,sha256=EwEdpWYytw_dRtSElfSMPhh5dxalYH8mGW3UAUpkUfY,502
|
|
76
80
|
llama_cloud/types/character_chunking_config.py,sha256=2ooAnrlVVbKj4nDi_lR66x5E6nWOmj5YDWhSMQD0ubc,1035
|
|
77
81
|
llama_cloud/types/character_splitter.py,sha256=Jm6ie7c9JmMqIqLfAN-96sYvNUaIyLzCPBjNUx29VUw,1896
|
|
78
|
-
llama_cloud/types/chat_app.py,sha256=
|
|
79
|
-
llama_cloud/types/chat_app_response.py,sha256=
|
|
82
|
+
llama_cloud/types/chat_app.py,sha256=fLuzYkXLq51C_Y23hoLwfmG-OiT7jlyHt2JGe6-f1IA,1795
|
|
83
|
+
llama_cloud/types/chat_app_response.py,sha256=WSKr1KI9_pGTSstr3I53kZ8qb3y87Q4ulh8fR0C7sSU,1784
|
|
80
84
|
llama_cloud/types/chat_data.py,sha256=ZYqVtjXF6qPGajU4IWZu3InpU54TXJwBFiqxBepylP0,1197
|
|
81
85
|
llama_cloud/types/cloud_az_storage_blob_data_source.py,sha256=NT4cYsD1M868_bSJxKM9cvTMtjQtQxKloE4vRv8_lwg,1534
|
|
82
86
|
llama_cloud/types/cloud_azure_ai_search_vector_store.py,sha256=9GTaft7BaKsR9RJQp5dlpbslXUlTMA1AcDdKV1ApfqI,1513
|
|
@@ -87,7 +91,7 @@ llama_cloud/types/cloud_document_create.py,sha256=fQ1gZAtLCpr-a-sPbMez_5fK9JMU3u
|
|
|
87
91
|
llama_cloud/types/cloud_google_drive_data_source.py,sha256=jf5k7SY8scR-8_X27ShYSh1vOiFteqIH6cNcG7xZGLE,1304
|
|
88
92
|
llama_cloud/types/cloud_jira_data_source.py,sha256=9R20k8Ne0Bl9X5dgSxpM_IGOFmC70Llz0pJ93rAKRvw,1458
|
|
89
93
|
llama_cloud/types/cloud_milvus_vector_store.py,sha256=CHFTJSYPZKYPUU-jpB1MG8OwRvnPiT07o7cYCvQMZLA,1235
|
|
90
|
-
llama_cloud/types/cloud_mongo_db_atlas_vector_search.py,sha256=
|
|
94
|
+
llama_cloud/types/cloud_mongo_db_atlas_vector_search.py,sha256=CQ9euGBd3a72dvpTapRBhakme-fQbY2OaSoe0GDSHDo,1771
|
|
91
95
|
llama_cloud/types/cloud_notion_page_data_source.py,sha256=DxYullFctkpd0A75lfTmPzf-9EjBlusMTtNs3RbmIag,1230
|
|
92
96
|
llama_cloud/types/cloud_one_drive_data_source.py,sha256=ryDLKD7FVvXGo5maj92CSe522thi86tsKBRMktR-WGM,1569
|
|
93
97
|
llama_cloud/types/cloud_pinecone_vector_store.py,sha256=d1jEezwE6ndNG-2izgoO_m9tG3N1ZFvmeCXI2r3miFc,1724
|
|
@@ -140,18 +144,23 @@ llama_cloud/types/extract_agent.py,sha256=T98IOueut4M52Qm7hqcUOcWFFDhZ-ye0OFdXgf
|
|
|
140
144
|
llama_cloud/types/extract_agent_data_schema_value.py,sha256=UaDQ2KjajLDccW7F4NKdfpefeTJrr1hl0c95WRETYkM,201
|
|
141
145
|
llama_cloud/types/extract_config.py,sha256=KFg8cG61KvVlPVwGxtRSgR5XC40V_ID5u97P3t62QuU,1344
|
|
142
146
|
llama_cloud/types/extract_job.py,sha256=Yx4fDdCdylAji2LPTwqflVpz1o9slpj9tTLS93-1tzU,1431
|
|
143
|
-
llama_cloud/types/extract_job_create.py,sha256=
|
|
144
|
-
llama_cloud/types/
|
|
147
|
+
llama_cloud/types/extract_job_create.py,sha256=UK1mBIKyflo7e6m1MxMN95pLscj67jH_yvs8EvmBXqU,1545
|
|
148
|
+
llama_cloud/types/extract_job_create_data_schema_override.py,sha256=vuiJ2lGJjbXEnvFKzVnKyvgwhMXPg1Pb5GZne2DrB60,330
|
|
149
|
+
llama_cloud/types/extract_job_create_data_schema_override_zero_value.py,sha256=HHEYxOSQXXyBYOiUQg_qwfQtXFj-OtThMwbUDBIgZU0,223
|
|
145
150
|
llama_cloud/types/extract_mode.py,sha256=aE0tcuviE_eXu0y-A8Mn5MChxOIzjm7EOqyhaPZ3LbA,472
|
|
146
151
|
llama_cloud/types/extract_resultset.py,sha256=Alje0YQJUiA_aKi0hQs7TAnhDmZuQ_yL9b6HCNYBFQg,1627
|
|
147
152
|
llama_cloud/types/extract_resultset_data.py,sha256=v9Ae4SxLsvYPE9crko4N16lBjsxuZpz1yrUOhnaM_VY,427
|
|
148
153
|
llama_cloud/types/extract_resultset_data_item_value.py,sha256=JwqgDIGW0irr8QWaSTIrl24FhGxTUDOXIbxoSdIjuxs,209
|
|
149
154
|
llama_cloud/types/extract_resultset_data_zero_value.py,sha256=-tqgtp3hwIr2NhuC28wVWqQDgFFGYPfRdzneMtNzoBU,209
|
|
150
155
|
llama_cloud/types/extract_resultset_extraction_metadata_value.py,sha256=LEFcxgBCY35Tw93RIU8aEcyJYcLuhPp5-_G5XP07-xw,219
|
|
151
|
-
llama_cloud/types/extract_run.py,sha256=
|
|
156
|
+
llama_cloud/types/extract_run.py,sha256=VrVw5kYwPFARyWO5hgcWLgpUu3cmaZlmeGNXM826EI4,2264
|
|
157
|
+
llama_cloud/types/extract_run_data.py,sha256=Y24NhSSXSHDOI3qtETs9Iln5y3p5kCl4LB5F_RIoUj4,385
|
|
158
|
+
llama_cloud/types/extract_run_data_item_value.py,sha256=jbR5Yo3bGwHw72OJJ1l5NGTngE-rC2Jxd5b6BrNKzOc,197
|
|
152
159
|
llama_cloud/types/extract_run_data_schema_value.py,sha256=C4uNdNQHBrkribgmR6nxOQpRo1eydYJ78a0lm7B-e4o,199
|
|
153
|
-
llama_cloud/types/
|
|
160
|
+
llama_cloud/types/extract_run_data_zero_value.py,sha256=uWbiHJUlEi3TiwwBOskZRTQuUSt8udNXmD-wGdqcKkw,197
|
|
154
161
|
llama_cloud/types/extract_run_extraction_metadata_value.py,sha256=tBbPk7mkNWvjej8b8-hv9_BY6StTCMtrZHWUXANJBaU,213
|
|
162
|
+
llama_cloud/types/extract_schema_validate_response.py,sha256=EVSeXsljZC-gIpdXr16khI4kbZbc3jU-7rKVp5F_SQk,1170
|
|
163
|
+
llama_cloud/types/extract_schema_validate_response_data_schema_value.py,sha256=lX9RbBHcmBRagA-K7x1he8EEmmNCiAs-tHumGfPvFVQ,224
|
|
155
164
|
llama_cloud/types/extract_state.py,sha256=TNeVAXXKZaiM2srlbQlzRSn4_TDpR4xyT_yQhJUxFvk,775
|
|
156
165
|
llama_cloud/types/file.py,sha256=rQXitPRKOYw91nK5qOZ0vpOmIx_MCpRb0g78d9dQs6w,1822
|
|
157
166
|
llama_cloud/types/file_permission_info_value.py,sha256=RyQlNbhvIKS87Ywu7XUaw5jDToZX64M9Wqzu1U_q2Us,197
|
|
@@ -172,10 +181,10 @@ llama_cloud/types/job_name_mapping.py,sha256=2dQFQlVHoeSlkyEKSEJv0M3PzJf7hMvkuAB
|
|
|
172
181
|
llama_cloud/types/job_names.py,sha256=ZapQT__pLI14SagjGi8AsEwWY949hBoplQemMgb_Aoc,4098
|
|
173
182
|
llama_cloud/types/job_record.py,sha256=-tp6w7dyd5KZMMynxSrL5W5YoJSdqTRWolx_f0_Hbh0,2069
|
|
174
183
|
llama_cloud/types/job_record_with_usage_metrics.py,sha256=iNV2do5TB_0e3PoOz_DJyAaM6Cn9G8KG-dGPGgEs5SY,1198
|
|
175
|
-
llama_cloud/types/llama_extract_settings.py,sha256=
|
|
184
|
+
llama_cloud/types/llama_extract_settings.py,sha256=kIVAtnSNrwItV4AVJfI9qjMkjuSdjRiWbklf3EnzHmE,2006
|
|
176
185
|
llama_cloud/types/llama_index_core_base_llms_types_chat_message.py,sha256=NelHo-T-ebVMhRKsqE_xV8AJW4c7o6lS0uEQnPsmTwg,1365
|
|
177
186
|
llama_cloud/types/llama_index_core_base_llms_types_chat_message_blocks_item.py,sha256=tTglUqrSUaVc2Wsi4uIt5MU-80_oxZzTnhf8ziilVGY,874
|
|
178
|
-
llama_cloud/types/llama_parse_parameters.py,sha256=
|
|
187
|
+
llama_cloud/types/llama_parse_parameters.py,sha256=NotxJiDF8W0Wxv3Ok4FjstrgS2WzJwambdHjh6Nsck4,4827
|
|
179
188
|
llama_cloud/types/llama_parse_supported_file_extensions.py,sha256=B_0N3f8Aq59W9FbsH50mGBUiyWTIXQjHFl739uAyaQw,11207
|
|
180
189
|
llama_cloud/types/llm.py,sha256=7iIItVPjURp4u5xxJDAFIefUdhUKwIuA245WXilJPXE,2234
|
|
181
190
|
llama_cloud/types/llm_model_data.py,sha256=6rrycqGwlK3LZ2S-WtgmeomithdLhDCgwBBZQ5KLaso,1300
|
|
@@ -242,9 +251,10 @@ llama_cloud/types/pipeline_file_permission_info_value.py,sha256=a9yfg5n9po0-4ljG
|
|
|
242
251
|
llama_cloud/types/pipeline_file_resource_info_value.py,sha256=s3uFGQNwlUEr-X4TJZkW_kMBvX3h1sXRJoYlJRvHSDc,209
|
|
243
252
|
llama_cloud/types/pipeline_transform_config.py,sha256=zMr-ePLKGjbaScxbAHaSwYBL7rrNibVlnn0cbgElDfU,824
|
|
244
253
|
llama_cloud/types/pipeline_type.py,sha256=tTqrhxHP5xd7W2dQGD0e5FOv886nwJssyaVlXpWrtRo,551
|
|
245
|
-
llama_cloud/types/plan.py,sha256=
|
|
254
|
+
llama_cloud/types/plan.py,sha256=HjZfqLr8wSQOnBXL1uD_YH44h0AlEA_BakvdBqiYO7Y,1674
|
|
246
255
|
llama_cloud/types/playground_session.py,sha256=F8u2KZL2YaOrsT-o1n4zbhyPxSsoduc3ZCzQB8AecFA,1858
|
|
247
256
|
llama_cloud/types/pooling.py,sha256=5Fr6c8rx9SDWwWzEvD78suob2d79ktodUtLUAUHMbP8,651
|
|
257
|
+
llama_cloud/types/preset_composite_retrieval_params.py,sha256=8msstaAZUMs0ziQSEq4RJXNuQFztSDtDfyJHr632ubQ,1321
|
|
248
258
|
llama_cloud/types/preset_retrieval_params.py,sha256=gEkjXr4202ebLtPL6pYX5hj5NSwANpAdhZbEHCbE2RA,1782
|
|
249
259
|
llama_cloud/types/presigned_url.py,sha256=-DOQo7XKvUsl-9Gz7fX6VOHdQLzGH2XRau24ASvG92E,1275
|
|
250
260
|
llama_cloud/types/progress_event.py,sha256=Bk73A8geTVaq0ze5pMnbkAmx7FSOHQIixYCpCas_dcY,1684
|
|
@@ -263,7 +273,8 @@ llama_cloud/types/report_create_response.py,sha256=tmnVkyAMVf0HNQy186DFVV1oZQzYG
|
|
|
263
273
|
llama_cloud/types/report_event_item.py,sha256=_-0wgI96Ama2qKqUODTmI_fEcrnW5eAAjL1AoFEr4cQ,1451
|
|
264
274
|
llama_cloud/types/report_event_item_event_data.py,sha256=_v_2wZVGuNgXpitYNcKlA9hJVMLECOKf8A-pUuLron8,1171
|
|
265
275
|
llama_cloud/types/report_event_type.py,sha256=cPqKDVI8STX5BLndiGEovV4baa2it5fbfvcbiKyxAY8,1230
|
|
266
|
-
llama_cloud/types/
|
|
276
|
+
llama_cloud/types/report_file_info.py,sha256=-EQgQAvfFvVcuOBM_inhfdWD-757mfsDrPjwwii-MHk,1230
|
|
277
|
+
llama_cloud/types/report_metadata.py,sha256=TEUaRqy2ULtyFu3lFbea2X1SnYa5QMXZNJYerAQS1wM,1607
|
|
267
278
|
llama_cloud/types/report_plan.py,sha256=UvtYQaSNUTWbmC-rP0c57rbGpDRPUQgou0c2r96FVUo,1332
|
|
268
279
|
llama_cloud/types/report_plan_block.py,sha256=YlZ4fp4J3rduNKUknm0LfpHES_pgtQGFA9ZzErHoR40,1320
|
|
269
280
|
llama_cloud/types/report_query.py,sha256=IwZNM37fgwD2CrHkQ3LtdKwUCyL2r4SrZc0xwfaTa_I,1216
|
|
@@ -302,7 +313,7 @@ llama_cloud/types/validation_error_loc_item.py,sha256=LAtjCHIllWRBFXvAZ5QZpp7CPX
|
|
|
302
313
|
llama_cloud/types/vertex_ai_embedding_config.py,sha256=DvQk2xMJFmo54MEXTzoM4KSADyhGm_ygmFyx6wIcQdw,1159
|
|
303
314
|
llama_cloud/types/vertex_embedding_mode.py,sha256=yY23FjuWU_DkXjBb3JoKV4SCMqel2BaIMltDqGnIowU,1217
|
|
304
315
|
llama_cloud/types/vertex_text_embedding.py,sha256=-C4fNCYfFl36ATdBMGFVPpiHIKxjk0KB1ERA2Ec20aU,1932
|
|
305
|
-
llama_cloud-0.1.
|
|
306
|
-
llama_cloud-0.1.
|
|
307
|
-
llama_cloud-0.1.
|
|
308
|
-
llama_cloud-0.1.
|
|
316
|
+
llama_cloud-0.1.10.dist-info/LICENSE,sha256=_iNqtPcw1Ue7dZKwOwgPtbegMUkWVy15hC7bffAdNmY,1067
|
|
317
|
+
llama_cloud-0.1.10.dist-info/METADATA,sha256=-MdePajbPzznObT3-F5rFlC61M_H10QWOBaq4lOR_Ow,912
|
|
318
|
+
llama_cloud-0.1.10.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
|
319
|
+
llama_cloud-0.1.10.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|