llama-cloud 0.0.9__py3-none-any.whl → 0.0.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 +8 -2
- llama_cloud/resources/data_sources/types/data_source_update_component_one.py +2 -0
- llama_cloud/resources/extraction/client.py +55 -22
- llama_cloud/resources/organizations/client.py +81 -0
- llama_cloud/resources/parsing/client.py +104 -0
- llama_cloud/resources/pipelines/client.py +219 -41
- llama_cloud/types/__init__.py +8 -2
- llama_cloud/types/{chat_params.py → chat_data.py} +3 -3
- llama_cloud/types/cloud_azure_ai_search_vector_store.py +1 -1
- llama_cloud/types/cloud_confluence_data_source.py +45 -0
- llama_cloud/types/configurable_data_source_names.py +4 -0
- llama_cloud/types/data_source_component_one.py +2 -0
- llama_cloud/types/data_source_create_component_one.py +2 -0
- llama_cloud/types/extraction_job.py +35 -0
- llama_cloud/types/extraction_schema.py +1 -1
- llama_cloud/types/llama_parse_parameters.py +5 -0
- llama_cloud/types/pipeline.py +0 -3
- llama_cloud/types/pipeline_create.py +0 -3
- llama_cloud/types/pipeline_data_source_component_one.py +2 -0
- llama_cloud/types/user_organization.py +10 -1
- llama_cloud/types/user_organization_delete.py +36 -0
- {llama_cloud-0.0.9.dist-info → llama_cloud-0.0.10.dist-info}/METADATA +1 -1
- {llama_cloud-0.0.9.dist-info → llama_cloud-0.0.10.dist-info}/RECORD +25 -22
- {llama_cloud-0.0.9.dist-info → llama_cloud-0.0.10.dist-info}/WHEEL +1 -1
- {llama_cloud-0.0.9.dist-info → llama_cloud-0.0.10.dist-info}/LICENSE +0 -0
|
@@ -33,6 +33,11 @@ class LlamaParseParameters(pydantic.BaseModel):
|
|
|
33
33
|
page_separator: typing.Optional[str]
|
|
34
34
|
bounding_box: typing.Optional[str]
|
|
35
35
|
target_pages: typing.Optional[str]
|
|
36
|
+
use_vendor_multimodal_model: typing.Optional[str]
|
|
37
|
+
vendor_multimodal_model_name: typing.Optional[str]
|
|
38
|
+
vendor_multimodal_api_key: typing.Optional[str]
|
|
39
|
+
page_prefix: typing.Optional[str]
|
|
40
|
+
page_suffix: typing.Optional[str]
|
|
36
41
|
|
|
37
42
|
def json(self, **kwargs: typing.Any) -> str:
|
|
38
43
|
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
llama_cloud/types/pipeline.py
CHANGED
|
@@ -43,9 +43,6 @@ class Pipeline(pydantic.BaseModel):
|
|
|
43
43
|
eval_parameters: typing.Optional[EvalExecutionParams] = pydantic.Field(
|
|
44
44
|
description="Eval parameters for the pipeline."
|
|
45
45
|
)
|
|
46
|
-
llama_parse_enabled: typing.Optional[bool] = pydantic.Field(
|
|
47
|
-
description="Whether to use LlamaParse during pipeline execution."
|
|
48
|
-
)
|
|
49
46
|
llama_parse_parameters: typing.Optional[LlamaParseParameters] = pydantic.Field(
|
|
50
47
|
description="Settings that can be configured for how to use LlamaParse to parse files within a LlamaCloud pipeline."
|
|
51
48
|
)
|
|
@@ -40,9 +40,6 @@ class PipelineCreate(pydantic.BaseModel):
|
|
|
40
40
|
eval_parameters: typing.Optional[EvalExecutionParams] = pydantic.Field(
|
|
41
41
|
description="Eval parameters for the pipeline."
|
|
42
42
|
)
|
|
43
|
-
llama_parse_enabled: typing.Optional[bool] = pydantic.Field(
|
|
44
|
-
description="Whether to use LlamaParse during pipeline execution."
|
|
45
|
-
)
|
|
46
43
|
llama_parse_parameters: typing.Optional[LlamaParseParameters] = pydantic.Field(
|
|
47
44
|
description="Settings that can be configured for how to use LlamaParse to parse files within a LlamaCloud pipeline."
|
|
48
45
|
)
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
import typing
|
|
4
4
|
|
|
5
5
|
from .cloud_az_storage_blob_data_source import CloudAzStorageBlobDataSource
|
|
6
|
+
from .cloud_confluence_data_source import CloudConfluenceDataSource
|
|
6
7
|
from .cloud_jira_data_source import CloudJiraDataSource
|
|
7
8
|
from .cloud_notion_page_data_source import CloudNotionPageDataSource
|
|
8
9
|
from .cloud_one_drive_data_source import CloudOneDriveDataSource
|
|
@@ -17,5 +18,6 @@ PipelineDataSourceComponentOne = typing.Union[
|
|
|
17
18
|
CloudSharepointDataSource,
|
|
18
19
|
CloudSlackDataSource,
|
|
19
20
|
CloudNotionPageDataSource,
|
|
21
|
+
CloudConfluenceDataSource,
|
|
20
22
|
CloudJiraDataSource,
|
|
21
23
|
]
|
|
@@ -23,8 +23,17 @@ class UserOrganization(pydantic.BaseModel):
|
|
|
23
23
|
created_at: typing.Optional[dt.datetime] = pydantic.Field(description="Creation datetime")
|
|
24
24
|
updated_at: typing.Optional[dt.datetime] = pydantic.Field(description="Update datetime")
|
|
25
25
|
email: str = pydantic.Field(description="The user's email address.")
|
|
26
|
-
user_id: str = pydantic.Field(description="The user's ID.")
|
|
26
|
+
user_id: typing.Optional[str] = pydantic.Field(description="The user's ID.")
|
|
27
27
|
organization_id: str = pydantic.Field(description="The organization's ID.")
|
|
28
|
+
pending: typing.Optional[bool] = pydantic.Field(
|
|
29
|
+
description="Whether the user's membership is pending account signup."
|
|
30
|
+
)
|
|
31
|
+
invited_by_user_id: typing.Optional[str] = pydantic.Field(
|
|
32
|
+
description="The user ID of the user who added the user to the organization."
|
|
33
|
+
)
|
|
34
|
+
invited_by_user_email: typing.Optional[str] = pydantic.Field(
|
|
35
|
+
description="The email address of the user who added the user to the organization."
|
|
36
|
+
)
|
|
28
37
|
|
|
29
38
|
def json(self, **kwargs: typing.Any) -> str:
|
|
30
39
|
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
|
@@ -0,0 +1,36 @@
|
|
|
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 UserOrganizationDelete(pydantic.BaseModel):
|
|
18
|
+
"""
|
|
19
|
+
Schema for deleting a user's membership to an organization.
|
|
20
|
+
"""
|
|
21
|
+
|
|
22
|
+
user_id: typing.Optional[str] = pydantic.Field(description="The user's ID.")
|
|
23
|
+
email: typing.Optional[str] = pydantic.Field(description="The user's email address.")
|
|
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
|
+
json_encoders = {dt.datetime: serialize_datetime}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
llama_cloud/__init__.py,sha256=
|
|
1
|
+
llama_cloud/__init__.py,sha256=iwA_KYHvKDW9C5OqOs1DW4UOBpV2sG2Jqfgf2ihV8wc,8525
|
|
2
2
|
llama_cloud/client.py,sha256=bhZPiYd1TQSn3PRgHZ66MgMnBneG4Skc9g6UsT0wQnE,4299
|
|
3
3
|
llama_cloud/core/__init__.py,sha256=QJS3CJ2TYP2E1Tge0CS6Z7r8LTNzJHQVX1hD3558eP0,519
|
|
4
4
|
llama_cloud/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
|
|
@@ -21,12 +21,12 @@ llama_cloud/resources/data_sources/__init__.py,sha256=CCs8ur4fvszPjy0GpTWmMjUAx0
|
|
|
21
21
|
llama_cloud/resources/data_sources/client.py,sha256=uxM67CtKYSexXeKxuHojlbLR7YkqQueRYIrhSLc6Pqs,21915
|
|
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
|
-
llama_cloud/resources/data_sources/types/data_source_update_component_one.py,sha256=
|
|
24
|
+
llama_cloud/resources/data_sources/types/data_source_update_component_one.py,sha256=3zOhPI7u4fXvjVsr-0cVypoNespiZi_AepVNTXanN9s,943
|
|
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
27
|
llama_cloud/resources/evals/client.py,sha256=P0NmQPRu606DZ2U-RKZRgh25BMriWyKGB77X0Dfe4q0,27603
|
|
28
28
|
llama_cloud/resources/extraction/__init__.py,sha256=Q4-qd3ywXqa_GOSxstVJJccHnJGAfKxz2FYLXYeiyWs,175
|
|
29
|
-
llama_cloud/resources/extraction/client.py,sha256=
|
|
29
|
+
llama_cloud/resources/extraction/client.py,sha256=VQXFKLI5NalLpYui8REgqhN0_xLezrKbrTSjaCAxZ3A,27212
|
|
30
30
|
llama_cloud/resources/extraction/types/__init__.py,sha256=GgKhbek1WvvnoXgiB0XeSOAX3W94honf5HzL3gvtAEc,212
|
|
31
31
|
llama_cloud/resources/extraction/types/extraction_schema_update_data_schema_value.py,sha256=z_4tkLkWnHnd3Xa9uUctk9hG9Mo7GKU4dK4s2pm8qow,217
|
|
32
32
|
llama_cloud/resources/files/__init__.py,sha256=aZpyTj6KpZvA5XVwmuo1sIlRs7ba98btxVBZ6j5vIsI,155
|
|
@@ -34,25 +34,26 @@ llama_cloud/resources/files/client.py,sha256=pU7ugpqW4dAXJycVg3KxUI82ixiH6vZtcwA
|
|
|
34
34
|
llama_cloud/resources/files/types/__init__.py,sha256=ZWnnYWuDYZSfUJc7Jv3HyovzijdB--DTK4YB-uPcDsA,181
|
|
35
35
|
llama_cloud/resources/files/types/file_create_resource_info_value.py,sha256=R7Y-CJf7fnbvIqE3xOI5XOrmPwLbVJLC7zpxMu8Zopk,201
|
|
36
36
|
llama_cloud/resources/organizations/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
37
|
-
llama_cloud/resources/organizations/client.py,sha256=
|
|
37
|
+
llama_cloud/resources/organizations/client.py,sha256=akn_3sytJW_VhuLVBbP0TKiKKbBGuuAPDtGVIbW4kdA,34167
|
|
38
38
|
llama_cloud/resources/parsing/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
39
|
-
llama_cloud/resources/parsing/client.py,sha256=
|
|
39
|
+
llama_cloud/resources/parsing/client.py,sha256=fLNVNa945yP76sTf6NdSm5ikifSFFrjxxHXy0vwNBUc,40450
|
|
40
40
|
llama_cloud/resources/pipelines/__init__.py,sha256=H7yaFIN62vjuhU3TOKzzuf8qpxZRgw1xVa-eyig-2YU,175
|
|
41
|
-
llama_cloud/resources/pipelines/client.py,sha256=
|
|
41
|
+
llama_cloud/resources/pipelines/client.py,sha256=HlWhqcZUKosmkhBuDgj-ocRKGpsN4tJRHa3KnKbaZZY,125040
|
|
42
42
|
llama_cloud/resources/pipelines/types/__init__.py,sha256=xuT4OBPLrRfEe-E3UVdJvRjl9jTp7tNBK_YzZBb6Kj8,212
|
|
43
43
|
llama_cloud/resources/pipelines/types/pipeline_file_update_custom_metadata_value.py,sha256=trI48WLxPcAqV9207Q6-3cj1nl4EGlZpw7En56ZsPgg,217
|
|
44
44
|
llama_cloud/resources/projects/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
45
45
|
llama_cloud/resources/projects/client.py,sha256=nK81HdhGbWY1rh8rSEsKzRuvyvCQ-IkhLHIPDqEqVFU,47754
|
|
46
|
-
llama_cloud/types/__init__.py,sha256=
|
|
46
|
+
llama_cloud/types/__init__.py,sha256=LXj40Rz1FVHxAyWgl2Wp7FcleeQq_sHeaz1vYlto4AQ,11634
|
|
47
47
|
llama_cloud/types/azure_open_ai_embedding.py,sha256=-9LzRDNcxhRvEshA8SaI9zFMTpHLXJ34iMnpIVk88Cc,3590
|
|
48
48
|
llama_cloud/types/base.py,sha256=cn_Zn61yLMDCMm1iZTPvKILSRlqRzOqZtSYyYBY5dIE,938
|
|
49
49
|
llama_cloud/types/base_prompt_template.py,sha256=GO9k4EDVMf3gRQIA4bVfXqgIMKnKTXhi1JlGvhqXDRY,1576
|
|
50
50
|
llama_cloud/types/bedrock_embedding.py,sha256=RbECq-DxfbizAWpgUN4QIandJ-bGmgFug2EQH6LPHP0,2627
|
|
51
|
+
llama_cloud/types/chat_data.py,sha256=J4a86csaMxg_TB6VhioW9d41b2j0Pha_Iq82im-hDfA,1263
|
|
51
52
|
llama_cloud/types/chat_message.py,sha256=DNzACxFUJxIHHo74j0e0DSz_1BBgykqfMPekiGCheFo,1168
|
|
52
|
-
llama_cloud/types/chat_params.py,sha256=exsMoH03mMvICJmH86IRu0_h7VSeCiZiccqs5zlYNco,1235
|
|
53
53
|
llama_cloud/types/cloud_az_storage_blob_data_source.py,sha256=SzwYuN3evb6VxW6uHjPeTZFHXYg_3iq3TS-BK6BLdog,1758
|
|
54
|
-
llama_cloud/types/cloud_azure_ai_search_vector_store.py,sha256=
|
|
54
|
+
llama_cloud/types/cloud_azure_ai_search_vector_store.py,sha256=PlkvzRM7WFNQBxsrhC81Rmm5kVK3rNaOLAYe14L8BzE,1401
|
|
55
55
|
llama_cloud/types/cloud_chroma_vector_store.py,sha256=-PKWkXWRpypeVy6nSbFDDkypdBgHgeqsXtfjGKygjXM,1388
|
|
56
|
+
llama_cloud/types/cloud_confluence_data_source.py,sha256=jLV9bytO2u-Nhn9-HG95TI3xz1934jzPyPOGE_j0h9A,1926
|
|
56
57
|
llama_cloud/types/cloud_document.py,sha256=VJBsYh0OLThzUYfQQE2DZjaMLoyjxCWda8o_ePfGj5Y,1201
|
|
57
58
|
llama_cloud/types/cloud_document_create.py,sha256=F_Zy1Au9Ta1D19Zy1DBmnKIyqqE2TUpzuakHSKn0C-M,1224
|
|
58
59
|
llama_cloud/types/cloud_jira_data_source.py,sha256=chvMhR253mgLAslxvCsS7T7UBM97i0XFjjtx6pfv8Ts,1732
|
|
@@ -68,7 +69,7 @@ llama_cloud/types/cloud_weaviate_vector_store.py,sha256=D9ZKG9kpZyoncNCxD49e3RUR
|
|
|
68
69
|
llama_cloud/types/code_splitter.py,sha256=TMfGeunLMJagX3lvxr76nhosD48Reu4CexVzpU_03Rg,1971
|
|
69
70
|
llama_cloud/types/cohere_embedding.py,sha256=qpF6fMm5z5YGc47RfLUM9XPsHbYNRlhSlrBe-9OotHA,1969
|
|
70
71
|
llama_cloud/types/configurable_data_sink_names.py,sha256=fBTSuuVsKdxguFI03_aA8CDQxV0NERsse6fiw8Dq7A4,1237
|
|
71
|
-
llama_cloud/types/configurable_data_source_names.py,sha256=
|
|
72
|
+
llama_cloud/types/configurable_data_source_names.py,sha256=NrkTdTVUEjb4nrLlmZP2Piko70jToGRAxR2MPs3kEzA,1689
|
|
72
73
|
llama_cloud/types/configurable_transformation_definition.py,sha256=LDOhI5IDxlLDWM_p_xwCFM7qq1y-aGA8UxN7dnplDlU,1886
|
|
73
74
|
llama_cloud/types/configurable_transformation_names.py,sha256=-cF3wGNtTM6RCoOnm9YDBgUGnHHLXw_eyq6GSSB2Tpk,3402
|
|
74
75
|
llama_cloud/types/configured_transformation_item.py,sha256=9caK5ZOKgGCZc6ynJJIWwpxpScKHOHkZwHFlsBy-Fog,1826
|
|
@@ -83,10 +84,10 @@ llama_cloud/types/data_sink_create_component_one.py,sha256=edXXfp3kt8puD0ChIW7wm
|
|
|
83
84
|
llama_cloud/types/data_sink_definition.py,sha256=5ve_pq02s8szc34-wWobMe6BAPj_c7e9n9FFsfDqEQ0,1561
|
|
84
85
|
llama_cloud/types/data_source.py,sha256=H98i0VlmB_eUczmUuhbAVG7uP1wcLLlE2gSKQWLTy7w,1830
|
|
85
86
|
llama_cloud/types/data_source_component.py,sha256=xx1-6EJUtfr2A6BgkOtFM4w5I_3zSHqO1qnRRHSNcTc,232
|
|
86
|
-
llama_cloud/types/data_source_component_one.py,sha256=
|
|
87
|
+
llama_cloud/types/data_source_component_one.py,sha256=Z4Z2aEW6P8p_OZ29in5c9nQEEzWoLGD2vBKJ6DMJjMA,865
|
|
87
88
|
llama_cloud/types/data_source_create.py,sha256=siumw3f5sZCVVDZgYDLpy7YaeYZRMTOPqmFjL6GjyK0,1613
|
|
88
89
|
llama_cloud/types/data_source_create_component.py,sha256=xY1zUoKBH6LRwka54a1w5zFrB3vUYIiEGhBZv7yi7Oc,257
|
|
89
|
-
llama_cloud/types/data_source_create_component_one.py,sha256=
|
|
90
|
+
llama_cloud/types/data_source_create_component_one.py,sha256=rkVjFBxh1wA1BcsDWsJTUn4WW07gNyVrMqhZTYgQ_-c,871
|
|
90
91
|
llama_cloud/types/data_source_create_custom_metadata_value.py,sha256=ejSsQNbszYQaUWFh9r9kQpHf88qbhuRv1SI9J_MOSC0,215
|
|
91
92
|
llama_cloud/types/data_source_custom_metadata_value.py,sha256=pTZn5yjZYmuOhsLABFJOKZblZUkRqo1CqLAuP5tKji4,209
|
|
92
93
|
llama_cloud/types/data_source_definition.py,sha256=HlSlTxzYcQJOSo_2OSroAE8vAr-otDvTNBSEkA54vL8,1575
|
|
@@ -99,9 +100,10 @@ llama_cloud/types/eval_llm_model_data.py,sha256=H56AfhYsPA3eMKj1418_67tJ-5PsCDW3
|
|
|
99
100
|
llama_cloud/types/eval_question.py,sha256=0801Wo8Em5EnWV4DaCJKXGHWqG9urIgAS2mJekeGj3U,1604
|
|
100
101
|
llama_cloud/types/eval_question_create.py,sha256=oOwxkE5gPj8RAwgr3uuTHfTvLSXmYkkxNHqsT7oUHjI,1031
|
|
101
102
|
llama_cloud/types/eval_question_result.py,sha256=Y4RFXnA4YJTlzM6_NtLOi0rt6hRZoQbToiVJqm41ArY,2168
|
|
103
|
+
llama_cloud/types/extraction_job.py,sha256=Y8Vp8zmWEl3m9-hy0v2EIbwfm9c2b6oGTUWw3eip_II,1260
|
|
102
104
|
llama_cloud/types/extraction_result.py,sha256=tjVF9feYcjtbO3kTBPSrXES9ANj6_e_WT6scMCU6Kxc,1629
|
|
103
105
|
llama_cloud/types/extraction_result_data_value.py,sha256=YwtoAi0U511CVX4L91Nx0udAT4ejV6wn0AfJOyETt-o,199
|
|
104
|
-
llama_cloud/types/extraction_schema.py,sha256=
|
|
106
|
+
llama_cloud/types/extraction_schema.py,sha256=qRGTPPeadafI8oWgqJdDCEIHhZ_4uDCqt8Trz8XxulM,1678
|
|
105
107
|
llama_cloud/types/extraction_schema_data_schema_value.py,sha256=AYyfwqWIr6PrJsQKudzGYGmxC6yjUmBjxcUZpQyEc54,211
|
|
106
108
|
llama_cloud/types/file.py,sha256=VNA2Fe007m1Sox1Wwn7k7-OwfQta6LnWBDjlxCyzFt4,2009
|
|
107
109
|
llama_cloud/types/file_resource_info_value.py,sha256=g6T6ELeLK9jgcvX6r-EuAl_4JkwnyqdS0RRoabMReSU,195
|
|
@@ -113,7 +115,7 @@ llama_cloud/types/http_validation_error.py,sha256=iOSKYv0dJGjyIq8DAeLVKNJY-GiM1b
|
|
|
113
115
|
llama_cloud/types/hugging_face_inference_api_embedding.py,sha256=_nXn3KkPnnQiuspEUsBASHJOjeGYHuDUq1eBfXr6xwg,3315
|
|
114
116
|
llama_cloud/types/hugging_face_inference_api_embedding_token.py,sha256=A7-_YryBcsP4G5uRyJ9acao3XwX5-YC3NRndTeDAPj4,144
|
|
115
117
|
llama_cloud/types/json_node_parser.py,sha256=w7U_HbyxIDTEyJCdrk4j_8IUaqVsqEkpOJ6cq-0xz0A,1577
|
|
116
|
-
llama_cloud/types/llama_parse_parameters.py,sha256=
|
|
118
|
+
llama_cloud/types/llama_parse_parameters.py,sha256=0oiflzEbTRwxnAYZ3iaQdawFSys5BdhhA7YDzlg7IAs,2047
|
|
117
119
|
llama_cloud/types/llama_parse_supported_file_extensions.py,sha256=EAaw2iWIf08gY1JTg-t-VtZsuHIpNwpwCZPG1xXc2RA,10077
|
|
118
120
|
llama_cloud/types/llm.py,sha256=T-Uv5OO0E6Rscpn841302jx3c7G1uo9LJkdrGlNGk30,2238
|
|
119
121
|
llama_cloud/types/local_eval.py,sha256=77NY_rq4zr0V3iB-PXE7Om6LcjRrytLbQ55f_ovAF-M,2050
|
|
@@ -141,11 +143,11 @@ llama_cloud/types/parsing_job_json_result.py,sha256=vC0FNMklitCgcB0esthMfv_RbbyF
|
|
|
141
143
|
llama_cloud/types/parsing_job_markdown_result.py,sha256=E3-CVNFH1IMyuGs_xzYfYdNgq9AdnDshA_CxOTXz_dQ,1094
|
|
142
144
|
llama_cloud/types/parsing_job_text_result.py,sha256=1QZielAWXuzPFOgr_DWshXPjmbExAAgAHKAEYVQVtJ8,1082
|
|
143
145
|
llama_cloud/types/parsing_usage.py,sha256=Wy_c-kAFADDBZgDwqNglsJv_t7vcjOm-8EY32oZEYzU,995
|
|
144
|
-
llama_cloud/types/pipeline.py,sha256=
|
|
145
|
-
llama_cloud/types/pipeline_create.py,sha256=
|
|
146
|
+
llama_cloud/types/pipeline.py,sha256=h-Xo7HirFCvgiu7NaqSrUTM2wJKd9WXzcqnZ_j_kRkU,2661
|
|
147
|
+
llama_cloud/types/pipeline_create.py,sha256=PIa51SI_kvS5V0OGlumz_fabktiAC0z7L1qmRNH-sbE,2687
|
|
146
148
|
llama_cloud/types/pipeline_data_source.py,sha256=A3AlRzTD7zr1y-u5O5LFESqIupbbG-fqUndQgeYj77w,2062
|
|
147
149
|
llama_cloud/types/pipeline_data_source_component.py,sha256=Pk_K0Gv7xSWe5BKCdxz82EFd6AQDvZGN-6t3zg9h8NY,265
|
|
148
|
-
llama_cloud/types/pipeline_data_source_component_one.py,sha256=
|
|
150
|
+
llama_cloud/types/pipeline_data_source_component_one.py,sha256=sYaNaVl2gk-Clq2BCOKT2fUOGa_B7kcsw1P7aVdn-jA,873
|
|
149
151
|
llama_cloud/types/pipeline_data_source_create.py,sha256=dAxf2mHQTegDbev1MJnEpFEpOpgRhj2sCnnKtTit8tQ,1136
|
|
150
152
|
llama_cloud/types/pipeline_data_source_custom_metadata_value.py,sha256=8n3r60sxMx4_udW0yzJZxzyWeK6L3cc2-jLGZFW4EDs,217
|
|
151
153
|
llama_cloud/types/pipeline_deployment.py,sha256=3sWAIdeov3CYFZMCAWwCR46ShHA6XAzSqmc18qryHzM,1669
|
|
@@ -176,11 +178,12 @@ llama_cloud/types/text_node_relationships_value.py,sha256=qmXURTk1Xg7ZDzRSSV1uDE
|
|
|
176
178
|
llama_cloud/types/text_node_with_score.py,sha256=k-KYWO_mgJBvO6xUfOD5W6v1Ku9E586_HsvDoQbLfuQ,1229
|
|
177
179
|
llama_cloud/types/token_text_splitter.py,sha256=Mv8xBCvMXyYuQq1KInPe65O0YYCLWxs61pIbkBRfxG0,1883
|
|
178
180
|
llama_cloud/types/transformation_category_names.py,sha256=0xjYe-mDW9OKbTGqL5fSbTvqsfrG4LDu_stW_ubVLl4,582
|
|
179
|
-
llama_cloud/types/user_organization.py,sha256=
|
|
181
|
+
llama_cloud/types/user_organization.py,sha256=fLgTKr1phJ4EdhTXmr5086bRy9RTAUy4km6mQz_jgRI,1964
|
|
180
182
|
llama_cloud/types/user_organization_create.py,sha256=YESlfcI64710OFdQzgGD4a7aItgBwcIKdM1xFPs1Szw,1209
|
|
183
|
+
llama_cloud/types/user_organization_delete.py,sha256=Z8RSRXc0AGAuGxv6eQPC2S1XIdRfNCXBggfEefgPseM,1209
|
|
181
184
|
llama_cloud/types/validation_error.py,sha256=yZDLtjUHDY5w82Ra6CW0H9sLAr18R0RY1UNgJKR72DQ,1084
|
|
182
185
|
llama_cloud/types/validation_error_loc_item.py,sha256=LAtjCHIllWRBFXvAZ5QZpp7CPXjdtN9EB7HrLVo6EP0,128
|
|
183
|
-
llama_cloud-0.0.
|
|
184
|
-
llama_cloud-0.0.
|
|
185
|
-
llama_cloud-0.0.
|
|
186
|
-
llama_cloud-0.0.
|
|
186
|
+
llama_cloud-0.0.10.dist-info/LICENSE,sha256=_iNqtPcw1Ue7dZKwOwgPtbegMUkWVy15hC7bffAdNmY,1067
|
|
187
|
+
llama_cloud-0.0.10.dist-info/METADATA,sha256=Lir2q2uYKl_qOx9F3F66PJT2dUOpNz1T_QKT4-MOC_g,751
|
|
188
|
+
llama_cloud-0.0.10.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
189
|
+
llama_cloud-0.0.10.dist-info/RECORD,,
|
|
File without changes
|