llama-cloud 0.0.8__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 +22 -0
- llama_cloud/client.py +3 -0
- llama_cloud/resources/__init__.py +13 -1
- llama_cloud/resources/data_sinks/client.py +40 -8
- llama_cloud/resources/data_sources/client.py +48 -12
- llama_cloud/resources/data_sources/types/data_source_update_component_one.py +4 -0
- llama_cloud/resources/extraction/client.py +55 -38
- llama_cloud/resources/organizations/__init__.py +2 -0
- llama_cloud/resources/organizations/client.py +867 -0
- llama_cloud/resources/parsing/client.py +104 -0
- llama_cloud/resources/pipelines/client.py +358 -24
- llama_cloud/resources/projects/client.py +28 -8
- llama_cloud/types/__init__.py +20 -0
- llama_cloud/types/chat_data.py +38 -0
- 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/cloud_jira_data_source.py +43 -0
- llama_cloud/types/cloud_sharepoint_data_source.py +1 -0
- llama_cloud/types/configurable_data_source_names.py +8 -0
- llama_cloud/types/data_source_component_one.py +4 -0
- llama_cloud/types/data_source_create_component_one.py +4 -0
- llama_cloud/types/eval_dataset_job_record.py +1 -0
- llama_cloud/types/extraction_job.py +35 -0
- llama_cloud/types/extraction_schema.py +1 -2
- llama_cloud/types/llama_parse_parameters.py +5 -0
- llama_cloud/types/organization.py +38 -0
- llama_cloud/types/organization_create.py +35 -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 +4 -0
- llama_cloud/types/preset_retrieval_params.py +5 -0
- llama_cloud/types/project.py +1 -1
- llama_cloud/types/retrieval_mode.py +29 -0
- llama_cloud/types/user_organization.py +49 -0
- llama_cloud/types/user_organization_create.py +36 -0
- llama_cloud/types/user_organization_delete.py +36 -0
- {llama_cloud-0.0.8.dist-info → llama_cloud-0.0.10.dist-info}/METADATA +2 -1
- {llama_cloud-0.0.8.dist-info → llama_cloud-0.0.10.dist-info}/RECORD +40 -28
- {llama_cloud-0.0.8.dist-info → llama_cloud-0.0.10.dist-info}/WHEEL +1 -1
- {llama_cloud-0.0.8.dist-info → llama_cloud-0.0.10.dist-info}/LICENSE +0 -0
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
import enum
|
|
4
|
+
import typing
|
|
5
|
+
|
|
6
|
+
T_Result = typing.TypeVar("T_Result")
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class RetrievalMode(str, enum.Enum):
|
|
10
|
+
"""
|
|
11
|
+
An enumeration.
|
|
12
|
+
"""
|
|
13
|
+
|
|
14
|
+
CHUNKS = "chunks"
|
|
15
|
+
FILES_VIA_METADATA = "files_via_metadata"
|
|
16
|
+
FILES_VIA_CONTENT = "files_via_content"
|
|
17
|
+
|
|
18
|
+
def visit(
|
|
19
|
+
self,
|
|
20
|
+
chunks: typing.Callable[[], T_Result],
|
|
21
|
+
files_via_metadata: typing.Callable[[], T_Result],
|
|
22
|
+
files_via_content: typing.Callable[[], T_Result],
|
|
23
|
+
) -> T_Result:
|
|
24
|
+
if self is RetrievalMode.CHUNKS:
|
|
25
|
+
return chunks()
|
|
26
|
+
if self is RetrievalMode.FILES_VIA_METADATA:
|
|
27
|
+
return files_via_metadata()
|
|
28
|
+
if self is RetrievalMode.FILES_VIA_CONTENT:
|
|
29
|
+
return files_via_content()
|
|
@@ -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
|
+
|
|
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 UserOrganization(pydantic.BaseModel):
|
|
18
|
+
"""
|
|
19
|
+
Schema for a user's membership to an organization.
|
|
20
|
+
"""
|
|
21
|
+
|
|
22
|
+
id: str = pydantic.Field(description="Unique identifier")
|
|
23
|
+
created_at: typing.Optional[dt.datetime] = pydantic.Field(description="Creation datetime")
|
|
24
|
+
updated_at: typing.Optional[dt.datetime] = pydantic.Field(description="Update datetime")
|
|
25
|
+
email: str = pydantic.Field(description="The user's email address.")
|
|
26
|
+
user_id: typing.Optional[str] = pydantic.Field(description="The user's ID.")
|
|
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
|
+
)
|
|
37
|
+
|
|
38
|
+
def json(self, **kwargs: typing.Any) -> str:
|
|
39
|
+
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
|
40
|
+
return super().json(**kwargs_with_defaults)
|
|
41
|
+
|
|
42
|
+
def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
|
|
43
|
+
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
|
44
|
+
return super().dict(**kwargs_with_defaults)
|
|
45
|
+
|
|
46
|
+
class Config:
|
|
47
|
+
frozen = True
|
|
48
|
+
smart_union = True
|
|
49
|
+
json_encoders = {dt.datetime: serialize_datetime}
|
|
@@ -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 UserOrganizationCreate(pydantic.BaseModel):
|
|
18
|
+
"""
|
|
19
|
+
Schema for creating 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}
|
|
@@ -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,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: llama-cloud
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.10
|
|
4
4
|
Summary:
|
|
5
5
|
Author: Logan Markewich
|
|
6
6
|
Author-email: logan@runllama.ai
|
|
@@ -10,6 +10,7 @@ Classifier: Programming Language :: Python :: 3.8
|
|
|
10
10
|
Classifier: Programming Language :: Python :: 3.9
|
|
11
11
|
Classifier: Programming Language :: Python :: 3.10
|
|
12
12
|
Classifier: Programming Language :: Python :: 3.11
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
13
14
|
Requires-Dist: httpx (>=0.20.0)
|
|
14
15
|
Requires-Dist: pydantic (>=1.10)
|
|
15
16
|
Description-Content-Type: text/markdown
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
llama_cloud/__init__.py,sha256=
|
|
2
|
-
llama_cloud/client.py,sha256=
|
|
1
|
+
llama_cloud/__init__.py,sha256=iwA_KYHvKDW9C5OqOs1DW4UOBpV2sG2Jqfgf2ihV8wc,8525
|
|
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
|
|
5
5
|
llama_cloud/core/client_wrapper.py,sha256=xmj0jCdQ0ySzbSqHUWOkpRRy069y74I_HuXkWltcsVM,1507
|
|
@@ -9,62 +9,67 @@ 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=DCmiYR81K2DZKpNUZDPG5Tb2DcDNNZf2NbOcoB1_Ndw,1105
|
|
13
13
|
llama_cloud/resources/component_definitions/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
14
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=upViKGrwZfRM-BZqMjfWEaEeI8YxThVgr4P9SCH065E,20431
|
|
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=oKhxFbWP2ag1HYWf2xlp-b8b65_3q7EDj_dpvieUb58,761
|
|
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=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
|
|
33
33
|
llama_cloud/resources/files/client.py,sha256=pU7ugpqW4dAXJycVg3KxUI82ixiH6vZtcwAaHyPdsDA,22186
|
|
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
|
+
llama_cloud/resources/organizations/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
37
|
+
llama_cloud/resources/organizations/client.py,sha256=akn_3sytJW_VhuLVBbP0TKiKKbBGuuAPDtGVIbW4kdA,34167
|
|
36
38
|
llama_cloud/resources/parsing/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
37
|
-
llama_cloud/resources/parsing/client.py,sha256=
|
|
39
|
+
llama_cloud/resources/parsing/client.py,sha256=fLNVNa945yP76sTf6NdSm5ikifSFFrjxxHXy0vwNBUc,40450
|
|
38
40
|
llama_cloud/resources/pipelines/__init__.py,sha256=H7yaFIN62vjuhU3TOKzzuf8qpxZRgw1xVa-eyig-2YU,175
|
|
39
|
-
llama_cloud/resources/pipelines/client.py,sha256=
|
|
41
|
+
llama_cloud/resources/pipelines/client.py,sha256=HlWhqcZUKosmkhBuDgj-ocRKGpsN4tJRHa3KnKbaZZY,125040
|
|
40
42
|
llama_cloud/resources/pipelines/types/__init__.py,sha256=xuT4OBPLrRfEe-E3UVdJvRjl9jTp7tNBK_YzZBb6Kj8,212
|
|
41
43
|
llama_cloud/resources/pipelines/types/pipeline_file_update_custom_metadata_value.py,sha256=trI48WLxPcAqV9207Q6-3cj1nl4EGlZpw7En56ZsPgg,217
|
|
42
44
|
llama_cloud/resources/projects/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
43
|
-
llama_cloud/resources/projects/client.py,sha256
|
|
44
|
-
llama_cloud/types/__init__.py,sha256=
|
|
45
|
+
llama_cloud/resources/projects/client.py,sha256=nK81HdhGbWY1rh8rSEsKzRuvyvCQ-IkhLHIPDqEqVFU,47754
|
|
46
|
+
llama_cloud/types/__init__.py,sha256=LXj40Rz1FVHxAyWgl2Wp7FcleeQq_sHeaz1vYlto4AQ,11634
|
|
45
47
|
llama_cloud/types/azure_open_ai_embedding.py,sha256=-9LzRDNcxhRvEshA8SaI9zFMTpHLXJ34iMnpIVk88Cc,3590
|
|
46
48
|
llama_cloud/types/base.py,sha256=cn_Zn61yLMDCMm1iZTPvKILSRlqRzOqZtSYyYBY5dIE,938
|
|
47
49
|
llama_cloud/types/base_prompt_template.py,sha256=GO9k4EDVMf3gRQIA4bVfXqgIMKnKTXhi1JlGvhqXDRY,1576
|
|
48
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
|
|
49
52
|
llama_cloud/types/chat_message.py,sha256=DNzACxFUJxIHHo74j0e0DSz_1BBgykqfMPekiGCheFo,1168
|
|
50
53
|
llama_cloud/types/cloud_az_storage_blob_data_source.py,sha256=SzwYuN3evb6VxW6uHjPeTZFHXYg_3iq3TS-BK6BLdog,1758
|
|
51
|
-
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
|
|
52
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
|
|
53
57
|
llama_cloud/types/cloud_document.py,sha256=VJBsYh0OLThzUYfQQE2DZjaMLoyjxCWda8o_ePfGj5Y,1201
|
|
54
58
|
llama_cloud/types/cloud_document_create.py,sha256=F_Zy1Au9Ta1D19Zy1DBmnKIyqqE2TUpzuakHSKn0C-M,1224
|
|
59
|
+
llama_cloud/types/cloud_jira_data_source.py,sha256=chvMhR253mgLAslxvCsS7T7UBM97i0XFjjtx6pfv8Ts,1732
|
|
55
60
|
llama_cloud/types/cloud_notion_page_data_source.py,sha256=XMbp5dbcR3uTwamV8JlXYk_2UteNJUbvH43caVE0A48,1397
|
|
56
61
|
llama_cloud/types/cloud_one_drive_data_source.py,sha256=anI5y6si0PtrEiN9kTxF0UplDFHr-_yhL373fToUkdg,1686
|
|
57
62
|
llama_cloud/types/cloud_pinecone_vector_store.py,sha256=UyCFAawIDnmPAmTcWjrFCKatypqc4cC4LpuAUOsyzUc,1647
|
|
58
63
|
llama_cloud/types/cloud_postgres_vector_store.py,sha256=H2-yD-j7SPGk6G6pt28ZA778d6_jyBsO2QOPFd7-lKY,1364
|
|
59
64
|
llama_cloud/types/cloud_qdrant_vector_store.py,sha256=F-gjNArzwLWmqgPcC-ZxRqSrhTFZbv5kqmIXmnLPB5o,1718
|
|
60
65
|
llama_cloud/types/cloud_s_3_data_source.py,sha256=bRrHinGoXt89Q2aMp8VSBYrJ5MNYQCAB0q6esYo89ok,1715
|
|
61
|
-
llama_cloud/types/cloud_sharepoint_data_source.py,sha256=
|
|
66
|
+
llama_cloud/types/cloud_sharepoint_data_source.py,sha256=xgsu17Dg7cdAZO9HSwc6ivncAiMmgoSNFGRGnxJk_BM,1797
|
|
62
67
|
llama_cloud/types/cloud_slack_data_source.py,sha256=nj6atJkUYfHauWDBXol3WcDxPhDqsf3qAl9vKSulKQE,1701
|
|
63
68
|
llama_cloud/types/cloud_weaviate_vector_store.py,sha256=D9ZKG9kpZyoncNCxD49e3RURYrI5tieZroPcTaJGE20,1309
|
|
64
69
|
llama_cloud/types/code_splitter.py,sha256=TMfGeunLMJagX3lvxr76nhosD48Reu4CexVzpU_03Rg,1971
|
|
65
70
|
llama_cloud/types/cohere_embedding.py,sha256=qpF6fMm5z5YGc47RfLUM9XPsHbYNRlhSlrBe-9OotHA,1969
|
|
66
71
|
llama_cloud/types/configurable_data_sink_names.py,sha256=fBTSuuVsKdxguFI03_aA8CDQxV0NERsse6fiw8Dq7A4,1237
|
|
67
|
-
llama_cloud/types/configurable_data_source_names.py,sha256=
|
|
72
|
+
llama_cloud/types/configurable_data_source_names.py,sha256=NrkTdTVUEjb4nrLlmZP2Piko70jToGRAxR2MPs3kEzA,1689
|
|
68
73
|
llama_cloud/types/configurable_transformation_definition.py,sha256=LDOhI5IDxlLDWM_p_xwCFM7qq1y-aGA8UxN7dnplDlU,1886
|
|
69
74
|
llama_cloud/types/configurable_transformation_names.py,sha256=-cF3wGNtTM6RCoOnm9YDBgUGnHHLXw_eyq6GSSB2Tpk,3402
|
|
70
75
|
llama_cloud/types/configured_transformation_item.py,sha256=9caK5ZOKgGCZc6ynJJIWwpxpScKHOHkZwHFlsBy-Fog,1826
|
|
@@ -79,25 +84,26 @@ llama_cloud/types/data_sink_create_component_one.py,sha256=edXXfp3kt8puD0ChIW7wm
|
|
|
79
84
|
llama_cloud/types/data_sink_definition.py,sha256=5ve_pq02s8szc34-wWobMe6BAPj_c7e9n9FFsfDqEQ0,1561
|
|
80
85
|
llama_cloud/types/data_source.py,sha256=H98i0VlmB_eUczmUuhbAVG7uP1wcLLlE2gSKQWLTy7w,1830
|
|
81
86
|
llama_cloud/types/data_source_component.py,sha256=xx1-6EJUtfr2A6BgkOtFM4w5I_3zSHqO1qnRRHSNcTc,232
|
|
82
|
-
llama_cloud/types/data_source_component_one.py,sha256=
|
|
87
|
+
llama_cloud/types/data_source_component_one.py,sha256=Z4Z2aEW6P8p_OZ29in5c9nQEEzWoLGD2vBKJ6DMJjMA,865
|
|
83
88
|
llama_cloud/types/data_source_create.py,sha256=siumw3f5sZCVVDZgYDLpy7YaeYZRMTOPqmFjL6GjyK0,1613
|
|
84
89
|
llama_cloud/types/data_source_create_component.py,sha256=xY1zUoKBH6LRwka54a1w5zFrB3vUYIiEGhBZv7yi7Oc,257
|
|
85
|
-
llama_cloud/types/data_source_create_component_one.py,sha256
|
|
90
|
+
llama_cloud/types/data_source_create_component_one.py,sha256=rkVjFBxh1wA1BcsDWsJTUn4WW07gNyVrMqhZTYgQ_-c,871
|
|
86
91
|
llama_cloud/types/data_source_create_custom_metadata_value.py,sha256=ejSsQNbszYQaUWFh9r9kQpHf88qbhuRv1SI9J_MOSC0,215
|
|
87
92
|
llama_cloud/types/data_source_custom_metadata_value.py,sha256=pTZn5yjZYmuOhsLABFJOKZblZUkRqo1CqLAuP5tKji4,209
|
|
88
93
|
llama_cloud/types/data_source_definition.py,sha256=HlSlTxzYcQJOSo_2OSroAE8vAr-otDvTNBSEkA54vL8,1575
|
|
89
94
|
llama_cloud/types/eval_dataset.py,sha256=Uav-YJqAvyzCp1j2XavzzVLV975uki71beIBLkCt8LY,1408
|
|
90
95
|
llama_cloud/types/eval_dataset_job_params.py,sha256=vcXLJWO581uigNvGAurPDgMeEFtQURWucLF5pemdeS0,1343
|
|
91
|
-
llama_cloud/types/eval_dataset_job_record.py,sha256=
|
|
96
|
+
llama_cloud/types/eval_dataset_job_record.py,sha256=mUBpT2CI1IYYxwvC7S3mKu5GhBKXzVR5btDLoGcXqSg,2763
|
|
92
97
|
llama_cloud/types/eval_execution_params.py,sha256=TkdGGLfBIS2AeeUZtQBqC-Ln7_xPsU44JbN0yOBuP3Q,1382
|
|
93
98
|
llama_cloud/types/eval_execution_params_override.py,sha256=yhYHQvtk50FW_3oOFpOU-Swuh0MhBTY2-GNsXVWZJNY,1399
|
|
94
99
|
llama_cloud/types/eval_llm_model_data.py,sha256=H56AfhYsPA3eMKj1418_67tJ-5PsCDW36-6Zyif-f3M,1162
|
|
95
100
|
llama_cloud/types/eval_question.py,sha256=0801Wo8Em5EnWV4DaCJKXGHWqG9urIgAS2mJekeGj3U,1604
|
|
96
101
|
llama_cloud/types/eval_question_create.py,sha256=oOwxkE5gPj8RAwgr3uuTHfTvLSXmYkkxNHqsT7oUHjI,1031
|
|
97
102
|
llama_cloud/types/eval_question_result.py,sha256=Y4RFXnA4YJTlzM6_NtLOi0rt6hRZoQbToiVJqm41ArY,2168
|
|
103
|
+
llama_cloud/types/extraction_job.py,sha256=Y8Vp8zmWEl3m9-hy0v2EIbwfm9c2b6oGTUWw3eip_II,1260
|
|
98
104
|
llama_cloud/types/extraction_result.py,sha256=tjVF9feYcjtbO3kTBPSrXES9ANj6_e_WT6scMCU6Kxc,1629
|
|
99
105
|
llama_cloud/types/extraction_result_data_value.py,sha256=YwtoAi0U511CVX4L91Nx0udAT4ejV6wn0AfJOyETt-o,199
|
|
100
|
-
llama_cloud/types/extraction_schema.py,sha256=
|
|
106
|
+
llama_cloud/types/extraction_schema.py,sha256=qRGTPPeadafI8oWgqJdDCEIHhZ_4uDCqt8Trz8XxulM,1678
|
|
101
107
|
llama_cloud/types/extraction_schema_data_schema_value.py,sha256=AYyfwqWIr6PrJsQKudzGYGmxC6yjUmBjxcUZpQyEc54,211
|
|
102
108
|
llama_cloud/types/file.py,sha256=VNA2Fe007m1Sox1Wwn7k7-OwfQta6LnWBDjlxCyzFt4,2009
|
|
103
109
|
llama_cloud/types/file_resource_info_value.py,sha256=g6T6ELeLK9jgcvX6r-EuAl_4JkwnyqdS0RRoabMReSU,195
|
|
@@ -109,7 +115,7 @@ llama_cloud/types/http_validation_error.py,sha256=iOSKYv0dJGjyIq8DAeLVKNJY-GiM1b
|
|
|
109
115
|
llama_cloud/types/hugging_face_inference_api_embedding.py,sha256=_nXn3KkPnnQiuspEUsBASHJOjeGYHuDUq1eBfXr6xwg,3315
|
|
110
116
|
llama_cloud/types/hugging_face_inference_api_embedding_token.py,sha256=A7-_YryBcsP4G5uRyJ9acao3XwX5-YC3NRndTeDAPj4,144
|
|
111
117
|
llama_cloud/types/json_node_parser.py,sha256=w7U_HbyxIDTEyJCdrk4j_8IUaqVsqEkpOJ6cq-0xz0A,1577
|
|
112
|
-
llama_cloud/types/llama_parse_parameters.py,sha256=
|
|
118
|
+
llama_cloud/types/llama_parse_parameters.py,sha256=0oiflzEbTRwxnAYZ3iaQdawFSys5BdhhA7YDzlg7IAs,2047
|
|
113
119
|
llama_cloud/types/llama_parse_supported_file_extensions.py,sha256=EAaw2iWIf08gY1JTg-t-VtZsuHIpNwpwCZPG1xXc2RA,10077
|
|
114
120
|
llama_cloud/types/llm.py,sha256=T-Uv5OO0E6Rscpn841302jx3c7G1uo9LJkdrGlNGk30,2238
|
|
115
121
|
llama_cloud/types/local_eval.py,sha256=77NY_rq4zr0V3iB-PXE7Om6LcjRrytLbQ55f_ovAF-M,2050
|
|
@@ -128,6 +134,8 @@ llama_cloud/types/metric_result.py,sha256=jLHgHnU3Gj1rPqwYSzBZd2bnF-yGiHJj4Gi6uR
|
|
|
128
134
|
llama_cloud/types/node_parser.py,sha256=LlM3qsrLbFlAd4SkhAGJjkEJXk04D0faKhQNXWfLQ00,1364
|
|
129
135
|
llama_cloud/types/object_type.py,sha256=-7wzQjscpmpUdM8vOIzq1EfAMhY9pS3wIaYIo6GndHQ,736
|
|
130
136
|
llama_cloud/types/open_ai_embedding.py,sha256=vAiDcIV129M7YT5hI99A2kheN42793m4kEJDu7fUKQg,3217
|
|
137
|
+
llama_cloud/types/organization.py,sha256=6mVWJDaDxrnMHuufnpQEhgWTPZW9bhsjGFtgtf4VyJg,1321
|
|
138
|
+
llama_cloud/types/organization_create.py,sha256=hUXRwArIx_0D_lilpL7z-B0oJJ5yEX8Sbu2xqfH_9so,1086
|
|
131
139
|
llama_cloud/types/parser_languages.py,sha256=Ps3IlaSt6tyxEI657N3-vZL96r2puk8wsf31cWnO-SI,10840
|
|
132
140
|
llama_cloud/types/parsing_history_item.py,sha256=_MVzf43t84PbmjOzsMLZ_NBoyiisigLWz-fr0ZxU63g,1183
|
|
133
141
|
llama_cloud/types/parsing_job.py,sha256=Kay6QocdUSdg3ShMKD8jEuLdtAdZbmaiPf4LTml4Wxc,1016
|
|
@@ -135,11 +143,11 @@ llama_cloud/types/parsing_job_json_result.py,sha256=vC0FNMklitCgcB0esthMfv_RbbyF
|
|
|
135
143
|
llama_cloud/types/parsing_job_markdown_result.py,sha256=E3-CVNFH1IMyuGs_xzYfYdNgq9AdnDshA_CxOTXz_dQ,1094
|
|
136
144
|
llama_cloud/types/parsing_job_text_result.py,sha256=1QZielAWXuzPFOgr_DWshXPjmbExAAgAHKAEYVQVtJ8,1082
|
|
137
145
|
llama_cloud/types/parsing_usage.py,sha256=Wy_c-kAFADDBZgDwqNglsJv_t7vcjOm-8EY32oZEYzU,995
|
|
138
|
-
llama_cloud/types/pipeline.py,sha256=
|
|
139
|
-
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
|
|
140
148
|
llama_cloud/types/pipeline_data_source.py,sha256=A3AlRzTD7zr1y-u5O5LFESqIupbbG-fqUndQgeYj77w,2062
|
|
141
149
|
llama_cloud/types/pipeline_data_source_component.py,sha256=Pk_K0Gv7xSWe5BKCdxz82EFd6AQDvZGN-6t3zg9h8NY,265
|
|
142
|
-
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
|
|
143
151
|
llama_cloud/types/pipeline_data_source_create.py,sha256=dAxf2mHQTegDbev1MJnEpFEpOpgRhj2sCnnKtTit8tQ,1136
|
|
144
152
|
llama_cloud/types/pipeline_data_source_custom_metadata_value.py,sha256=8n3r60sxMx4_udW0yzJZxzyWeK6L3cc2-jLGZFW4EDs,217
|
|
145
153
|
llama_cloud/types/pipeline_deployment.py,sha256=3sWAIdeov3CYFZMCAWwCR46ShHA6XAzSqmc18qryHzM,1669
|
|
@@ -150,14 +158,15 @@ llama_cloud/types/pipeline_file_custom_metadata_value.py,sha256=ClFphYDNlHxeyLF5
|
|
|
150
158
|
llama_cloud/types/pipeline_file_resource_info_value.py,sha256=s3uFGQNwlUEr-X4TJZkW_kMBvX3h1sXRJoYlJRvHSDc,209
|
|
151
159
|
llama_cloud/types/pipeline_type.py,sha256=tTqrhxHP5xd7W2dQGD0e5FOv886nwJssyaVlXpWrtRo,551
|
|
152
160
|
llama_cloud/types/pooling.py,sha256=5Fr6c8rx9SDWwWzEvD78suob2d79ktodUtLUAUHMbP8,651
|
|
153
|
-
llama_cloud/types/preset_retrieval_params.py,sha256=
|
|
161
|
+
llama_cloud/types/preset_retrieval_params.py,sha256=Tixn6xkbAIvRyNBZk8qquHeyR_PhsjuO9w_uipNKsgw,2246
|
|
154
162
|
llama_cloud/types/presigned_url.py,sha256=pUOIs2hFESZCuiqMsnn7pB6dgh_XO6w7vAV4OhKrq94,1345
|
|
155
|
-
llama_cloud/types/project.py,sha256
|
|
163
|
+
llama_cloud/types/project.py,sha256=MbaT01ewS3mio4Bd6XY5SS-2dTyRyMqM-g5XG7Ly0YA,1539
|
|
156
164
|
llama_cloud/types/project_create.py,sha256=GxGmsXGJM-cHrvPFLktEkj9JtNsSdFae7-HPZFB4er0,1014
|
|
157
165
|
llama_cloud/types/prompt_mixin_prompts.py,sha256=HRJlfFXFDOaGjqkB4prCDuz2fgwXhUi5I5roGykjRmU,1381
|
|
158
166
|
llama_cloud/types/prompt_spec.py,sha256=dCJOp3Gn5Y7EmC3iDIH4mM_fBtCMCwCPwPRgzyDY-q0,1516
|
|
159
167
|
llama_cloud/types/pydantic_program_mode.py,sha256=QfvpqR7TqyNuOxo78Sr58VOu7KDSBrHJM4XXBB0F5z0,1202
|
|
160
168
|
llama_cloud/types/related_node_info.py,sha256=YqdYiBxtj8njp-UiLMaTBqoYKTTCEu0-DBta4ZnFVo4,1241
|
|
169
|
+
llama_cloud/types/retrieval_mode.py,sha256=lVfSVelJCKMK1Da4yx7B9m9y6Rj35SGKTx-3Z2UOAPE,784
|
|
161
170
|
llama_cloud/types/retrieve_results.py,sha256=ysSEHTHKBmASTZchcfmD42YAAOoB0KJOyqsYokfTAmE,1523
|
|
162
171
|
llama_cloud/types/sentence_splitter.py,sha256=mkP5vQsXnLhn6iZZN4MrAfVoFdBYhZTIHoA5AewXwZY,2213
|
|
163
172
|
llama_cloud/types/simple_file_node_parser.py,sha256=C0B0eVB7TOKpmX_lMvUvCRzk4Be3R_gh5eOtQvLOnVY,1676
|
|
@@ -169,9 +178,12 @@ llama_cloud/types/text_node_relationships_value.py,sha256=qmXURTk1Xg7ZDzRSSV1uDE
|
|
|
169
178
|
llama_cloud/types/text_node_with_score.py,sha256=k-KYWO_mgJBvO6xUfOD5W6v1Ku9E586_HsvDoQbLfuQ,1229
|
|
170
179
|
llama_cloud/types/token_text_splitter.py,sha256=Mv8xBCvMXyYuQq1KInPe65O0YYCLWxs61pIbkBRfxG0,1883
|
|
171
180
|
llama_cloud/types/transformation_category_names.py,sha256=0xjYe-mDW9OKbTGqL5fSbTvqsfrG4LDu_stW_ubVLl4,582
|
|
181
|
+
llama_cloud/types/user_organization.py,sha256=fLgTKr1phJ4EdhTXmr5086bRy9RTAUy4km6mQz_jgRI,1964
|
|
182
|
+
llama_cloud/types/user_organization_create.py,sha256=YESlfcI64710OFdQzgGD4a7aItgBwcIKdM1xFPs1Szw,1209
|
|
183
|
+
llama_cloud/types/user_organization_delete.py,sha256=Z8RSRXc0AGAuGxv6eQPC2S1XIdRfNCXBggfEefgPseM,1209
|
|
172
184
|
llama_cloud/types/validation_error.py,sha256=yZDLtjUHDY5w82Ra6CW0H9sLAr18R0RY1UNgJKR72DQ,1084
|
|
173
185
|
llama_cloud/types/validation_error_loc_item.py,sha256=LAtjCHIllWRBFXvAZ5QZpp7CPXjdtN9EB7HrLVo6EP0,128
|
|
174
|
-
llama_cloud-0.0.
|
|
175
|
-
llama_cloud-0.0.
|
|
176
|
-
llama_cloud-0.0.
|
|
177
|
-
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
|