llama-cloud 0.1.35__py3-none-any.whl → 0.1.36__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 +20 -2
- llama_cloud/resources/admin/client.py +51 -0
- llama_cloud/resources/classifier/client.py +231 -181
- llama_cloud/resources/data_sinks/types/data_sink_update_component.py +2 -0
- llama_cloud/resources/llama_extract/client.py +96 -4
- llama_cloud/types/__init__.py +20 -2
- llama_cloud/types/classification_result.py +4 -5
- llama_cloud/types/classifier_rule.py +43 -0
- llama_cloud/types/classify_job.py +45 -0
- llama_cloud/types/{classify_response.py → classify_job_results.py} +3 -6
- llama_cloud/types/classify_job_with_status.py +47 -0
- llama_cloud/types/classify_parsing_configuration.py +38 -0
- llama_cloud/types/cloud_astra_db_vector_store.py +51 -0
- llama_cloud/types/cloud_confluence_data_source.py +15 -0
- llama_cloud/types/configurable_data_sink_names.py +4 -0
- llama_cloud/types/data_sink_component.py +2 -0
- llama_cloud/types/data_sink_create_component.py +2 -0
- llama_cloud/types/failure_handling_config.py +37 -0
- llama_cloud/types/file_classification.py +41 -0
- llama_cloud/types/file_store_info_response.py +34 -0
- llama_cloud/types/file_store_info_response_status.py +25 -0
- llama_cloud/types/supported_llm_model_names.py +12 -0
- {llama_cloud-0.1.35.dist-info → llama_cloud-0.1.36.dist-info}/METADATA +2 -4
- {llama_cloud-0.1.35.dist-info → llama_cloud-0.1.36.dist-info}/RECORD +26 -17
- {llama_cloud-0.1.35.dist-info → llama_cloud-0.1.36.dist-info}/WHEEL +1 -1
- {llama_cloud-0.1.35.dist-info → llama_cloud-0.1.36.dist-info}/LICENSE +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 .file_store_info_response_status import FileStoreInfoResponseStatus
|
|
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 FileStoreInfoResponse(pydantic.BaseModel):
|
|
19
|
+
available_buckets: typing.Optional[typing.Dict[str, str]]
|
|
20
|
+
unavailable_buckets: typing.Optional[typing.Dict[str, str]]
|
|
21
|
+
status: FileStoreInfoResponseStatus
|
|
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,25 @@
|
|
|
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 FileStoreInfoResponseStatus(str, enum.Enum):
|
|
10
|
+
OK = "ok"
|
|
11
|
+
MISSING_BUCKETS = "missing_buckets"
|
|
12
|
+
MISSING_CREDENTIALS = "missing_credentials"
|
|
13
|
+
|
|
14
|
+
def visit(
|
|
15
|
+
self,
|
|
16
|
+
ok: typing.Callable[[], T_Result],
|
|
17
|
+
missing_buckets: typing.Callable[[], T_Result],
|
|
18
|
+
missing_credentials: typing.Callable[[], T_Result],
|
|
19
|
+
) -> T_Result:
|
|
20
|
+
if self is FileStoreInfoResponseStatus.OK:
|
|
21
|
+
return ok()
|
|
22
|
+
if self is FileStoreInfoResponseStatus.MISSING_BUCKETS:
|
|
23
|
+
return missing_buckets()
|
|
24
|
+
if self is FileStoreInfoResponseStatus.MISSING_CREDENTIALS:
|
|
25
|
+
return missing_credentials()
|
|
@@ -14,6 +14,9 @@ class SupportedLlmModelNames(str, enum.Enum):
|
|
|
14
14
|
GPT_4_1_MINI = "GPT_4_1_MINI"
|
|
15
15
|
AZURE_OPENAI_GPT_4_O = "AZURE_OPENAI_GPT_4O"
|
|
16
16
|
AZURE_OPENAI_GPT_4_O_MINI = "AZURE_OPENAI_GPT_4O_MINI"
|
|
17
|
+
AZURE_OPENAI_GPT_4_1 = "AZURE_OPENAI_GPT_4_1"
|
|
18
|
+
AZURE_OPENAI_GPT_4_1_MINI = "AZURE_OPENAI_GPT_4_1_MINI"
|
|
19
|
+
AZURE_OPENAI_GPT_4_1_NANO = "AZURE_OPENAI_GPT_4_1_NANO"
|
|
17
20
|
CLAUDE_3_5_SONNET = "CLAUDE_3_5_SONNET"
|
|
18
21
|
BEDROCK_CLAUDE_3_5_SONNET_V_1 = "BEDROCK_CLAUDE_3_5_SONNET_V1"
|
|
19
22
|
BEDROCK_CLAUDE_3_5_SONNET_V_2 = "BEDROCK_CLAUDE_3_5_SONNET_V2"
|
|
@@ -28,6 +31,9 @@ class SupportedLlmModelNames(str, enum.Enum):
|
|
|
28
31
|
gpt_4_1_mini: typing.Callable[[], T_Result],
|
|
29
32
|
azure_openai_gpt_4_o: typing.Callable[[], T_Result],
|
|
30
33
|
azure_openai_gpt_4_o_mini: typing.Callable[[], T_Result],
|
|
34
|
+
azure_openai_gpt_4_1: typing.Callable[[], T_Result],
|
|
35
|
+
azure_openai_gpt_4_1_mini: typing.Callable[[], T_Result],
|
|
36
|
+
azure_openai_gpt_4_1_nano: typing.Callable[[], T_Result],
|
|
31
37
|
claude_3_5_sonnet: typing.Callable[[], T_Result],
|
|
32
38
|
bedrock_claude_3_5_sonnet_v_1: typing.Callable[[], T_Result],
|
|
33
39
|
bedrock_claude_3_5_sonnet_v_2: typing.Callable[[], T_Result],
|
|
@@ -47,6 +53,12 @@ class SupportedLlmModelNames(str, enum.Enum):
|
|
|
47
53
|
return azure_openai_gpt_4_o()
|
|
48
54
|
if self is SupportedLlmModelNames.AZURE_OPENAI_GPT_4_O_MINI:
|
|
49
55
|
return azure_openai_gpt_4_o_mini()
|
|
56
|
+
if self is SupportedLlmModelNames.AZURE_OPENAI_GPT_4_1:
|
|
57
|
+
return azure_openai_gpt_4_1()
|
|
58
|
+
if self is SupportedLlmModelNames.AZURE_OPENAI_GPT_4_1_MINI:
|
|
59
|
+
return azure_openai_gpt_4_1_mini()
|
|
60
|
+
if self is SupportedLlmModelNames.AZURE_OPENAI_GPT_4_1_NANO:
|
|
61
|
+
return azure_openai_gpt_4_1_nano()
|
|
50
62
|
if self is SupportedLlmModelNames.CLAUDE_3_5_SONNET:
|
|
51
63
|
return claude_3_5_sonnet()
|
|
52
64
|
if self is SupportedLlmModelNames.BEDROCK_CLAUDE_3_5_SONNET_V_1:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
2
|
Name: llama-cloud
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.36
|
|
4
4
|
Summary:
|
|
5
5
|
License: MIT
|
|
6
6
|
Author: Logan Markewich
|
|
@@ -12,8 +12,6 @@ Classifier: Programming Language :: Python :: 3.8
|
|
|
12
12
|
Classifier: Programming Language :: Python :: 3.9
|
|
13
13
|
Classifier: Programming Language :: Python :: 3.10
|
|
14
14
|
Classifier: Programming Language :: Python :: 3.11
|
|
15
|
-
Classifier: Programming Language :: Python :: 3.12
|
|
16
|
-
Classifier: Programming Language :: Python :: 3.13
|
|
17
15
|
Requires-Dist: certifi (>=2024.7.4)
|
|
18
16
|
Requires-Dist: httpx (>=0.20.0)
|
|
19
17
|
Requires-Dist: pydantic (>=1.10)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
llama_cloud/__init__.py,sha256=
|
|
1
|
+
llama_cloud/__init__.py,sha256=ZE5Y7UEItg2hbjMAjjLgdoMaEYCnc478iEHSGwS4HAo,27419
|
|
2
2
|
llama_cloud/client.py,sha256=xIC_pTNYLA3AfLE8esqhrzam93LLo7oc6Vrog64Bwzw,6399
|
|
3
3
|
llama_cloud/core/__init__.py,sha256=QJS3CJ2TYP2E1Tge0CS6Z7r8LTNzJHQVX1hD3558eP0,519
|
|
4
4
|
llama_cloud/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
|
|
@@ -11,7 +11,7 @@ llama_cloud/errors/__init__.py,sha256=pbbVUFtB9LCocA1RMWMMF_RKjsy5YkOKX5BAuE49w6
|
|
|
11
11
|
llama_cloud/errors/unprocessable_entity_error.py,sha256=FvR7XPlV3Xx5nu8HNlmLhBRdk4so_gCHjYT5PyZe6sM,313
|
|
12
12
|
llama_cloud/resources/__init__.py,sha256=YEJrxAIFcQ6-d8qKlUYidwJqWFVWLKUw4B3gQrn1nKI,4429
|
|
13
13
|
llama_cloud/resources/admin/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
14
|
-
llama_cloud/resources/admin/client.py,sha256=
|
|
14
|
+
llama_cloud/resources/admin/client.py,sha256=2eXQ7OVBgxT2c_EX3mFxKyoAwuuZ6aDSkLJ7Yf8AOKw,5956
|
|
15
15
|
llama_cloud/resources/agent_deployments/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
16
16
|
llama_cloud/resources/agent_deployments/client.py,sha256=3EOzOjmRs4KISgJ566enq3FCuN3YtskjO0OHqQGtkQ0,6122
|
|
17
17
|
llama_cloud/resources/beta/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
@@ -19,11 +19,11 @@ llama_cloud/resources/beta/client.py,sha256=KMveY6Uj_lurX9DcY198GoOW7rhww_emrvHF
|
|
|
19
19
|
llama_cloud/resources/chat_apps/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
20
20
|
llama_cloud/resources/chat_apps/client.py,sha256=orSI8rpQbUwVEToolEeiEi5Qe--suXFvfu6D9JDii5I,23595
|
|
21
21
|
llama_cloud/resources/classifier/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
22
|
-
llama_cloud/resources/classifier/client.py,sha256=
|
|
22
|
+
llama_cloud/resources/classifier/client.py,sha256=4oiCJVFPl1reWlXk_wEoX_r5_FeSc2dH_MKQyX8Xzro,13650
|
|
23
23
|
llama_cloud/resources/data_sinks/__init__.py,sha256=ZHUjn3HbKhq_7QS1q74r2m5RGKF5lxcvF2P6pGvpcis,147
|
|
24
24
|
llama_cloud/resources/data_sinks/client.py,sha256=GpD6FhbGqkg2oUToyMG6J8hPxG_iG7W5ZJRo0qg3yzk,20639
|
|
25
25
|
llama_cloud/resources/data_sinks/types/__init__.py,sha256=M1aTcufJwiEZo9B0KmYj9PfkSd6I1ooFt9tpIRGwgg8,168
|
|
26
|
-
llama_cloud/resources/data_sinks/types/data_sink_update_component.py,sha256=
|
|
26
|
+
llama_cloud/resources/data_sinks/types/data_sink_update_component.py,sha256=ynPdEg844hZaD6EcAK0jrMY_vogtvmLTZ7FZSwWcor8,912
|
|
27
27
|
llama_cloud/resources/data_sources/__init__.py,sha256=McURkcNBGHXH1hmRDRmZI1dRzJrekCTHZsgv03r2oZI,227
|
|
28
28
|
llama_cloud/resources/data_sources/client.py,sha256=SZFm8bW5nkaXringdSnmxHqvVjKM7cNNOtqVXjgTKhc,21855
|
|
29
29
|
llama_cloud/resources/data_sources/types/__init__.py,sha256=Cd5xEECTzXqQSfJALfJPSjudlSLeb3RENeJVi8vwPbM,303
|
|
@@ -44,7 +44,7 @@ llama_cloud/resources/files/types/file_create_resource_info_value.py,sha256=R7Y-
|
|
|
44
44
|
llama_cloud/resources/jobs/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
45
45
|
llama_cloud/resources/jobs/client.py,sha256=gv_N8e0lay7cjt6MCwx-Cj4FiCXKhbyCDaWbadaJpgY,6270
|
|
46
46
|
llama_cloud/resources/llama_extract/__init__.py,sha256=V6VZ8hQXwAuvOOZyk43nnbINoDQqEr03AjKQPhYKluk,997
|
|
47
|
-
llama_cloud/resources/llama_extract/client.py,sha256=
|
|
47
|
+
llama_cloud/resources/llama_extract/client.py,sha256=B_qhVsk-Qs81qrFOVgWqcvelSB3TLWFJCibnn--3BjE,83096
|
|
48
48
|
llama_cloud/resources/llama_extract/types/__init__.py,sha256=2Iu4w5LXZY2Govr1RzahIfY0b84y658SQjMDtj7rH_0,1497
|
|
49
49
|
llama_cloud/resources/llama_extract/types/extract_agent_create_data_schema.py,sha256=zB31hJQ8hKaIsPkfTWiX5hqsPVFMyyeWEDZ_Aq237jo,305
|
|
50
50
|
llama_cloud/resources/llama_extract/types/extract_agent_create_data_schema_zero_value.py,sha256=xoyXH3f0Y5beMWBxmtXSz6QoB_df_-0QBsYdjBhZnGw,217
|
|
@@ -77,7 +77,7 @@ llama_cloud/resources/retrievers/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-
|
|
|
77
77
|
llama_cloud/resources/retrievers/client.py,sha256=z2LhmA-cZVFzr9P6loeCZYnJbvSIk0QitFeVFp-IyZk,32126
|
|
78
78
|
llama_cloud/resources/users/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
79
79
|
llama_cloud/resources/users/client.py,sha256=A2s8e2syQHkkSwPz-Lrt_Zxp1K-8nqJqj5EafE6NWYs,5545
|
|
80
|
-
llama_cloud/types/__init__.py,sha256=
|
|
80
|
+
llama_cloud/types/__init__.py,sha256=zPg9ZvyXe6PcaPTS519YoNDtKLjfGdUeoXH0Hr_wGMc,33040
|
|
81
81
|
llama_cloud/types/advanced_mode_transform_config.py,sha256=4xCXye0_cPmVS1F8aNTx81sIaEPjQH9kiCCAIoqUzlI,1502
|
|
82
82
|
llama_cloud/types/advanced_mode_transform_config_chunking_config.py,sha256=wYbJnWLpeQDfhmDZz-wJfYzD1iGT5Jcxb9ga3mzUuvk,1983
|
|
83
83
|
llama_cloud/types/advanced_mode_transform_config_segmentation_config.py,sha256=anNGq0F5-IlbIW3kpC8OilzLJnUq5tdIcWHnRnmlYsg,1303
|
|
@@ -106,12 +106,17 @@ llama_cloud/types/chat_app.py,sha256=fLuzYkXLq51C_Y23hoLwfmG-OiT7jlyHt2JGe6-f1IA
|
|
|
106
106
|
llama_cloud/types/chat_app_response.py,sha256=WSKr1KI9_pGTSstr3I53kZ8qb3y87Q4ulh8fR0C7sSU,1784
|
|
107
107
|
llama_cloud/types/chat_data.py,sha256=ZYqVtjXF6qPGajU4IWZu3InpU54TXJwBFiqxBepylP0,1197
|
|
108
108
|
llama_cloud/types/chunk_mode.py,sha256=J4vqAQfQG6PWsIv1Fe_99nVsAfDbv_P81_KVsJ9AkU4,790
|
|
109
|
-
llama_cloud/types/classification_result.py,sha256=
|
|
110
|
-
llama_cloud/types/
|
|
109
|
+
llama_cloud/types/classification_result.py,sha256=1faExxbtJLoYjy0h0Gl38Shk2idySEOenJBjQlcRpXs,1309
|
|
110
|
+
llama_cloud/types/classifier_rule.py,sha256=-64iBABkQ_IXN8rA77xA6L4xSsj8epTVT9Z1C7ypGx0,1533
|
|
111
|
+
llama_cloud/types/classify_job.py,sha256=tT1_9g_PkBqTkq7xMpsfT4nMICwXXcqyl4ldsfCHICc,1654
|
|
112
|
+
llama_cloud/types/classify_job_results.py,sha256=gasxmGX4D1cJuAY0z8Sm7PuZ1TIeEPYzp6VggWeelko,1279
|
|
113
|
+
llama_cloud/types/classify_job_with_status.py,sha256=DwJIfzuaUoLZ0KAA2dGj6DhZ9FtrUFtZRRrkH0BmekM,1798
|
|
114
|
+
llama_cloud/types/classify_parsing_configuration.py,sha256=FMbDCtz9gGu557WRtiKkMsKfzPWuDF-XKW8Z2DeOL9g,1270
|
|
115
|
+
llama_cloud/types/cloud_astra_db_vector_store.py,sha256=uvPZcMk0QISyMee0n2Z6QapCIejvibY94XWn5gmieO8,2065
|
|
111
116
|
llama_cloud/types/cloud_az_storage_blob_data_source.py,sha256=NT4cYsD1M868_bSJxKM9cvTMtjQtQxKloE4vRv8_lwg,1534
|
|
112
117
|
llama_cloud/types/cloud_azure_ai_search_vector_store.py,sha256=9GTaft7BaKsR9RJQp5dlpbslXUlTMA1AcDdKV1ApfqI,1513
|
|
113
118
|
llama_cloud/types/cloud_box_data_source.py,sha256=9bffCaKGvctSsk9OdTpzzP__O1NDpb9wdvKY2uwjpwY,1470
|
|
114
|
-
llama_cloud/types/cloud_confluence_data_source.py,sha256=
|
|
119
|
+
llama_cloud/types/cloud_confluence_data_source.py,sha256=q-bBwkG5L2QZqZdPDlvgzdz9Fv0jz4nn2Qpea3J0xu0,2303
|
|
115
120
|
llama_cloud/types/cloud_document.py,sha256=Rg_H8lcz2TzxEAIdU-m5mGpkM7s0j1Cn4JHkXYddmGs,1255
|
|
116
121
|
llama_cloud/types/cloud_document_create.py,sha256=fQ1gZAtLCpr-a-sPbMez_5fK9JMU3uyp2tNvIzWNG3U,1278
|
|
117
122
|
llama_cloud/types/cloud_jira_data_source.py,sha256=9R20k8Ne0Bl9X5dgSxpM_IGOFmC70Llz0pJ93rAKRvw,1458
|
|
@@ -131,13 +136,13 @@ llama_cloud/types/composite_retrieval_mode.py,sha256=PtN0vQ90xyAJL4vyGRG4lMNOpnJ
|
|
|
131
136
|
llama_cloud/types/composite_retrieval_result.py,sha256=EulVseVvpK50kto4wQweLO7jJe6l6Ym1erKa4dOl4CU,1801
|
|
132
137
|
llama_cloud/types/composite_retrieved_text_node.py,sha256=eTQ99cdZ2PASff5n4oVV1oaNiS9Ie3AtY_E55kBYpBs,1702
|
|
133
138
|
llama_cloud/types/composite_retrieved_text_node_with_score.py,sha256=o-HvmyjqODc68zYuobtj10_62FMBAKRLfRoTHGDdmxw,1148
|
|
134
|
-
llama_cloud/types/configurable_data_sink_names.py,sha256=
|
|
139
|
+
llama_cloud/types/configurable_data_sink_names.py,sha256=eGSnwk5yWffBBc0C3Iuh8RlynGTmRC1hqVv0JlUfbNE,1385
|
|
135
140
|
llama_cloud/types/configurable_data_source_names.py,sha256=mNW71sSgcVhU3kePAOUgRxeqK1Vo7F_J1xIzmYKPRq0,1971
|
|
136
141
|
llama_cloud/types/credit_type.py,sha256=nwSRKDWgHk_msdWitctqtyeZwj5EFd6VLto6NF2yCd4,971
|
|
137
142
|
llama_cloud/types/data_sink.py,sha256=PeexYHHoD8WkVp9WsFtfC-AIWszcgeJUprG1bwC8WsQ,1498
|
|
138
|
-
llama_cloud/types/data_sink_component.py,sha256=
|
|
143
|
+
llama_cloud/types/data_sink_component.py,sha256=yNX2YbevUd6RIbaAvkB40ttU0VSx2JBF-eCuLB_Au9Y,843
|
|
139
144
|
llama_cloud/types/data_sink_create.py,sha256=dAaFPCwZ5oX0Fbf7ij62dzSaYnrhj3EHmnLnYnw2KgI,1360
|
|
140
|
-
llama_cloud/types/data_sink_create_component.py,sha256=
|
|
145
|
+
llama_cloud/types/data_sink_create_component.py,sha256=0LWeqGDeQh3cZm2h5_IrSlFoU5VKmIILaOdE1VtPtfc,849
|
|
141
146
|
llama_cloud/types/data_source.py,sha256=QkJsQBlLt7cX0FxYuNF1w9yZw1BnNcGiQTTfMAuxiEM,1852
|
|
142
147
|
llama_cloud/types/data_source_component.py,sha256=QBxAneOFe8crS0z-eFo3gd1siToQ4hYsLdfB4p3ZeVU,974
|
|
143
148
|
llama_cloud/types/data_source_create.py,sha256=s0bAX_GUwiRdrL-PXS9ROrvq3xpmqbqzdMa6thqL2P4,1581
|
|
@@ -187,13 +192,17 @@ llama_cloud/types/extract_schema_validate_response_data_schema_value.py,sha256=l
|
|
|
187
192
|
llama_cloud/types/extract_state.py,sha256=TNeVAXXKZaiM2srlbQlzRSn4_TDpR4xyT_yQhJUxFvk,775
|
|
188
193
|
llama_cloud/types/extract_target.py,sha256=Gt-FNqblzcjdfq1hxsqEjWWu-HNLXdKy4w98nog52Ms,478
|
|
189
194
|
llama_cloud/types/fail_page_mode.py,sha256=n4fgPpiEB5siPoEg0Sux4COg7ElNybjshxDoUihZwRU,786
|
|
195
|
+
llama_cloud/types/failure_handling_config.py,sha256=EmAQW0qm7-JTSYFwhmIWxqkVNWym_AyAJIMEmeI9Cqc,1216
|
|
190
196
|
llama_cloud/types/file.py,sha256=rQXitPRKOYw91nK5qOZ0vpOmIx_MCpRb0g78d9dQs6w,1822
|
|
197
|
+
llama_cloud/types/file_classification.py,sha256=jKzAc_3rg0Usyf3TNr-bI5HZn9zGIj9vYH90RKoDtiY,1418
|
|
191
198
|
llama_cloud/types/file_count_by_status_response.py,sha256=WuorbZvKjDs9Ql1hUiQu4gN5iCm8d6fr92KLyHpRvQU,1356
|
|
192
199
|
llama_cloud/types/file_data.py,sha256=dH2SNK9ZM-ZH7uKFIfBsk8bVixM33rUr40BdZWFXLhU,1225
|
|
193
200
|
llama_cloud/types/file_id_presigned_url.py,sha256=Yr_MGFKbuBEHK4efRSK53fHcoo5bbAKnqQGGhMycUc0,1398
|
|
194
201
|
llama_cloud/types/file_parse_public.py,sha256=sshZ0BcjHMGpuz4ylSurv0K_3ejfPrUGGyDxBHCtdMg,1378
|
|
195
202
|
llama_cloud/types/file_permission_info_value.py,sha256=RyQlNbhvIKS87Ywu7XUaw5jDToZX64M9Wqzu1U_q2Us,197
|
|
196
203
|
llama_cloud/types/file_resource_info_value.py,sha256=g6T6ELeLK9jgcvX6r-EuAl_4JkwnyqdS0RRoabMReSU,195
|
|
204
|
+
llama_cloud/types/file_store_info_response.py,sha256=YztOvESSDM52urD0gyO47RPWz-kZEjIpEYSeZYfkCLk,1195
|
|
205
|
+
llama_cloud/types/file_store_info_response_status.py,sha256=UiPdZDEACVuiZ6zqkLnAYJVIxa-TIVwGN6_xF9lt9Xc,778
|
|
197
206
|
llama_cloud/types/filter_condition.py,sha256=YEc-NaZbMha4oZVSKerZ6-gNYriNOZmTHTRMKX-9Ju0,678
|
|
198
207
|
llama_cloud/types/filter_operation.py,sha256=lzyF_LQ-bT_wubU2bSbV6q2oncCE3mypz3D6qkAR86U,1663
|
|
199
208
|
llama_cloud/types/filter_operation_eq.py,sha256=7UQkjycQvUFBvd1KRWfNacXAEgp2eGG6XNej0EikP1M,165
|
|
@@ -356,7 +365,7 @@ llama_cloud/types/status_enum.py,sha256=cUBIlys89E8PUzmVqqawu7qTDF0aRqBwiijOmRDP
|
|
|
356
365
|
llama_cloud/types/struct_mode.py,sha256=ROicwjXfFmgVU8_xSVxJlnFUzRNKG5VIEF1wYg9uOPU,1020
|
|
357
366
|
llama_cloud/types/struct_parse_conf.py,sha256=3QQBy8VP9JB16d4fTGK_GiU6PUALIOWCN9GYI3in6ic,2439
|
|
358
367
|
llama_cloud/types/supported_llm_model.py,sha256=hubSopFICVNEegbJbtbpK6zRHwFPwUNtrw_NAw_3bfg,1380
|
|
359
|
-
llama_cloud/types/supported_llm_model_names.py,sha256=
|
|
368
|
+
llama_cloud/types/supported_llm_model_names.py,sha256=w2FrfffSwpJflq1EoO6Kw7ViTOZNGX4hf60k0Qf3VLA,3213
|
|
360
369
|
llama_cloud/types/text_block.py,sha256=X154sQkSyposXuRcEWNp_tWcDQ-AI6q_-MfJUN5exP8,958
|
|
361
370
|
llama_cloud/types/text_node.py,sha256=Tq3QmuKC5cIHvC9wAtvhsXl1g2sACs2yJwQ0Uko8GSU,2846
|
|
362
371
|
llama_cloud/types/text_node_relationships_value.py,sha256=qmXURTk1Xg7ZDzRSSV1uDEel0AXRLohND5ioezibHY0,217
|
|
@@ -380,7 +389,7 @@ llama_cloud/types/vertex_embedding_mode.py,sha256=yY23FjuWU_DkXjBb3JoKV4SCMqel2B
|
|
|
380
389
|
llama_cloud/types/vertex_text_embedding.py,sha256=-C4fNCYfFl36ATdBMGFVPpiHIKxjk0KB1ERA2Ec20aU,1932
|
|
381
390
|
llama_cloud/types/webhook_configuration.py,sha256=_Xm15whrWoKNBuCoO5y_NunA-ByhCAYK87LnC4W-Pzg,1350
|
|
382
391
|
llama_cloud/types/webhook_configuration_webhook_events_item.py,sha256=OL3moFO_6hsKZYSBQBsSHmWA0NgLcLJgBPZfABwT60c,2544
|
|
383
|
-
llama_cloud-0.1.
|
|
384
|
-
llama_cloud-0.1.
|
|
385
|
-
llama_cloud-0.1.
|
|
386
|
-
llama_cloud-0.1.
|
|
392
|
+
llama_cloud-0.1.36.dist-info/LICENSE,sha256=_iNqtPcw1Ue7dZKwOwgPtbegMUkWVy15hC7bffAdNmY,1067
|
|
393
|
+
llama_cloud-0.1.36.dist-info/METADATA,sha256=j9LO4ZreG5bdpYgvrpUvEB7wjKJQVNT0106_7aqGGU0,1092
|
|
394
|
+
llama_cloud-0.1.36.dist-info/WHEEL,sha256=d2fvjOD7sXsVzChCqf0Ty0JbHKBaLYwDbGQDwQTnJ50,88
|
|
395
|
+
llama_cloud-0.1.36.dist-info/RECORD,,
|
|
File without changes
|