llama-cloud 0.0.16__py3-none-any.whl → 0.0.17__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 +2 -0
- llama_cloud/resources/data_sources/types/data_source_update_component_one.py +2 -0
- llama_cloud/types/__init__.py +2 -0
- llama_cloud/types/cloud_google_drive_data_source.py +39 -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/pipeline_data_source_component_one.py +2 -0
- {llama_cloud-0.0.16.dist-info → llama_cloud-0.0.17.dist-info}/METADATA +1 -1
- {llama_cloud-0.0.16.dist-info → llama_cloud-0.0.17.dist-info}/RECORD +12 -11
- {llama_cloud-0.0.16.dist-info → llama_cloud-0.0.17.dist-info}/LICENSE +0 -0
- {llama_cloud-0.0.16.dist-info → llama_cloud-0.0.17.dist-info}/WHEEL +0 -0
llama_cloud/__init__.py
CHANGED
|
@@ -31,6 +31,7 @@ from .types import (
|
|
|
31
31
|
CloudConfluenceDataSource,
|
|
32
32
|
CloudDocument,
|
|
33
33
|
CloudDocumentCreate,
|
|
34
|
+
CloudGoogleDriveDataSource,
|
|
34
35
|
CloudJiraDataSource,
|
|
35
36
|
CloudMilvusVectorStore,
|
|
36
37
|
CloudMongoDbAtlasVectorSearch,
|
|
@@ -274,6 +275,7 @@ __all__ = [
|
|
|
274
275
|
"CloudConfluenceDataSource",
|
|
275
276
|
"CloudDocument",
|
|
276
277
|
"CloudDocumentCreate",
|
|
278
|
+
"CloudGoogleDriveDataSource",
|
|
277
279
|
"CloudJiraDataSource",
|
|
278
280
|
"CloudMilvusVectorStore",
|
|
279
281
|
"CloudMongoDbAtlasVectorSearch",
|
|
@@ -5,6 +5,7 @@ import typing
|
|
|
5
5
|
from ....types.cloud_az_storage_blob_data_source import CloudAzStorageBlobDataSource
|
|
6
6
|
from ....types.cloud_box_data_source import CloudBoxDataSource
|
|
7
7
|
from ....types.cloud_confluence_data_source import CloudConfluenceDataSource
|
|
8
|
+
from ....types.cloud_google_drive_data_source import CloudGoogleDriveDataSource
|
|
8
9
|
from ....types.cloud_jira_data_source import CloudJiraDataSource
|
|
9
10
|
from ....types.cloud_notion_page_data_source import CloudNotionPageDataSource
|
|
10
11
|
from ....types.cloud_one_drive_data_source import CloudOneDriveDataSource
|
|
@@ -15,6 +16,7 @@ from ....types.cloud_slack_data_source import CloudSlackDataSource
|
|
|
15
16
|
DataSourceUpdateComponentOne = typing.Union[
|
|
16
17
|
CloudS3DataSource,
|
|
17
18
|
CloudAzStorageBlobDataSource,
|
|
19
|
+
CloudGoogleDriveDataSource,
|
|
18
20
|
CloudOneDriveDataSource,
|
|
19
21
|
CloudSharepointDataSource,
|
|
20
22
|
CloudSlackDataSource,
|
llama_cloud/types/__init__.py
CHANGED
|
@@ -34,6 +34,7 @@ from .cloud_chroma_vector_store import CloudChromaVectorStore
|
|
|
34
34
|
from .cloud_confluence_data_source import CloudConfluenceDataSource
|
|
35
35
|
from .cloud_document import CloudDocument
|
|
36
36
|
from .cloud_document_create import CloudDocumentCreate
|
|
37
|
+
from .cloud_google_drive_data_source import CloudGoogleDriveDataSource
|
|
37
38
|
from .cloud_jira_data_source import CloudJiraDataSource
|
|
38
39
|
from .cloud_milvus_vector_store import CloudMilvusVectorStore
|
|
39
40
|
from .cloud_mongo_db_atlas_vector_search import CloudMongoDbAtlasVectorSearch
|
|
@@ -249,6 +250,7 @@ __all__ = [
|
|
|
249
250
|
"CloudConfluenceDataSource",
|
|
250
251
|
"CloudDocument",
|
|
251
252
|
"CloudDocumentCreate",
|
|
253
|
+
"CloudGoogleDriveDataSource",
|
|
252
254
|
"CloudJiraDataSource",
|
|
253
255
|
"CloudMilvusVectorStore",
|
|
254
256
|
"CloudMongoDbAtlasVectorSearch",
|
|
@@ -0,0 +1,39 @@
|
|
|
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 CloudGoogleDriveDataSource(pydantic.BaseModel):
|
|
18
|
+
"""
|
|
19
|
+
Base component object to capture class names.
|
|
20
|
+
"""
|
|
21
|
+
|
|
22
|
+
folder_id: str = pydantic.Field(description="The ID of the Google Drive folder to read from.")
|
|
23
|
+
service_account_key: typing.Dict[str, typing.Any] = pydantic.Field(
|
|
24
|
+
description="The service account key JSON to use for authentication."
|
|
25
|
+
)
|
|
26
|
+
class_name: typing.Optional[str]
|
|
27
|
+
|
|
28
|
+
def json(self, **kwargs: typing.Any) -> str:
|
|
29
|
+
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
|
30
|
+
return super().json(**kwargs_with_defaults)
|
|
31
|
+
|
|
32
|
+
def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
|
|
33
|
+
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
|
34
|
+
return super().dict(**kwargs_with_defaults)
|
|
35
|
+
|
|
36
|
+
class Config:
|
|
37
|
+
frozen = True
|
|
38
|
+
smart_union = True
|
|
39
|
+
json_encoders = {dt.datetime: serialize_datetime}
|
|
@@ -13,6 +13,7 @@ class ConfigurableDataSourceNames(str, enum.Enum):
|
|
|
13
13
|
|
|
14
14
|
S_3 = "S3"
|
|
15
15
|
AZURE_STORAGE_BLOB = "AZURE_STORAGE_BLOB"
|
|
16
|
+
GOOGLE_DRIVE = "GOOGLE_DRIVE"
|
|
16
17
|
MICROSOFT_ONEDRIVE = "MICROSOFT_ONEDRIVE"
|
|
17
18
|
MICROSOFT_SHAREPOINT = "MICROSOFT_SHAREPOINT"
|
|
18
19
|
SLACK = "SLACK"
|
|
@@ -25,6 +26,7 @@ class ConfigurableDataSourceNames(str, enum.Enum):
|
|
|
25
26
|
self,
|
|
26
27
|
s_3: typing.Callable[[], T_Result],
|
|
27
28
|
azure_storage_blob: typing.Callable[[], T_Result],
|
|
29
|
+
google_drive: typing.Callable[[], T_Result],
|
|
28
30
|
microsoft_onedrive: typing.Callable[[], T_Result],
|
|
29
31
|
microsoft_sharepoint: typing.Callable[[], T_Result],
|
|
30
32
|
slack: typing.Callable[[], T_Result],
|
|
@@ -37,6 +39,8 @@ class ConfigurableDataSourceNames(str, enum.Enum):
|
|
|
37
39
|
return s_3()
|
|
38
40
|
if self is ConfigurableDataSourceNames.AZURE_STORAGE_BLOB:
|
|
39
41
|
return azure_storage_blob()
|
|
42
|
+
if self is ConfigurableDataSourceNames.GOOGLE_DRIVE:
|
|
43
|
+
return google_drive()
|
|
40
44
|
if self is ConfigurableDataSourceNames.MICROSOFT_ONEDRIVE:
|
|
41
45
|
return microsoft_onedrive()
|
|
42
46
|
if self is ConfigurableDataSourceNames.MICROSOFT_SHAREPOINT:
|
|
@@ -5,6 +5,7 @@ import typing
|
|
|
5
5
|
from .cloud_az_storage_blob_data_source import CloudAzStorageBlobDataSource
|
|
6
6
|
from .cloud_box_data_source import CloudBoxDataSource
|
|
7
7
|
from .cloud_confluence_data_source import CloudConfluenceDataSource
|
|
8
|
+
from .cloud_google_drive_data_source import CloudGoogleDriveDataSource
|
|
8
9
|
from .cloud_jira_data_source import CloudJiraDataSource
|
|
9
10
|
from .cloud_notion_page_data_source import CloudNotionPageDataSource
|
|
10
11
|
from .cloud_one_drive_data_source import CloudOneDriveDataSource
|
|
@@ -15,6 +16,7 @@ from .cloud_slack_data_source import CloudSlackDataSource
|
|
|
15
16
|
DataSourceComponentOne = typing.Union[
|
|
16
17
|
CloudS3DataSource,
|
|
17
18
|
CloudAzStorageBlobDataSource,
|
|
19
|
+
CloudGoogleDriveDataSource,
|
|
18
20
|
CloudOneDriveDataSource,
|
|
19
21
|
CloudSharepointDataSource,
|
|
20
22
|
CloudSlackDataSource,
|
|
@@ -5,6 +5,7 @@ import typing
|
|
|
5
5
|
from .cloud_az_storage_blob_data_source import CloudAzStorageBlobDataSource
|
|
6
6
|
from .cloud_box_data_source import CloudBoxDataSource
|
|
7
7
|
from .cloud_confluence_data_source import CloudConfluenceDataSource
|
|
8
|
+
from .cloud_google_drive_data_source import CloudGoogleDriveDataSource
|
|
8
9
|
from .cloud_jira_data_source import CloudJiraDataSource
|
|
9
10
|
from .cloud_notion_page_data_source import CloudNotionPageDataSource
|
|
10
11
|
from .cloud_one_drive_data_source import CloudOneDriveDataSource
|
|
@@ -15,6 +16,7 @@ from .cloud_slack_data_source import CloudSlackDataSource
|
|
|
15
16
|
DataSourceCreateComponentOne = typing.Union[
|
|
16
17
|
CloudS3DataSource,
|
|
17
18
|
CloudAzStorageBlobDataSource,
|
|
19
|
+
CloudGoogleDriveDataSource,
|
|
18
20
|
CloudOneDriveDataSource,
|
|
19
21
|
CloudSharepointDataSource,
|
|
20
22
|
CloudSlackDataSource,
|
|
@@ -5,6 +5,7 @@ import typing
|
|
|
5
5
|
from .cloud_az_storage_blob_data_source import CloudAzStorageBlobDataSource
|
|
6
6
|
from .cloud_box_data_source import CloudBoxDataSource
|
|
7
7
|
from .cloud_confluence_data_source import CloudConfluenceDataSource
|
|
8
|
+
from .cloud_google_drive_data_source import CloudGoogleDriveDataSource
|
|
8
9
|
from .cloud_jira_data_source import CloudJiraDataSource
|
|
9
10
|
from .cloud_notion_page_data_source import CloudNotionPageDataSource
|
|
10
11
|
from .cloud_one_drive_data_source import CloudOneDriveDataSource
|
|
@@ -15,6 +16,7 @@ from .cloud_slack_data_source import CloudSlackDataSource
|
|
|
15
16
|
PipelineDataSourceComponentOne = typing.Union[
|
|
16
17
|
CloudS3DataSource,
|
|
17
18
|
CloudAzStorageBlobDataSource,
|
|
19
|
+
CloudGoogleDriveDataSource,
|
|
18
20
|
CloudOneDriveDataSource,
|
|
19
21
|
CloudSharepointDataSource,
|
|
20
22
|
CloudSlackDataSource,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
llama_cloud/__init__.py,sha256
|
|
1
|
+
llama_cloud/__init__.py,sha256=-MwHXgt8knM8ogY1vPd-Sace9XtufHRPR5zSffcO_1E,14769
|
|
2
2
|
llama_cloud/client.py,sha256=kITbWAZl-xw19xv9ouSiT1wQ1i7yWHhNG5XDTjb-EVc,4503
|
|
3
3
|
llama_cloud/core/__init__.py,sha256=QJS3CJ2TYP2E1Tge0CS6Z7r8LTNzJHQVX1hD3558eP0,519
|
|
4
4
|
llama_cloud/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
|
|
@@ -23,7 +23,7 @@ llama_cloud/resources/data_sources/__init__.py,sha256=CCs8ur4fvszPjy0GpTWmMjUAx0
|
|
|
23
23
|
llama_cloud/resources/data_sources/client.py,sha256=uxM67CtKYSexXeKxuHojlbLR7YkqQueRYIrhSLc6Pqs,21915
|
|
24
24
|
llama_cloud/resources/data_sources/types/__init__.py,sha256=iOdDXvAM6w80PR62JCscsTOwzDIXHHcG_Ypv18DEdic,410
|
|
25
25
|
llama_cloud/resources/data_sources/types/data_source_update_component.py,sha256=8MoJgdjYmN5WqntDpMXX34WJsf-Wsn0gYw_0t9SOTTA,257
|
|
26
|
-
llama_cloud/resources/data_sources/types/data_source_update_component_one.py,sha256=
|
|
26
|
+
llama_cloud/resources/data_sources/types/data_source_update_component_one.py,sha256=R50XaMM4zUlZYOkN7WeenFmeW55p-jSFWhAKBxK8PK4,1142
|
|
27
27
|
llama_cloud/resources/data_sources/types/data_source_update_custom_metadata_value.py,sha256=3aFC-p8MSxjhOu2nFtqk0pixj6RqNqcFnbOYngUdZUk,215
|
|
28
28
|
llama_cloud/resources/evals/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
29
29
|
llama_cloud/resources/evals/client.py,sha256=JyPHP9MsJ-15XHUVu-UjCcINo2IDPr2OageAqLBGlmw,27578
|
|
@@ -48,7 +48,7 @@ llama_cloud/resources/pipelines/types/pipeline_update_embedding_config.py,sha256
|
|
|
48
48
|
llama_cloud/resources/pipelines/types/pipeline_update_transform_config.py,sha256=QhoTMm88VYbc9EktYuA8qhbUFqwIpHmO5LhML7Z4Sjk,872
|
|
49
49
|
llama_cloud/resources/projects/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
50
50
|
llama_cloud/resources/projects/client.py,sha256=nK81HdhGbWY1rh8rSEsKzRuvyvCQ-IkhLHIPDqEqVFU,47754
|
|
51
|
-
llama_cloud/types/__init__.py,sha256=
|
|
51
|
+
llama_cloud/types/__init__.py,sha256=XxRnwh5i3y-VZVIsz4yt66C9TtCi9L13Uw4ae8MA5Ac,18155
|
|
52
52
|
llama_cloud/types/advanced_mode_transform_config.py,sha256=4xCXye0_cPmVS1F8aNTx81sIaEPjQH9kiCCAIoqUzlI,1502
|
|
53
53
|
llama_cloud/types/advanced_mode_transform_config_chunking_config.py,sha256=wYbJnWLpeQDfhmDZz-wJfYzD1iGT5Jcxb9ga3mzUuvk,1983
|
|
54
54
|
llama_cloud/types/advanced_mode_transform_config_segmentation_config.py,sha256=anNGq0F5-IlbIW3kpC8OilzLJnUq5tdIcWHnRnmlYsg,1303
|
|
@@ -71,6 +71,7 @@ llama_cloud/types/cloud_chroma_vector_store.py,sha256=-PKWkXWRpypeVy6nSbFDDkypdB
|
|
|
71
71
|
llama_cloud/types/cloud_confluence_data_source.py,sha256=jLV9bytO2u-Nhn9-HG95TI3xz1934jzPyPOGE_j0h9A,1926
|
|
72
72
|
llama_cloud/types/cloud_document.py,sha256=dDk1IluX8eU3thDeFp42DfflfzYCMJWAckoZdoLLjOQ,1425
|
|
73
73
|
llama_cloud/types/cloud_document_create.py,sha256=i43_Virif1midZz0ZNunqAX515u3Mc4_FdeM2F8GAI0,1448
|
|
74
|
+
llama_cloud/types/cloud_google_drive_data_source.py,sha256=pCY9cR8qkZ2guBPDcW-5AUDjw_bJXjlUoaiOVduFomA,1320
|
|
74
75
|
llama_cloud/types/cloud_jira_data_source.py,sha256=chvMhR253mgLAslxvCsS7T7UBM97i0XFjjtx6pfv8Ts,1732
|
|
75
76
|
llama_cloud/types/cloud_milvus_vector_store.py,sha256=CHFTJSYPZKYPUU-jpB1MG8OwRvnPiT07o7cYCvQMZLA,1235
|
|
76
77
|
llama_cloud/types/cloud_mongo_db_atlas_vector_search.py,sha256=R-3zF5aH1PvkhXpGLGCFdfgS6Ehey8iYQFX6N0GZNA8,1725
|
|
@@ -87,7 +88,7 @@ llama_cloud/types/code_splitter.py,sha256=TMfGeunLMJagX3lvxr76nhosD48Reu4CexVzpU
|
|
|
87
88
|
llama_cloud/types/cohere_embedding.py,sha256=qpF6fMm5z5YGc47RfLUM9XPsHbYNRlhSlrBe-9OotHA,1969
|
|
88
89
|
llama_cloud/types/cohere_embedding_config.py,sha256=c0Kj1wuSsBX9TQ2AondKv5ZtX5PmkivsHj6P0M7tVB4,1142
|
|
89
90
|
llama_cloud/types/configurable_data_sink_names.py,sha256=Cue3CIK0jXSOlbQ2Z44tyDW1fpObzbXiCe0zilxt7Xk,1572
|
|
90
|
-
llama_cloud/types/configurable_data_source_names.py,sha256=
|
|
91
|
+
llama_cloud/types/configurable_data_source_names.py,sha256=Dy4-p9Io_31tD5vodtBZ-TC2ZM-3FS-6a0sJiT3Nhr4,2008
|
|
91
92
|
llama_cloud/types/configurable_transformation_definition.py,sha256=LDOhI5IDxlLDWM_p_xwCFM7qq1y-aGA8UxN7dnplDlU,1886
|
|
92
93
|
llama_cloud/types/configurable_transformation_names.py,sha256=djcri_rEXZSXHIMVaTyZhGVKUflDm8kqGS6UFoBpl8k,3432
|
|
93
94
|
llama_cloud/types/configured_transformation_item.py,sha256=9caK5ZOKgGCZc6ynJJIWwpxpScKHOHkZwHFlsBy-Fog,1826
|
|
@@ -103,10 +104,10 @@ llama_cloud/types/data_sink_create_component_one.py,sha256=jt9qk-OSS_YI0cvnaeiMx
|
|
|
103
104
|
llama_cloud/types/data_sink_definition.py,sha256=5ve_pq02s8szc34-wWobMe6BAPj_c7e9n9FFsfDqEQ0,1561
|
|
104
105
|
llama_cloud/types/data_source.py,sha256=H98i0VlmB_eUczmUuhbAVG7uP1wcLLlE2gSKQWLTy7w,1830
|
|
105
106
|
llama_cloud/types/data_source_component.py,sha256=xx1-6EJUtfr2A6BgkOtFM4w5I_3zSHqO1qnRRHSNcTc,232
|
|
106
|
-
llama_cloud/types/data_source_component_one.py,sha256=
|
|
107
|
+
llama_cloud/types/data_source_component_one.py,sha256=VZjf92ZpjluvdaMmJACUJBqQESlmNreblbT3QdiC0g4,1046
|
|
107
108
|
llama_cloud/types/data_source_create.py,sha256=siumw3f5sZCVVDZgYDLpy7YaeYZRMTOPqmFjL6GjyK0,1613
|
|
108
109
|
llama_cloud/types/data_source_create_component.py,sha256=xY1zUoKBH6LRwka54a1w5zFrB3vUYIiEGhBZv7yi7Oc,257
|
|
109
|
-
llama_cloud/types/data_source_create_component_one.py,sha256=
|
|
110
|
+
llama_cloud/types/data_source_create_component_one.py,sha256=CzR9v8I8_Ge_fGuGXfHi5c93DPftJs-oM1syPyEPWr8,1052
|
|
110
111
|
llama_cloud/types/data_source_create_custom_metadata_value.py,sha256=ejSsQNbszYQaUWFh9r9kQpHf88qbhuRv1SI9J_MOSC0,215
|
|
111
112
|
llama_cloud/types/data_source_custom_metadata_value.py,sha256=pTZn5yjZYmuOhsLABFJOKZblZUkRqo1CqLAuP5tKji4,209
|
|
112
113
|
llama_cloud/types/data_source_definition.py,sha256=HlSlTxzYcQJOSo_2OSroAE8vAr-otDvTNBSEkA54vL8,1575
|
|
@@ -183,7 +184,7 @@ llama_cloud/types/pipeline_create_embedding_config.py,sha256=hjw-CH9Q3Byqy1cWS9H
|
|
|
183
184
|
llama_cloud/types/pipeline_create_transform_config.py,sha256=CiMil0NrwvxR34CAzrSWw9Uo0117tz409sptH1k_r48,854
|
|
184
185
|
llama_cloud/types/pipeline_data_source.py,sha256=uiTu6BkXgizhkuqr6GHiS8ZBhtnLcwcitMFkwS6woaE,2465
|
|
185
186
|
llama_cloud/types/pipeline_data_source_component.py,sha256=Pk_K0Gv7xSWe5BKCdxz82EFd6AQDvZGN-6t3zg9h8NY,265
|
|
186
|
-
llama_cloud/types/pipeline_data_source_component_one.py,sha256=
|
|
187
|
+
llama_cloud/types/pipeline_data_source_component_one.py,sha256=MOzzeA84k54ThNiMbmm2XXS00Yq4Xn43vx3Zdo38ckM,1054
|
|
187
188
|
llama_cloud/types/pipeline_data_source_create.py,sha256=0QPQNT6dvLaO5bZGX4QJWo5-2T44dQRjs2R5HwDaFa4,1280
|
|
188
189
|
llama_cloud/types/pipeline_data_source_custom_metadata_value.py,sha256=8n3r60sxMx4_udW0yzJZxzyWeK6L3cc2-jLGZFW4EDs,217
|
|
189
190
|
llama_cloud/types/pipeline_deployment.py,sha256=3sWAIdeov3CYFZMCAWwCR46ShHA6XAzSqmc18qryHzM,1669
|
|
@@ -228,7 +229,7 @@ llama_cloud/types/validation_error.py,sha256=yZDLtjUHDY5w82Ra6CW0H9sLAr18R0RY1UN
|
|
|
228
229
|
llama_cloud/types/validation_error_loc_item.py,sha256=LAtjCHIllWRBFXvAZ5QZpp7CPXjdtN9EB7HrLVo6EP0,128
|
|
229
230
|
llama_cloud/types/vertex_ai_embedding_config.py,sha256=Xzn_S19D7daVUhJ86f-O4ILh1tizAj1CuIC4KAn6IUU,1178
|
|
230
231
|
llama_cloud/types/vertex_embedding_mode.py,sha256=AkoY7nzOF5MHb4bCnEy-FJol7WxFNBLcQ8PHHtBWH_o,1605
|
|
231
|
-
llama_cloud-0.0.
|
|
232
|
-
llama_cloud-0.0.
|
|
233
|
-
llama_cloud-0.0.
|
|
234
|
-
llama_cloud-0.0.
|
|
232
|
+
llama_cloud-0.0.17.dist-info/LICENSE,sha256=_iNqtPcw1Ue7dZKwOwgPtbegMUkWVy15hC7bffAdNmY,1067
|
|
233
|
+
llama_cloud-0.0.17.dist-info/METADATA,sha256=XvYUOeSTTF4u_vJjTlF7AM5IZhCV59KO1UcJ8phthiI,751
|
|
234
|
+
llama_cloud-0.0.17.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
235
|
+
llama_cloud-0.0.17.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|