llama-cloud 0.0.15__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 +22 -0
- llama_cloud/resources/__init__.py +2 -0
- llama_cloud/resources/data_sources/types/data_source_update_component_one.py +2 -0
- llama_cloud/resources/files/client.py +159 -0
- llama_cloud/resources/parsing/client.py +40 -0
- llama_cloud/resources/pipelines/__init__.py +2 -0
- llama_cloud/resources/pipelines/client.py +18 -2
- llama_cloud/resources/pipelines/types/__init__.py +2 -0
- llama_cloud/resources/pipelines/types/pipeline_update_embedding_config.py +11 -0
- llama_cloud/types/__init__.py +20 -0
- llama_cloud/types/cloud_az_storage_blob_data_source.py +1 -2
- llama_cloud/types/cloud_google_drive_data_source.py +39 -0
- llama_cloud/types/cloud_postgres_vector_store.py +6 -8
- llama_cloud/types/configurable_data_source_names.py +4 -0
- llama_cloud/types/configurable_transformation_names.py +4 -0
- llama_cloud/types/configured_transformation_item_component_one.py +2 -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/extend_vertex_text_embedding.py +58 -0
- llama_cloud/types/llama_parse_parameters.py +3 -1
- llama_cloud/types/llm_model_data.py +1 -0
- llama_cloud/types/llm_parameters.py +4 -1
- llama_cloud/types/page_screenshot_metadata.py +33 -0
- llama_cloud/types/page_screenshot_node_with_score.py +38 -0
- llama_cloud/types/pipeline.py +4 -0
- llama_cloud/types/pipeline_configuration_hashes.py +37 -0
- llama_cloud/types/pipeline_create_embedding_config.py +11 -0
- llama_cloud/types/pipeline_data_source_component_one.py +2 -0
- llama_cloud/types/pipeline_embedding_config.py +11 -0
- llama_cloud/types/pipeline_file.py +4 -0
- llama_cloud/types/pipeline_file_config_hash_value.py +5 -0
- llama_cloud/types/preset_retrieval_params.py +1 -0
- llama_cloud/types/retrieve_results.py +4 -0
- llama_cloud/types/vertex_ai_embedding_config.py +34 -0
- llama_cloud/types/vertex_embedding_mode.py +45 -0
- {llama_cloud-0.0.15.dist-info → llama_cloud-0.0.17.dist-info}/METADATA +1 -1
- {llama_cloud-0.0.15.dist-info → llama_cloud-0.0.17.dist-info}/RECORD +39 -31
- {llama_cloud-0.0.15.dist-info → llama_cloud-0.0.17.dist-info}/LICENSE +0 -0
- {llama_cloud-0.0.15.dist-info → llama_cloud-0.0.17.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,34 @@
|
|
|
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 .extend_vertex_text_embedding import ExtendVertexTextEmbedding
|
|
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 VertexAiEmbeddingConfig(pydantic.BaseModel):
|
|
19
|
+
component: typing.Optional[ExtendVertexTextEmbedding] = pydantic.Field(
|
|
20
|
+
description="Configuration for the VertexAI embedding model."
|
|
21
|
+
)
|
|
22
|
+
|
|
23
|
+
def json(self, **kwargs: typing.Any) -> str:
|
|
24
|
+
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
|
25
|
+
return super().json(**kwargs_with_defaults)
|
|
26
|
+
|
|
27
|
+
def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
|
|
28
|
+
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
|
29
|
+
return super().dict(**kwargs_with_defaults)
|
|
30
|
+
|
|
31
|
+
class Config:
|
|
32
|
+
frozen = True
|
|
33
|
+
smart_union = True
|
|
34
|
+
json_encoders = {dt.datetime: serialize_datetime}
|
|
@@ -0,0 +1,45 @@
|
|
|
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 VertexEmbeddingMode(str, enum.Enum):
|
|
10
|
+
"""
|
|
11
|
+
VertexAI embedding mode.
|
|
12
|
+
|
|
13
|
+
Attributes:
|
|
14
|
+
DEFAULT_MODE (str): The default embedding mode, for older models before August 2023,
|
|
15
|
+
that does not support task_type
|
|
16
|
+
CLASSIFICATION_MODE (str): Optimizes embeddings for classification tasks.
|
|
17
|
+
CLUSTERING_MODE (str): Optimizes embeddings for clustering tasks.
|
|
18
|
+
SEMANTIC_SIMILARITY_MODE (str): Optimizes embeddings for tasks that require assessments of semantic similarity.
|
|
19
|
+
RETRIEVAL_MODE (str): Optimizes embeddings for retrieval tasks, including search and document retrieval.
|
|
20
|
+
"""
|
|
21
|
+
|
|
22
|
+
DEFAULT = "default"
|
|
23
|
+
CLASSIFICATION = "classification"
|
|
24
|
+
CLUSTERING = "clustering"
|
|
25
|
+
SIMILARITY = "similarity"
|
|
26
|
+
RETRIEVAL = "retrieval"
|
|
27
|
+
|
|
28
|
+
def visit(
|
|
29
|
+
self,
|
|
30
|
+
default: typing.Callable[[], T_Result],
|
|
31
|
+
classification: typing.Callable[[], T_Result],
|
|
32
|
+
clustering: typing.Callable[[], T_Result],
|
|
33
|
+
similarity: typing.Callable[[], T_Result],
|
|
34
|
+
retrieval: typing.Callable[[], T_Result],
|
|
35
|
+
) -> T_Result:
|
|
36
|
+
if self is VertexEmbeddingMode.DEFAULT:
|
|
37
|
+
return default()
|
|
38
|
+
if self is VertexEmbeddingMode.CLASSIFICATION:
|
|
39
|
+
return classification()
|
|
40
|
+
if self is VertexEmbeddingMode.CLUSTERING:
|
|
41
|
+
return clustering()
|
|
42
|
+
if self is VertexEmbeddingMode.SIMILARITY:
|
|
43
|
+
return similarity()
|
|
44
|
+
if self is VertexEmbeddingMode.RETRIEVAL:
|
|
45
|
+
return retrieval()
|
|
@@ -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
|
|
@@ -9,7 +9,7 @@ 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=pcvU9SsDc2agUuBkXP0AFxrAiTvN85mqY0CUcLEEj78,2284
|
|
13
13
|
llama_cloud/resources/auth/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
14
14
|
llama_cloud/resources/auth/client.py,sha256=kUfPUIXNS95MBKsknEvdqsDojlVJfVnxmHkAaiYVxCY,4560
|
|
15
15
|
llama_cloud/resources/component_definitions/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
@@ -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
|
|
@@ -33,22 +33,22 @@ llama_cloud/resources/extraction/types/__init__.py,sha256=ePJKSJ6hGIsPnfpe0Sp5w4
|
|
|
33
33
|
llama_cloud/resources/extraction/types/extraction_schema_create_data_schema_value.py,sha256=igTdUjMeB-PI5xKrloRKHY-EvL6_V8OLshABu6Dyx4A,217
|
|
34
34
|
llama_cloud/resources/extraction/types/extraction_schema_update_data_schema_value.py,sha256=z_4tkLkWnHnd3Xa9uUctk9hG9Mo7GKU4dK4s2pm8qow,217
|
|
35
35
|
llama_cloud/resources/files/__init__.py,sha256=aZpyTj6KpZvA5XVwmuo1sIlRs7ba98btxVBZ6j5vIsI,155
|
|
36
|
-
llama_cloud/resources/files/client.py,sha256=
|
|
36
|
+
llama_cloud/resources/files/client.py,sha256=qk-54lG1eWEAh4CmORd0aTcC4EG89-c3J9HeyV2St8Q,28323
|
|
37
37
|
llama_cloud/resources/files/types/__init__.py,sha256=ZWnnYWuDYZSfUJc7Jv3HyovzijdB--DTK4YB-uPcDsA,181
|
|
38
38
|
llama_cloud/resources/files/types/file_create_resource_info_value.py,sha256=R7Y-CJf7fnbvIqE3xOI5XOrmPwLbVJLC7zpxMu8Zopk,201
|
|
39
39
|
llama_cloud/resources/organizations/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
40
40
|
llama_cloud/resources/organizations/client.py,sha256=akn_3sytJW_VhuLVBbP0TKiKKbBGuuAPDtGVIbW4kdA,34167
|
|
41
41
|
llama_cloud/resources/parsing/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
42
|
-
llama_cloud/resources/parsing/client.py,sha256=
|
|
43
|
-
llama_cloud/resources/pipelines/__init__.py,sha256=
|
|
44
|
-
llama_cloud/resources/pipelines/client.py,sha256=
|
|
45
|
-
llama_cloud/resources/pipelines/types/__init__.py,sha256=
|
|
42
|
+
llama_cloud/resources/parsing/client.py,sha256=JwlSwIkHHQGO85tWqwKz7jJvbV3Zl26rWmXxeKRwRRc,41974
|
|
43
|
+
llama_cloud/resources/pipelines/__init__.py,sha256=64jDyMUqnwjawvCQ5f5Y9HiMMulbCsoZA67v0GrTMWs,1255
|
|
44
|
+
llama_cloud/resources/pipelines/client.py,sha256=35rH25EEwdz6AzjTmpxpctXfUK5QklLawgoonLdyXCM,137448
|
|
45
|
+
llama_cloud/resources/pipelines/types/__init__.py,sha256=SBIy3XdKfQFTmhozQJkP8tsAFCAkz-UkMvK8EGTYvck,1383
|
|
46
46
|
llama_cloud/resources/pipelines/types/pipeline_file_update_custom_metadata_value.py,sha256=trI48WLxPcAqV9207Q6-3cj1nl4EGlZpw7En56ZsPgg,217
|
|
47
|
-
llama_cloud/resources/pipelines/types/pipeline_update_embedding_config.py,sha256=
|
|
47
|
+
llama_cloud/resources/pipelines/types/pipeline_update_embedding_config.py,sha256=o2SzAvQbsvu9fViWUXZVst0zxWm8T7l0RuZEEXYXB74,2874
|
|
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
|
|
@@ -64,20 +64,21 @@ llama_cloud/types/character_chunking_config.py,sha256=2ooAnrlVVbKj4nDi_lR66x5E6n
|
|
|
64
64
|
llama_cloud/types/character_splitter.py,sha256=tA8Eob62cs3geVMVkFvDp17nxijYVUQyjpvV0wGyLpQ,1969
|
|
65
65
|
llama_cloud/types/chat_data.py,sha256=iwPmxUFKy9QS4OHoMi0HcFs9I4DVYpRcIlHEUvk1PR8,1373
|
|
66
66
|
llama_cloud/types/chat_message.py,sha256=jp1GrnrRb3-nQ8KoMdLchzCSfoEczChnUgbD6xJJ65U,1762
|
|
67
|
-
llama_cloud/types/cloud_az_storage_blob_data_source.py,sha256=
|
|
67
|
+
llama_cloud/types/cloud_az_storage_blob_data_source.py,sha256=rq1xhVh69QcZec326f5cizj7IdHTYqyzb6C8I1owHbM,2156
|
|
68
68
|
llama_cloud/types/cloud_azure_ai_search_vector_store.py,sha256=9GTaft7BaKsR9RJQp5dlpbslXUlTMA1AcDdKV1ApfqI,1513
|
|
69
69
|
llama_cloud/types/cloud_box_data_source.py,sha256=myL71JjQ6vK6uQWWW884I6n_0jFuQD_jA8WG3KtxPRg,2076
|
|
70
70
|
llama_cloud/types/cloud_chroma_vector_store.py,sha256=-PKWkXWRpypeVy6nSbFDDkypdBgHgeqsXtfjGKygjXM,1388
|
|
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
|
|
77
78
|
llama_cloud/types/cloud_notion_page_data_source.py,sha256=XMbp5dbcR3uTwamV8JlXYk_2UteNJUbvH43caVE0A48,1397
|
|
78
79
|
llama_cloud/types/cloud_one_drive_data_source.py,sha256=anI5y6si0PtrEiN9kTxF0UplDFHr-_yhL373fToUkdg,1686
|
|
79
80
|
llama_cloud/types/cloud_pinecone_vector_store.py,sha256=UyCFAawIDnmPAmTcWjrFCKatypqc4cC4LpuAUOsyzUc,1647
|
|
80
|
-
llama_cloud/types/cloud_postgres_vector_store.py,sha256=
|
|
81
|
+
llama_cloud/types/cloud_postgres_vector_store.py,sha256=s34U31gl2y4YSw7lyCmTtoib4wRK_pGJDUMc4bs_kKU,1292
|
|
81
82
|
llama_cloud/types/cloud_qdrant_vector_store.py,sha256=F-gjNArzwLWmqgPcC-ZxRqSrhTFZbv5kqmIXmnLPB5o,1718
|
|
82
83
|
llama_cloud/types/cloud_s_3_data_source.py,sha256=bRrHinGoXt89Q2aMp8VSBYrJ5MNYQCAB0q6esYo89ok,1715
|
|
83
84
|
llama_cloud/types/cloud_sharepoint_data_source.py,sha256=jZ4cqnzPttDhTvaSe-xex3lyS388zRCECr6KBdZYLg8,1928
|
|
@@ -87,12 +88,12 @@ 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
|
-
llama_cloud/types/configurable_transformation_names.py,sha256=
|
|
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
|
|
94
95
|
llama_cloud/types/configured_transformation_item_component.py,sha256=RXQ1Ed2HlqQ-V7RSDA9sndPBbJUhwfczVpCWHRKQigY,311
|
|
95
|
-
llama_cloud/types/configured_transformation_item_component_one.py,sha256=
|
|
96
|
+
llama_cloud/types/configured_transformation_item_component_one.py,sha256=eAYyyFqJyp6ac4zO2hL3kuf853Du9307He3vfAfdEwM,1257
|
|
96
97
|
llama_cloud/types/custom_claims.py,sha256=KWaS1YWwbqAlJD47GhDDp_jCijZO7EZDi8_JywR09VE,2553
|
|
97
98
|
llama_cloud/types/data_sink.py,sha256=11LlzUEMkgT-20OsMlvZYgbOnOvtxD4Y0NGyiVpP1_M,1524
|
|
98
99
|
llama_cloud/types/data_sink_component.py,sha256=AMOlCar00ApJarc4sEVqYGoPWqjuiV19suOUvpIQtlg,224
|
|
@@ -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
|
|
@@ -119,6 +120,7 @@ llama_cloud/types/eval_execution_params_override.py,sha256=JZtB9HHnx582J7L3-mD2G
|
|
|
119
120
|
llama_cloud/types/eval_question.py,sha256=0801Wo8Em5EnWV4DaCJKXGHWqG9urIgAS2mJekeGj3U,1604
|
|
120
121
|
llama_cloud/types/eval_question_create.py,sha256=oOwxkE5gPj8RAwgr3uuTHfTvLSXmYkkxNHqsT7oUHjI,1031
|
|
121
122
|
llama_cloud/types/eval_question_result.py,sha256=Y4RFXnA4YJTlzM6_NtLOi0rt6hRZoQbToiVJqm41ArY,2168
|
|
123
|
+
llama_cloud/types/extend_vertex_text_embedding.py,sha256=saAm_Mt6f8ydvD_8ZHzWvk9kweqZPlj8RgjPGe8B-lo,2514
|
|
122
124
|
llama_cloud/types/extraction_job.py,sha256=Y8Vp8zmWEl3m9-hy0v2EIbwfm9c2b6oGTUWw3eip_II,1260
|
|
123
125
|
llama_cloud/types/extraction_result.py,sha256=tjVF9feYcjtbO3kTBPSrXES9ANj6_e_WT6scMCU6Kxc,1629
|
|
124
126
|
llama_cloud/types/extraction_result_data_value.py,sha256=YwtoAi0U511CVX4L91Nx0udAT4ejV6wn0AfJOyETt-o,199
|
|
@@ -137,11 +139,11 @@ llama_cloud/types/hugging_face_inference_api_embedding_token.py,sha256=A7-_YryBc
|
|
|
137
139
|
llama_cloud/types/ingestion_error_response.py,sha256=8u0cyT44dnpkNeUKemTvJMUqi_WyPcYQKP_DMTqaFPY,1259
|
|
138
140
|
llama_cloud/types/input_message.py,sha256=AP-5oU3SGXsaT0VLQP_mBVMwlX8h0dduClD7N3tSvW4,1455
|
|
139
141
|
llama_cloud/types/job_name_mapping.py,sha256=scAbHrxvowCE3jHRZyYr2bBE5wvMMdBw7zpQ-lp5dY0,1433
|
|
140
|
-
llama_cloud/types/llama_parse_parameters.py,sha256=
|
|
142
|
+
llama_cloud/types/llama_parse_parameters.py,sha256=j5v-yzuwSeY8lyeyzudupiRbkhZUQDTdswq4lICB_JY,2358
|
|
141
143
|
llama_cloud/types/llama_parse_supported_file_extensions.py,sha256=0IurzDxhIwdxCuTh1J9NXA_bU9VnKagDCs3853iREWY,11244
|
|
142
144
|
llama_cloud/types/llm.py,sha256=T-Uv5OO0E6Rscpn841302jx3c7G1uo9LJkdrGlNGk30,2238
|
|
143
|
-
llama_cloud/types/llm_model_data.py,sha256=
|
|
144
|
-
llama_cloud/types/llm_parameters.py,sha256=
|
|
145
|
+
llama_cloud/types/llm_model_data.py,sha256=QgyFe03psw5Aon3w1LC6ovCa1o9MVNcaGcmpapw-4D0,1263
|
|
146
|
+
llama_cloud/types/llm_parameters.py,sha256=2N_7EmWWyMfP2rUzhHDWuvc__8h3k5T23jGjr8mBF90,1601
|
|
145
147
|
llama_cloud/types/local_eval.py,sha256=77NY_rq4zr0V3iB-PXE7Om6LcjRrytLbQ55f_ovAF-M,2050
|
|
146
148
|
llama_cloud/types/local_eval_results.py,sha256=G1rLE6vO2lEziHQ6bAbZvpJMTrkSYWFvsS1iyZZ44Jw,1449
|
|
147
149
|
llama_cloud/types/local_eval_sets.py,sha256=XJSSriwRvkma889pPiBQrpRakKejKOX3tWPu1TGb1ug,1181
|
|
@@ -164,6 +166,8 @@ llama_cloud/types/open_ai_embedding.py,sha256=vAiDcIV129M7YT5hI99A2kheN42793m4kE
|
|
|
164
166
|
llama_cloud/types/open_ai_embedding_config.py,sha256=Mquc0JrtCo8lVYA2WW7q0ZikS3HRkiMtzDFu5XA-20o,1143
|
|
165
167
|
llama_cloud/types/organization.py,sha256=6mVWJDaDxrnMHuufnpQEhgWTPZW9bhsjGFtgtf4VyJg,1321
|
|
166
168
|
llama_cloud/types/organization_create.py,sha256=hUXRwArIx_0D_lilpL7z-B0oJJ5yEX8Sbu2xqfH_9so,1086
|
|
169
|
+
llama_cloud/types/page_screenshot_metadata.py,sha256=dXwWNDS7670xvIIuB1C_gLlsvAzQH4BRR3jLOojRvGs,1268
|
|
170
|
+
llama_cloud/types/page_screenshot_node_with_score.py,sha256=EdqoXbmARCz1DV14E2saCPshIeII709uM4cLwxw_mkM,1232
|
|
167
171
|
llama_cloud/types/page_segmentation_config.py,sha256=VH8uuxnubnJak1gSpS64OoMueHidhsDB-2eq2tVHbag,998
|
|
168
172
|
llama_cloud/types/page_splitter_node_parser.py,sha256=AwdDkxX-WgJEMOc8Jvz_IByfYULNdVIM9CoD6gEcnhU,1476
|
|
169
173
|
llama_cloud/types/parser_languages.py,sha256=Ps3IlaSt6tyxEI657N3-vZL96r2puk8wsf31cWnO-SI,10840
|
|
@@ -173,18 +177,20 @@ llama_cloud/types/parsing_job_json_result.py,sha256=vC0FNMklitCgcB0esthMfv_RbbyF
|
|
|
173
177
|
llama_cloud/types/parsing_job_markdown_result.py,sha256=E3-CVNFH1IMyuGs_xzYfYdNgq9AdnDshA_CxOTXz_dQ,1094
|
|
174
178
|
llama_cloud/types/parsing_job_text_result.py,sha256=1QZielAWXuzPFOgr_DWshXPjmbExAAgAHKAEYVQVtJ8,1082
|
|
175
179
|
llama_cloud/types/parsing_usage.py,sha256=JLlozu-vIkcRKqWaOVJ9Z2TrY7peJRTzOpYjOThGKGQ,1012
|
|
176
|
-
llama_cloud/types/pipeline.py,sha256=
|
|
180
|
+
llama_cloud/types/pipeline.py,sha256=8g4W8ooNlK0FrUZmoKEEJSPz0-hfEKnI_md-4XYrfyM,3431
|
|
181
|
+
llama_cloud/types/pipeline_configuration_hashes.py,sha256=2V7U-wzzMPsIimfkZgYdfIVWqv7LCLajlxWUWxPzscc,1361
|
|
177
182
|
llama_cloud/types/pipeline_create.py,sha256=Dv9wh5Uu4MoITP6bunhaem1ToRcs3Fw2gr3fw7HO7Fk,3217
|
|
178
|
-
llama_cloud/types/pipeline_create_embedding_config.py,sha256=
|
|
183
|
+
llama_cloud/types/pipeline_create_embedding_config.py,sha256=hjw-CH9Q3Byqy1cWS9HJBhRyagKSvuMCKO-RlZfflJs,2811
|
|
179
184
|
llama_cloud/types/pipeline_create_transform_config.py,sha256=CiMil0NrwvxR34CAzrSWw9Uo0117tz409sptH1k_r48,854
|
|
180
185
|
llama_cloud/types/pipeline_data_source.py,sha256=uiTu6BkXgizhkuqr6GHiS8ZBhtnLcwcitMFkwS6woaE,2465
|
|
181
186
|
llama_cloud/types/pipeline_data_source_component.py,sha256=Pk_K0Gv7xSWe5BKCdxz82EFd6AQDvZGN-6t3zg9h8NY,265
|
|
182
|
-
llama_cloud/types/pipeline_data_source_component_one.py,sha256=
|
|
187
|
+
llama_cloud/types/pipeline_data_source_component_one.py,sha256=MOzzeA84k54ThNiMbmm2XXS00Yq4Xn43vx3Zdo38ckM,1054
|
|
183
188
|
llama_cloud/types/pipeline_data_source_create.py,sha256=0QPQNT6dvLaO5bZGX4QJWo5-2T44dQRjs2R5HwDaFa4,1280
|
|
184
189
|
llama_cloud/types/pipeline_data_source_custom_metadata_value.py,sha256=8n3r60sxMx4_udW0yzJZxzyWeK6L3cc2-jLGZFW4EDs,217
|
|
185
190
|
llama_cloud/types/pipeline_deployment.py,sha256=3sWAIdeov3CYFZMCAWwCR46ShHA6XAzSqmc18qryHzM,1669
|
|
186
|
-
llama_cloud/types/pipeline_embedding_config.py,sha256=
|
|
187
|
-
llama_cloud/types/pipeline_file.py,sha256=
|
|
191
|
+
llama_cloud/types/pipeline_embedding_config.py,sha256=x1Keinz_LMM79IUczA_kkd_793OqMrA8mZ3jYvHdLa4,2721
|
|
192
|
+
llama_cloud/types/pipeline_file.py,sha256=z4uz_nKFnlVgAg-zmNlv5chP7rttPqory-V155KbRZQ,2777
|
|
193
|
+
llama_cloud/types/pipeline_file_config_hash_value.py,sha256=4lvLnDpzNAHdiMkGJTTNDTu3p3H7Nxw5MR1Mzte7-_M,201
|
|
188
194
|
llama_cloud/types/pipeline_file_create.py,sha256=2h7EVJk2Hez8FJ5AVqynWUpWDOkLmTO2M41tJcERjJg,1368
|
|
189
195
|
llama_cloud/types/pipeline_file_create_custom_metadata_value.py,sha256=olVj5yhQFx1QqWO1Wv9d6AtL-YyYO9_OYtOfcD2ZeGY,217
|
|
190
196
|
llama_cloud/types/pipeline_file_custom_metadata_value.py,sha256=ClFphYDNlHxeyLF5BWxIUhs2rooS0Xtqxr_Ae8dn8zE,211
|
|
@@ -193,7 +199,7 @@ llama_cloud/types/pipeline_transform_config.py,sha256=zMr-ePLKGjbaScxbAHaSwYBL7r
|
|
|
193
199
|
llama_cloud/types/pipeline_type.py,sha256=tTqrhxHP5xd7W2dQGD0e5FOv886nwJssyaVlXpWrtRo,551
|
|
194
200
|
llama_cloud/types/playground_session.py,sha256=m2Ellv49qc2ffBRobmqFYqpgDW15akfoRYBXYl0E6hM,1914
|
|
195
201
|
llama_cloud/types/pooling.py,sha256=5Fr6c8rx9SDWwWzEvD78suob2d79ktodUtLUAUHMbP8,651
|
|
196
|
-
llama_cloud/types/preset_retrieval_params.py,sha256=
|
|
202
|
+
llama_cloud/types/preset_retrieval_params.py,sha256=r7zxZvvJSxSwj9ceaws1MsRZDpar1OnTcIcj98j1r8U,2359
|
|
197
203
|
llama_cloud/types/presigned_url.py,sha256=pUOIs2hFESZCuiqMsnn7pB6dgh_XO6w7vAV4OhKrq94,1345
|
|
198
204
|
llama_cloud/types/project.py,sha256=MbaT01ewS3mio4Bd6XY5SS-2dTyRyMqM-g5XG7Ly0YA,1539
|
|
199
205
|
llama_cloud/types/project_create.py,sha256=GxGmsXGJM-cHrvPFLktEkj9JtNsSdFae7-HPZFB4er0,1014
|
|
@@ -202,7 +208,7 @@ llama_cloud/types/prompt_spec.py,sha256=dCJOp3Gn5Y7EmC3iDIH4mM_fBtCMCwCPwPRgzyDY
|
|
|
202
208
|
llama_cloud/types/pydantic_program_mode.py,sha256=QfvpqR7TqyNuOxo78Sr58VOu7KDSBrHJM4XXBB0F5z0,1202
|
|
203
209
|
llama_cloud/types/related_node_info.py,sha256=YqdYiBxtj8njp-UiLMaTBqoYKTTCEu0-DBta4ZnFVo4,1241
|
|
204
210
|
llama_cloud/types/retrieval_mode.py,sha256=lVfSVelJCKMK1Da4yx7B9m9y6Rj35SGKTx-3Z2UOAPE,784
|
|
205
|
-
llama_cloud/types/retrieve_results.py,sha256=
|
|
211
|
+
llama_cloud/types/retrieve_results.py,sha256=ZHBoNOO3Ta2vg8579XM0oEI18BUr656hk17F0_e9gbE,1780
|
|
206
212
|
llama_cloud/types/semantic_chunking_config.py,sha256=dFDniTVWpRc7UcmVFvljUoyL5Ztd-l-YrHII7U-yM-k,1053
|
|
207
213
|
llama_cloud/types/sentence_chunking_config.py,sha256=NA9xidK5ICxJPkEMQZWNcsV0Hw9Co_bzRWeYe4uSh9I,1116
|
|
208
214
|
llama_cloud/types/sentence_splitter.py,sha256=mkP5vQsXnLhn6iZZN4MrAfVoFdBYhZTIHoA5AewXwZY,2213
|
|
@@ -221,7 +227,9 @@ llama_cloud/types/user_organization_create.py,sha256=YESlfcI64710OFdQzgGD4a7aItg
|
|
|
221
227
|
llama_cloud/types/user_organization_delete.py,sha256=Z8RSRXc0AGAuGxv6eQPC2S1XIdRfNCXBggfEefgPseM,1209
|
|
222
228
|
llama_cloud/types/validation_error.py,sha256=yZDLtjUHDY5w82Ra6CW0H9sLAr18R0RY1UNgJKR72DQ,1084
|
|
223
229
|
llama_cloud/types/validation_error_loc_item.py,sha256=LAtjCHIllWRBFXvAZ5QZpp7CPXjdtN9EB7HrLVo6EP0,128
|
|
224
|
-
llama_cloud
|
|
225
|
-
llama_cloud
|
|
226
|
-
llama_cloud-0.0.
|
|
227
|
-
llama_cloud-0.0.
|
|
230
|
+
llama_cloud/types/vertex_ai_embedding_config.py,sha256=Xzn_S19D7daVUhJ86f-O4ILh1tizAj1CuIC4KAn6IUU,1178
|
|
231
|
+
llama_cloud/types/vertex_embedding_mode.py,sha256=AkoY7nzOF5MHb4bCnEy-FJol7WxFNBLcQ8PHHtBWH_o,1605
|
|
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
|