llama-cloud 0.1.13__py3-none-any.whl → 0.1.14__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 +36 -10
- llama_cloud/resources/__init__.py +0 -14
- llama_cloud/resources/llama_extract/__init__.py +0 -17
- llama_cloud/resources/llama_extract/client.py +105 -318
- llama_cloud/resources/organizations/client.py +15 -5
- llama_cloud/resources/parsing/client.py +24 -0
- llama_cloud/resources/pipelines/client.py +145 -10
- llama_cloud/resources/projects/client.py +25 -9
- llama_cloud/resources/reports/client.py +16 -6
- llama_cloud/types/__init__.py +42 -4
- llama_cloud/types/{plan.py → base_plan.py} +16 -13
- llama_cloud/types/base_plan_metronome_plan_type.py +17 -0
- llama_cloud/types/base_plan_name.py +45 -0
- llama_cloud/types/base_plan_plan_frequency.py +25 -0
- llama_cloud/types/billing_period.py +32 -0
- llama_cloud/types/credit_type.py +32 -0
- llama_cloud/types/data_source.py +1 -0
- llama_cloud/types/extract_agent_create.py +39 -0
- llama_cloud/types/extract_agent_update.py +38 -0
- llama_cloud/types/extract_schema_validate_request.py +32 -0
- llama_cloud/types/free_credits_usage.py +34 -0
- llama_cloud/types/llama_parse_parameters.py +3 -0
- llama_cloud/types/paginated_list_cloud_documents_response.py +35 -0
- llama_cloud/types/pipeline_data_source.py +1 -0
- llama_cloud/types/pipeline_file.py +1 -0
- llama_cloud/types/plan_limits.py +52 -0
- llama_cloud/types/recurring_credit_grant.py +44 -0
- llama_cloud/types/usage.py +5 -4
- llama_cloud/types/usage_active_alerts_item.py +25 -0
- llama_cloud/types/{interval_usage_and_plan.py → usage_and_plan.py} +4 -6
- {llama_cloud-0.1.13.dist-info → llama_cloud-0.1.14.dist-info}/METADATA +3 -1
- {llama_cloud-0.1.13.dist-info → llama_cloud-0.1.14.dist-info}/RECORD +40 -28
- {llama_cloud-0.1.13.dist-info → llama_cloud-0.1.14.dist-info}/WHEEL +1 -1
- llama_cloud/resources/llama_extract/types/__init__.py +0 -17
- /llama_cloud/{resources/llama_extract/types → types}/extract_agent_create_data_schema.py +0 -0
- /llama_cloud/{resources/llama_extract/types → types}/extract_agent_create_data_schema_zero_value.py +0 -0
- /llama_cloud/{resources/llama_extract/types → types}/extract_agent_update_data_schema.py +0 -0
- /llama_cloud/{resources/llama_extract/types → types}/extract_agent_update_data_schema_zero_value.py +0 -0
- /llama_cloud/{resources/llama_extract/types → types}/extract_schema_validate_request_data_schema.py +0 -0
- /llama_cloud/{resources/llama_extract/types → types}/extract_schema_validate_request_data_schema_zero_value.py +0 -0
- {llama_cloud-0.1.13.dist-info → llama_cloud-0.1.14.dist-info}/LICENSE +0 -0
|
@@ -0,0 +1,44 @@
|
|
|
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 .credit_type import CreditType
|
|
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 RecurringCreditGrant(pydantic.BaseModel):
|
|
19
|
+
name: str
|
|
20
|
+
credit_amount: int
|
|
21
|
+
credit_type: CreditType
|
|
22
|
+
product_id: str = pydantic.Field(
|
|
23
|
+
description="The ID of the product in Metronome used to represent the credit grant"
|
|
24
|
+
)
|
|
25
|
+
priority: float
|
|
26
|
+
rollover_fraction: float = pydantic.Field(
|
|
27
|
+
description="The fraction of the credit that will roll over to the next period, between 0 and 1"
|
|
28
|
+
)
|
|
29
|
+
periods_duration: typing.Optional[float] = pydantic.Field(
|
|
30
|
+
description="How many billing periods the credit grant will last for"
|
|
31
|
+
)
|
|
32
|
+
|
|
33
|
+
def json(self, **kwargs: typing.Any) -> str:
|
|
34
|
+
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
|
35
|
+
return super().json(**kwargs_with_defaults)
|
|
36
|
+
|
|
37
|
+
def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
|
|
38
|
+
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
|
39
|
+
return super().dict(**kwargs_with_defaults)
|
|
40
|
+
|
|
41
|
+
class Config:
|
|
42
|
+
frozen = True
|
|
43
|
+
smart_union = True
|
|
44
|
+
json_encoders = {dt.datetime: serialize_datetime}
|
llama_cloud/types/usage.py
CHANGED
|
@@ -4,6 +4,8 @@ import datetime as dt
|
|
|
4
4
|
import typing
|
|
5
5
|
|
|
6
6
|
from ..core.datetime_utils import serialize_datetime
|
|
7
|
+
from .free_credits_usage import FreeCreditsUsage
|
|
8
|
+
from .usage_active_alerts_item import UsageActiveAlertsItem
|
|
7
9
|
|
|
8
10
|
try:
|
|
9
11
|
import pydantic
|
|
@@ -19,13 +21,12 @@ class Usage(pydantic.BaseModel):
|
|
|
19
21
|
Response model; use UsageSubmission for tracking
|
|
20
22
|
"""
|
|
21
23
|
|
|
24
|
+
active_free_credits_usage: typing.Optional[typing.List[FreeCreditsUsage]]
|
|
22
25
|
total_users: typing.Optional[int]
|
|
23
26
|
total_indexes: typing.Optional[int]
|
|
24
27
|
total_indexed_pages: typing.Optional[int]
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
index_pages: typing.Optional[int]
|
|
28
|
-
credits: typing.Optional[int]
|
|
28
|
+
active_alerts: typing.Optional[typing.List[UsageActiveAlertsItem]]
|
|
29
|
+
current_invoice_total_usd_cents: typing.Optional[int]
|
|
29
30
|
|
|
30
31
|
def json(self, **kwargs: typing.Any) -> str:
|
|
31
32
|
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
|
@@ -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 UsageActiveAlertsItem(str, enum.Enum):
|
|
10
|
+
PLAN_SPEND_LIMIT_EXCEEDED = "plan_spend_limit_exceeded"
|
|
11
|
+
CONFIGURED_SPEND_LIMIT_EXCEEDED = "configured_spend_limit_exceeded"
|
|
12
|
+
FREE_CREDITS_EXHAUSTED = "free_credits_exhausted"
|
|
13
|
+
|
|
14
|
+
def visit(
|
|
15
|
+
self,
|
|
16
|
+
plan_spend_limit_exceeded: typing.Callable[[], T_Result],
|
|
17
|
+
configured_spend_limit_exceeded: typing.Callable[[], T_Result],
|
|
18
|
+
free_credits_exhausted: typing.Callable[[], T_Result],
|
|
19
|
+
) -> T_Result:
|
|
20
|
+
if self is UsageActiveAlertsItem.PLAN_SPEND_LIMIT_EXCEEDED:
|
|
21
|
+
return plan_spend_limit_exceeded()
|
|
22
|
+
if self is UsageActiveAlertsItem.CONFIGURED_SPEND_LIMIT_EXCEEDED:
|
|
23
|
+
return configured_spend_limit_exceeded()
|
|
24
|
+
if self is UsageActiveAlertsItem.FREE_CREDITS_EXHAUSTED:
|
|
25
|
+
return free_credits_exhausted()
|
|
@@ -4,7 +4,7 @@ import datetime as dt
|
|
|
4
4
|
import typing
|
|
5
5
|
|
|
6
6
|
from ..core.datetime_utils import serialize_datetime
|
|
7
|
-
from .
|
|
7
|
+
from .base_plan import BasePlan
|
|
8
8
|
from .usage import Usage
|
|
9
9
|
|
|
10
10
|
try:
|
|
@@ -16,11 +16,9 @@ except ImportError:
|
|
|
16
16
|
import pydantic # type: ignore
|
|
17
17
|
|
|
18
18
|
|
|
19
|
-
class
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
plan: typing.Optional[Plan]
|
|
23
|
-
usage: typing.Optional[Usage]
|
|
19
|
+
class UsageAndPlan(pydantic.BaseModel):
|
|
20
|
+
plan: BasePlan
|
|
21
|
+
usage: Usage
|
|
24
22
|
|
|
25
23
|
def json(self, **kwargs: typing.Any) -> str:
|
|
26
24
|
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: llama-cloud
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.14
|
|
4
4
|
Summary:
|
|
5
5
|
License: MIT
|
|
6
6
|
Author: Logan Markewich
|
|
@@ -12,6 +12,8 @@ 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
|
|
15
17
|
Requires-Dist: certifi (>=2024.7.4)
|
|
16
18
|
Requires-Dist: httpx (>=0.20.0)
|
|
17
19
|
Requires-Dist: pydantic (>=1.10)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
llama_cloud/__init__.py,sha256=
|
|
1
|
+
llama_cloud/__init__.py,sha256=oto0-DnvGBhrsq8rZG6BOZfURSx45dq3NRYt-WIVMpc,22865
|
|
2
2
|
llama_cloud/client.py,sha256=0fK6iRBCA77eSs0zFrYQj-zD0BLy6Dr2Ss0ETJ4WaOY,5555
|
|
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=h2kWef5KlC8qpr-1MJyIoFVCsNBidRUUUWztnsr9AHs,3298
|
|
13
13
|
llama_cloud/resources/chat_apps/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
14
14
|
llama_cloud/resources/chat_apps/client.py,sha256=olEESaQB-fmQTIi1zfheTTUpt3iBw5-lTYVmiIX9u_s,22943
|
|
15
15
|
llama_cloud/resources/component_definitions/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
@@ -37,34 +37,27 @@ llama_cloud/resources/files/types/file_create_permission_info_value.py,sha256=KP
|
|
|
37
37
|
llama_cloud/resources/files/types/file_create_resource_info_value.py,sha256=R7Y-CJf7fnbvIqE3xOI5XOrmPwLbVJLC7zpxMu8Zopk,201
|
|
38
38
|
llama_cloud/resources/jobs/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
39
39
|
llama_cloud/resources/jobs/client.py,sha256=mN9uOzys9aZkhOJkApUy0yhfNeK8X09xQxT34ZPptNY,5386
|
|
40
|
-
llama_cloud/resources/llama_extract/__init__.py,sha256=
|
|
41
|
-
llama_cloud/resources/llama_extract/client.py,sha256=
|
|
42
|
-
llama_cloud/resources/llama_extract/types/__init__.py,sha256=yY34YD-MI4SnSbyJY5JwCGBBfqRr0dNh2zibRUt8mt4,895
|
|
43
|
-
llama_cloud/resources/llama_extract/types/extract_agent_create_data_schema.py,sha256=zB31hJQ8hKaIsPkfTWiX5hqsPVFMyyeWEDZ_Aq237jo,305
|
|
44
|
-
llama_cloud/resources/llama_extract/types/extract_agent_create_data_schema_zero_value.py,sha256=xoyXH3f0Y5beMWBxmtXSz6QoB_df_-0QBsYdjBhZnGw,217
|
|
45
|
-
llama_cloud/resources/llama_extract/types/extract_agent_update_data_schema.py,sha256=argR5gPRUYWY6ADCMKRdg-8NM-rsBM91_TEn8NKqVy8,305
|
|
46
|
-
llama_cloud/resources/llama_extract/types/extract_agent_update_data_schema_zero_value.py,sha256=Nvd892EFhg-PzlqoFp5i2owL7hCZ2SsuL7U4Tk9NeRI,217
|
|
47
|
-
llama_cloud/resources/llama_extract/types/extract_schema_validate_request_data_schema.py,sha256=uMqpKJdCmUNtryS2bkQTNA1AgDlWdtsBOP31iMt3zNA,346
|
|
48
|
-
llama_cloud/resources/llama_extract/types/extract_schema_validate_request_data_schema_zero_value.py,sha256=cUS7ez5r0Vx8T7SxwLYptZMmvpT5JoDVMyn54Q6VL-g,227
|
|
40
|
+
llama_cloud/resources/llama_extract/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
41
|
+
llama_cloud/resources/llama_extract/client.py,sha256=hYiITZt7CQsfPZ1A4_qq1U6ngIO5QbJTeUrrLo-KZkU,46554
|
|
49
42
|
llama_cloud/resources/organizations/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
50
|
-
llama_cloud/resources/organizations/client.py,sha256=
|
|
43
|
+
llama_cloud/resources/organizations/client.py,sha256=OGSVpkfY5wu8-22IFWVmtbYSDiy0-KqA3Lc1E_jNHvg,55889
|
|
51
44
|
llama_cloud/resources/parsing/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
52
|
-
llama_cloud/resources/parsing/client.py,sha256=
|
|
45
|
+
llama_cloud/resources/parsing/client.py,sha256=7IZQc5hUiGhlGYwRdValcRdtyDLEmc8Dmr-0xdccoVg,74316
|
|
53
46
|
llama_cloud/resources/pipelines/__init__.py,sha256=Mx7p3jDZRLMltsfywSufam_4AnHvmAfsxtMHVI72e-8,1083
|
|
54
|
-
llama_cloud/resources/pipelines/client.py,sha256
|
|
47
|
+
llama_cloud/resources/pipelines/client.py,sha256=-Oveo6XSfCZva-ylJp7DikV26KxkJsDr6xNFZ8FIqkQ,139274
|
|
55
48
|
llama_cloud/resources/pipelines/types/__init__.py,sha256=jjaMc0V3K1HZLMYZ6WT4ydMtBCVy-oF5koqTCovbDws,1202
|
|
56
49
|
llama_cloud/resources/pipelines/types/pipeline_file_update_custom_metadata_value.py,sha256=trI48WLxPcAqV9207Q6-3cj1nl4EGlZpw7En56ZsPgg,217
|
|
57
50
|
llama_cloud/resources/pipelines/types/pipeline_update_embedding_config.py,sha256=c8FF64fDrBMX_2RX4uY3CjbNc0Ss_AUJ4Eqs-KeV4Wc,2874
|
|
58
51
|
llama_cloud/resources/pipelines/types/pipeline_update_transform_config.py,sha256=KbkyULMv-qeS3qRd31ia6pd5rOdypS0o2UL42NRcA7E,321
|
|
59
52
|
llama_cloud/resources/projects/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
60
|
-
llama_cloud/resources/projects/client.py,sha256=
|
|
53
|
+
llama_cloud/resources/projects/client.py,sha256=Tn-8WLGKHc3tzJikrcPOlefjASen7fTAzBDbzdvXtes,56315
|
|
61
54
|
llama_cloud/resources/reports/__init__.py,sha256=cruYbQ1bIuJbRpkfaQY7ajUEslffjd7KzvzMzbtPH94,217
|
|
62
|
-
llama_cloud/resources/reports/client.py,sha256=
|
|
55
|
+
llama_cloud/resources/reports/client.py,sha256=kHjtXVVc1Xi3T1GyBvSW5K4mTdr6xQwZA3vw-liRKBg,46736
|
|
63
56
|
llama_cloud/resources/reports/types/__init__.py,sha256=LfwDYrI4RcQu-o42iAe7HkcwHww2YU90lOonBPTmZIk,291
|
|
64
57
|
llama_cloud/resources/reports/types/update_report_plan_api_v_1_reports_report_id_plan_patch_request_action.py,sha256=Qh-MSeRvDBfNb5hoLELivv1pLtrYVf52WVoP7G8V34A,807
|
|
65
58
|
llama_cloud/resources/retrievers/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
66
59
|
llama_cloud/resources/retrievers/client.py,sha256=ASDdqnwXX4qj0sCAkWO7RKFnQ1oiLzBLIQ2bwqnMOKs,24905
|
|
67
|
-
llama_cloud/types/__init__.py,sha256=
|
|
60
|
+
llama_cloud/types/__init__.py,sha256=Wu51DrEz4_aonTl2T_ftwoNyAyV_w8Jbi17wZ1rNnOQ,28238
|
|
68
61
|
llama_cloud/types/advanced_mode_transform_config.py,sha256=4xCXye0_cPmVS1F8aNTx81sIaEPjQH9kiCCAIoqUzlI,1502
|
|
69
62
|
llama_cloud/types/advanced_mode_transform_config_chunking_config.py,sha256=wYbJnWLpeQDfhmDZz-wJfYzD1iGT5Jcxb9ga3mzUuvk,1983
|
|
70
63
|
llama_cloud/types/advanced_mode_transform_config_segmentation_config.py,sha256=anNGq0F5-IlbIW3kpC8OilzLJnUq5tdIcWHnRnmlYsg,1303
|
|
@@ -72,9 +65,14 @@ llama_cloud/types/app_schema_chat_chat_message.py,sha256=4Mplkc7PczuxKL7Gga3aj8Q
|
|
|
72
65
|
llama_cloud/types/auto_transform_config.py,sha256=HVeHZM75DMRznScqLTfrMwcZwIdyWPuaEYbPewnHqwc,1168
|
|
73
66
|
llama_cloud/types/azure_open_ai_embedding.py,sha256=MeDqZoPYFN7Nv_imY9cfqDU9SPlEyAY4HcQZ4PF5X3g,2264
|
|
74
67
|
llama_cloud/types/azure_open_ai_embedding_config.py,sha256=o1zZhzcGElH3SeixFErrm7P_WFHQ6LvrLem_nKJWunw,1170
|
|
68
|
+
llama_cloud/types/base_plan.py,sha256=JThRn0N9swW7cVmfvAaJDqTNAUTqlYAHJFZhfTxHe0c,1743
|
|
69
|
+
llama_cloud/types/base_plan_metronome_plan_type.py,sha256=I3g_dVoWWztbmpWpYmseDqQSbwtlLUl2vS01tfgMjEA,499
|
|
70
|
+
llama_cloud/types/base_plan_name.py,sha256=a0GU8mJiloUQttaN5vmFpAx3UmwWabI0lmYts0cMSsw,1478
|
|
71
|
+
llama_cloud/types/base_plan_plan_frequency.py,sha256=idUZlDaSdMrMZ2lQ1ytBWM4QyduIZu6Gt2eLU0LVqH4,684
|
|
75
72
|
llama_cloud/types/base_prompt_template.py,sha256=Cw3887tnytHZ5bJBSlniyU9k5ASidv9VYR86--IbNqo,1248
|
|
76
73
|
llama_cloud/types/bedrock_embedding.py,sha256=qrUoVW9Q2DLg-3nBRfGsZqUWGszfzc6ZHR8LJiXTZk4,1908
|
|
77
74
|
llama_cloud/types/bedrock_embedding_config.py,sha256=32dMhoA2cLx1jeogDnCl9WPVb83Hn99nAALnt5BM208,1147
|
|
75
|
+
llama_cloud/types/billing_period.py,sha256=_BvznHPiB101hKeFmP0ZIRkBnGboxNvNgJD0BhegvN4,1002
|
|
78
76
|
llama_cloud/types/box_auth_mechanism.py,sha256=EwEdpWYytw_dRtSElfSMPhh5dxalYH8mGW3UAUpkUfY,502
|
|
79
77
|
llama_cloud/types/character_chunking_config.py,sha256=2ooAnrlVVbKj4nDi_lR66x5E6nWOmj5YDWhSMQD0ubc,1035
|
|
80
78
|
llama_cloud/types/character_splitter.py,sha256=Jm6ie7c9JmMqIqLfAN-96sYvNUaIyLzCPBjNUx29VUw,1896
|
|
@@ -113,12 +111,13 @@ llama_cloud/types/configurable_transformation_definition.py,sha256=LDOhI5IDxlLDW
|
|
|
113
111
|
llama_cloud/types/configurable_transformation_names.py,sha256=N_YhY8IuQxsqBteCibaQwEaY0zd6Ncb6jW69d9mjrdU,1898
|
|
114
112
|
llama_cloud/types/configured_transformation_item.py,sha256=9caK5ZOKgGCZc6ynJJIWwpxpScKHOHkZwHFlsBy-Fog,1826
|
|
115
113
|
llama_cloud/types/configured_transformation_item_component.py,sha256=VEwtkbnImKGtzaSaIb9q46xu7ZPZliqK7oMh_-ftiq8,712
|
|
114
|
+
llama_cloud/types/credit_type.py,sha256=nwSRKDWgHk_msdWitctqtyeZwj5EFd6VLto6NF2yCd4,971
|
|
116
115
|
llama_cloud/types/data_sink.py,sha256=PeexYHHoD8WkVp9WsFtfC-AIWszcgeJUprG1bwC8WsQ,1498
|
|
117
116
|
llama_cloud/types/data_sink_component.py,sha256=uvuxLY3MPDpv_bkT0y-tHSZVPRSHCkDBDHVff-036Dg,749
|
|
118
117
|
llama_cloud/types/data_sink_create.py,sha256=dAaFPCwZ5oX0Fbf7ij62dzSaYnrhj3EHmnLnYnw2KgI,1360
|
|
119
118
|
llama_cloud/types/data_sink_create_component.py,sha256=8QfNKSTJV_sQ0nJxlpfh0fBkMTSnQD1DTJR8ZMYaesI,755
|
|
120
119
|
llama_cloud/types/data_sink_definition.py,sha256=5ve_pq02s8szc34-wWobMe6BAPj_c7e9n9FFsfDqEQ0,1561
|
|
121
|
-
llama_cloud/types/data_source.py,sha256=
|
|
120
|
+
llama_cloud/types/data_source.py,sha256=4_lTRToLO4u9LYK66VygCPycrZuyct_aiovlxG5H2sE,1768
|
|
122
121
|
llama_cloud/types/data_source_component.py,sha256=yfXHoeHaqUMum7fIs3tZB0pOFMhDbAq7oCJtnob0gWY,1077
|
|
123
122
|
llama_cloud/types/data_source_create.py,sha256=s0bAX_GUwiRdrL-PXS9ROrvq3xpmqbqzdMa6thqL2P4,1581
|
|
124
123
|
llama_cloud/types/data_source_create_component.py,sha256=-P4FGv9Xg951n-77_bb-2_CF-33ZXcUkw52LPQNunBY,1083
|
|
@@ -142,7 +141,13 @@ llama_cloud/types/eval_question.py,sha256=UG042gXLw1uIW9hQOffCzIoGHVSve8Wk9ZeYGz
|
|
|
142
141
|
llama_cloud/types/eval_question_create.py,sha256=oOwxkE5gPj8RAwgr3uuTHfTvLSXmYkkxNHqsT7oUHjI,1031
|
|
143
142
|
llama_cloud/types/eval_question_result.py,sha256=Y4RFXnA4YJTlzM6_NtLOi0rt6hRZoQbToiVJqm41ArY,2168
|
|
144
143
|
llama_cloud/types/extract_agent.py,sha256=T98IOueut4M52Qm7hqcUOcWFFDhZ-ye0OFdXgfFGtS4,1763
|
|
144
|
+
llama_cloud/types/extract_agent_create.py,sha256=nDe2AELKdhF2VKe-IiajHavo8xatTZWbJb76D-HhJkM,1429
|
|
145
|
+
llama_cloud/types/extract_agent_create_data_schema.py,sha256=zB31hJQ8hKaIsPkfTWiX5hqsPVFMyyeWEDZ_Aq237jo,305
|
|
146
|
+
llama_cloud/types/extract_agent_create_data_schema_zero_value.py,sha256=xoyXH3f0Y5beMWBxmtXSz6QoB_df_-0QBsYdjBhZnGw,217
|
|
145
147
|
llama_cloud/types/extract_agent_data_schema_value.py,sha256=UaDQ2KjajLDccW7F4NKdfpefeTJrr1hl0c95WRETYkM,201
|
|
148
|
+
llama_cloud/types/extract_agent_update.py,sha256=bcXovL4OblDFQXAfhstLMfSSY2sJHQFkfVjzZ_8jO8c,1349
|
|
149
|
+
llama_cloud/types/extract_agent_update_data_schema.py,sha256=argR5gPRUYWY6ADCMKRdg-8NM-rsBM91_TEn8NKqVy8,305
|
|
150
|
+
llama_cloud/types/extract_agent_update_data_schema_zero_value.py,sha256=Nvd892EFhg-PzlqoFp5i2owL7hCZ2SsuL7U4Tk9NeRI,217
|
|
146
151
|
llama_cloud/types/extract_config.py,sha256=s0f8Yzfuzl0P_xV91SNj0Cbp77I_FMXCxL5lEJyXR6I,1505
|
|
147
152
|
llama_cloud/types/extract_job.py,sha256=Yx4fDdCdylAji2LPTwqflVpz1o9slpj9tTLS93-1tzU,1431
|
|
148
153
|
llama_cloud/types/extract_job_create.py,sha256=UK1mBIKyflo7e6m1MxMN95pLscj67jH_yvs8EvmBXqU,1545
|
|
@@ -160,6 +165,9 @@ llama_cloud/types/extract_run_data_item_value.py,sha256=jbR5Yo3bGwHw72OJJ1l5NGTn
|
|
|
160
165
|
llama_cloud/types/extract_run_data_schema_value.py,sha256=C4uNdNQHBrkribgmR6nxOQpRo1eydYJ78a0lm7B-e4o,199
|
|
161
166
|
llama_cloud/types/extract_run_data_zero_value.py,sha256=uWbiHJUlEi3TiwwBOskZRTQuUSt8udNXmD-wGdqcKkw,197
|
|
162
167
|
llama_cloud/types/extract_run_extraction_metadata_value.py,sha256=tBbPk7mkNWvjej8b8-hv9_BY6StTCMtrZHWUXANJBaU,213
|
|
168
|
+
llama_cloud/types/extract_schema_validate_request.py,sha256=4kbNqoP4_lZ9pCMlDxOi9IQ16kJgx50FsbBU-DqSzao,1115
|
|
169
|
+
llama_cloud/types/extract_schema_validate_request_data_schema.py,sha256=uMqpKJdCmUNtryS2bkQTNA1AgDlWdtsBOP31iMt3zNA,346
|
|
170
|
+
llama_cloud/types/extract_schema_validate_request_data_schema_zero_value.py,sha256=cUS7ez5r0Vx8T7SxwLYptZMmvpT5JoDVMyn54Q6VL-g,227
|
|
163
171
|
llama_cloud/types/extract_schema_validate_response.py,sha256=EVSeXsljZC-gIpdXr16khI4kbZbc3jU-7rKVp5F_SQk,1170
|
|
164
172
|
llama_cloud/types/extract_schema_validate_response_data_schema_value.py,sha256=lX9RbBHcmBRagA-K7x1he8EEmmNCiAs-tHumGfPvFVQ,224
|
|
165
173
|
llama_cloud/types/extract_state.py,sha256=TNeVAXXKZaiM2srlbQlzRSn4_TDpR4xyT_yQhJUxFvk,775
|
|
@@ -169,6 +177,7 @@ llama_cloud/types/file_permission_info_value.py,sha256=RyQlNbhvIKS87Ywu7XUaw5jDT
|
|
|
169
177
|
llama_cloud/types/file_resource_info_value.py,sha256=g6T6ELeLK9jgcvX6r-EuAl_4JkwnyqdS0RRoabMReSU,195
|
|
170
178
|
llama_cloud/types/filter_condition.py,sha256=YEc-NaZbMha4oZVSKerZ6-gNYriNOZmTHTRMKX-9Ju0,678
|
|
171
179
|
llama_cloud/types/filter_operator.py,sha256=tY_DWFVOoLrqDc-soJcSFvUL-MsltK6iLSK7IKK-TPs,2439
|
|
180
|
+
llama_cloud/types/free_credits_usage.py,sha256=TPktesYpM5gVeBXPbRFun19XaPJo-dIu0Xbrg-iX8qE,1052
|
|
172
181
|
llama_cloud/types/gemini_embedding.py,sha256=n9vuxFbXt_VNuaZvp7BlkFWmGMgehpJz_ICacIafdYw,1418
|
|
173
182
|
llama_cloud/types/gemini_embedding_config.py,sha256=ycLaAkl9TQgUkvdbFyrz1cYXg1Wxmf0C-THNk4LWg1s,1142
|
|
174
183
|
llama_cloud/types/http_validation_error.py,sha256=iOSKYv0dJGjyIq8DAeLVKNJY-GiM1b6yiXGpXrm4QS4,1058
|
|
@@ -178,7 +187,6 @@ llama_cloud/types/hugging_face_inference_api_embedding_token.py,sha256=A7-_YryBc
|
|
|
178
187
|
llama_cloud/types/image_block.py,sha256=Bccrsm1-B2hUzObP7Oy1H7IVnurixfTpL03i-yqfZp0,1112
|
|
179
188
|
llama_cloud/types/ingestion_error_response.py,sha256=8u0cyT44dnpkNeUKemTvJMUqi_WyPcYQKP_DMTqaFPY,1259
|
|
180
189
|
llama_cloud/types/input_message.py,sha256=Ym6-tX6CMWKuHfxRtyM2y16kqSS3BzHged9rFRFkX0g,1346
|
|
181
|
-
llama_cloud/types/interval_usage_and_plan.py,sha256=qRZs0MsbJ_X53YfgNujKnJjRYhMn2Bn6bjBUKKUZnZc,1161
|
|
182
190
|
llama_cloud/types/job_name_mapping.py,sha256=2dQFQlVHoeSlkyEKSEJv0M3PzJf7hMvkuABj3vMY7ys,1617
|
|
183
191
|
llama_cloud/types/job_names.py,sha256=ZapQT__pLI14SagjGi8AsEwWY949hBoplQemMgb_Aoc,4098
|
|
184
192
|
llama_cloud/types/job_record.py,sha256=r2WzLQXSOFogNMN2rl10rAlYI9OTCmVn06QaZXxa0rQ,2058
|
|
@@ -186,7 +194,7 @@ llama_cloud/types/job_record_with_usage_metrics.py,sha256=iNV2do5TB_0e3PoOz_DJyA
|
|
|
186
194
|
llama_cloud/types/llama_extract_settings.py,sha256=Yh9Ah9W0X4l-znjYm4oNIh8-LCBc99JEQmGU87bUzWs,2225
|
|
187
195
|
llama_cloud/types/llama_index_core_base_llms_types_chat_message.py,sha256=NelHo-T-ebVMhRKsqE_xV8AJW4c7o6lS0uEQnPsmTwg,1365
|
|
188
196
|
llama_cloud/types/llama_index_core_base_llms_types_chat_message_blocks_item.py,sha256=tTglUqrSUaVc2Wsi4uIt5MU-80_oxZzTnhf8ziilVGY,874
|
|
189
|
-
llama_cloud/types/llama_parse_parameters.py,sha256=
|
|
197
|
+
llama_cloud/types/llama_parse_parameters.py,sha256=mwd4VxshMuBJxUvldKHTWWs90W27p72VB_bPItj6fgY,5284
|
|
190
198
|
llama_cloud/types/llama_parse_supported_file_extensions.py,sha256=B_0N3f8Aq59W9FbsH50mGBUiyWTIXQjHFl739uAyaQw,11207
|
|
191
199
|
llama_cloud/types/llm.py,sha256=7iIItVPjURp4u5xxJDAFIefUdhUKwIuA245WXilJPXE,2234
|
|
192
200
|
llama_cloud/types/llm_model_data.py,sha256=6rrycqGwlK3LZ2S-WtgmeomithdLhDCgwBBZQ5KLaso,1300
|
|
@@ -220,6 +228,7 @@ llama_cloud/types/page_screenshot_node_with_score.py,sha256=EdqoXbmARCz1DV14E2sa
|
|
|
220
228
|
llama_cloud/types/page_segmentation_config.py,sha256=VH8uuxnubnJak1gSpS64OoMueHidhsDB-2eq2tVHbag,998
|
|
221
229
|
llama_cloud/types/page_splitter_node_parser.py,sha256=rQgS1CDk18UKA0r9OPvjdtM570jzFArdLCTxYAtZny8,1424
|
|
222
230
|
llama_cloud/types/paginated_jobs_history_with_metrics.py,sha256=Bxy6N0x0FARJhgwNKKPkNpXx8YLRHvth23G14f5Fuk4,1136
|
|
231
|
+
llama_cloud/types/paginated_list_cloud_documents_response.py,sha256=MsjS0SWlT0syELDck4x2sxxR3_NC1e6QTdepgVmK9aY,1341
|
|
223
232
|
llama_cloud/types/paginated_list_pipeline_files_response.py,sha256=2TKR2oHSQRyLMqWz1qQBSIvz-ZJb8U_94367lwOJ2S4,1317
|
|
224
233
|
llama_cloud/types/paginated_report_response.py,sha256=o79QhQi9r0HZZrhvRlA6WGjxtyPuxN0xONhwXSwxtcs,1104
|
|
225
234
|
llama_cloud/types/parse_plan_level.py,sha256=GBkDS19qfHseBa17EXfuTPNT4GNv5alyPrWEvWji3GY,528
|
|
@@ -239,13 +248,13 @@ llama_cloud/types/pipeline_configuration_hashes.py,sha256=7_MbOcPWV6iyMflJeXoo9v
|
|
|
239
248
|
llama_cloud/types/pipeline_create.py,sha256=a5LHgVE-h4s2m8En5EAbfMIXIpXqd0DLKKTaxX4HrAk,2654
|
|
240
249
|
llama_cloud/types/pipeline_create_embedding_config.py,sha256=PQqmVBFUyZXYKKBmVQF2zPsGp1L6rje6g3RtXEcdfc8,2811
|
|
241
250
|
llama_cloud/types/pipeline_create_transform_config.py,sha256=HP6tzLsw_pomK1Ye2PYCS_XDZK_TMgg22mz17_zYKFg,303
|
|
242
|
-
llama_cloud/types/pipeline_data_source.py,sha256=
|
|
251
|
+
llama_cloud/types/pipeline_data_source.py,sha256=3NcAbAr0eCvwVeoL9dZjjv1TkRD1b4NZqkKv9DWHCyo,2209
|
|
243
252
|
llama_cloud/types/pipeline_data_source_component.py,sha256=c_R2aBl7XXsfJ_ZuK_-PXzzL2nDI4jrbJ0BStlzp87Y,1085
|
|
244
253
|
llama_cloud/types/pipeline_data_source_create.py,sha256=wMsymqB-YGyf3jdQr-N5ODVG6v0w68EMxGBNdQXeJe0,1178
|
|
245
254
|
llama_cloud/types/pipeline_data_source_custom_metadata_value.py,sha256=8n3r60sxMx4_udW0yzJZxzyWeK6L3cc2-jLGZFW4EDs,217
|
|
246
255
|
llama_cloud/types/pipeline_deployment.py,sha256=eVBrz032aPb2cqtIIVYT5MTHQvBNm89XazoNrRWVugo,1356
|
|
247
256
|
llama_cloud/types/pipeline_embedding_config.py,sha256=mpeJ6bOMvRUO12VTYbcHmgJ3ssHNKAUQMrF06j2t7Lc,2721
|
|
248
|
-
llama_cloud/types/pipeline_file.py,sha256=
|
|
257
|
+
llama_cloud/types/pipeline_file.py,sha256=PUfKFTXEsrIMmXlzguEeETmo0yjDk-cA0iofNiT-hlw,2452
|
|
249
258
|
llama_cloud/types/pipeline_file_config_hash_value.py,sha256=4lvLnDpzNAHdiMkGJTTNDTu3p3H7Nxw5MR1Mzte7-_M,201
|
|
250
259
|
llama_cloud/types/pipeline_file_create.py,sha256=yoMIzWED0ktKerE48kgzInBa3d0aNGO5JjTtDTDAn4A,1310
|
|
251
260
|
llama_cloud/types/pipeline_file_create_custom_metadata_value.py,sha256=olVj5yhQFx1QqWO1Wv9d6AtL-YyYO9_OYtOfcD2ZeGY,217
|
|
@@ -254,7 +263,7 @@ llama_cloud/types/pipeline_file_permission_info_value.py,sha256=a9yfg5n9po0-4ljG
|
|
|
254
263
|
llama_cloud/types/pipeline_file_resource_info_value.py,sha256=s3uFGQNwlUEr-X4TJZkW_kMBvX3h1sXRJoYlJRvHSDc,209
|
|
255
264
|
llama_cloud/types/pipeline_transform_config.py,sha256=zMr-ePLKGjbaScxbAHaSwYBL7rrNibVlnn0cbgElDfU,824
|
|
256
265
|
llama_cloud/types/pipeline_type.py,sha256=tTqrhxHP5xd7W2dQGD0e5FOv886nwJssyaVlXpWrtRo,551
|
|
257
|
-
llama_cloud/types/
|
|
266
|
+
llama_cloud/types/plan_limits.py,sha256=Hqo2IyFoI4BSYtaYF4JYIGqYA0xIdpSqc3Ht_cycJTc,1986
|
|
258
267
|
llama_cloud/types/playground_session.py,sha256=F8u2KZL2YaOrsT-o1n4zbhyPxSsoduc3ZCzQB8AecFA,1858
|
|
259
268
|
llama_cloud/types/pooling.py,sha256=5Fr6c8rx9SDWwWzEvD78suob2d79ktodUtLUAUHMbP8,651
|
|
260
269
|
llama_cloud/types/preset_composite_retrieval_params.py,sha256=8msstaAZUMs0ziQSEq4RJXNuQFztSDtDfyJHr632ubQ,1321
|
|
@@ -268,6 +277,7 @@ llama_cloud/types/prompt_conf.py,sha256=B3G9kdx1Md5fsx2ix4NYz5emvKi2GisYOOp9RozC
|
|
|
268
277
|
llama_cloud/types/prompt_mixin_prompts.py,sha256=_ipiIFWmWSuaJ5VFI5rXa_C7lHaIL3Yv5izh7__xTxI,1323
|
|
269
278
|
llama_cloud/types/prompt_spec.py,sha256=tPJTIzN9pYmiZD-HcPHFuhh4n1ak9FI5f7xFNV31djQ,1410
|
|
270
279
|
llama_cloud/types/pydantic_program_mode.py,sha256=QfvpqR7TqyNuOxo78Sr58VOu7KDSBrHJM4XXBB0F5z0,1202
|
|
280
|
+
llama_cloud/types/recurring_credit_grant.py,sha256=19qI3p5k1mQ1Qoo-gCQU02Aa42XpEsmwxPF1F88F-Yg,1517
|
|
271
281
|
llama_cloud/types/related_node_info.py,sha256=frQg_RqrSBc62ooJ4QOF5QRKymHcNot5WVFAB_g1sMg,1216
|
|
272
282
|
llama_cloud/types/related_node_info_node_type.py,sha256=lH95d8G-EnKCllV_igJsBfYt49y162PoNxWtrCo_Kgk,173
|
|
273
283
|
llama_cloud/types/report.py,sha256=9M_WkIxi5ilmtXrLKo5XxWzJ_qV8FFf5j8bAlQRmaks,1155
|
|
@@ -307,7 +317,9 @@ llama_cloud/types/text_node_with_score.py,sha256=k-KYWO_mgJBvO6xUfOD5W6v1Ku9E586
|
|
|
307
317
|
llama_cloud/types/token_chunking_config.py,sha256=XNvnTsNd--YOMQ_Ad8hoqhYgQftqkBHKVn6i7nJnMqs,1067
|
|
308
318
|
llama_cloud/types/token_text_splitter.py,sha256=iTT3x9yO021v757B2r-0Z-WFQiIESLqEJUCmUUwPQ_o,1899
|
|
309
319
|
llama_cloud/types/transformation_category_names.py,sha256=Wb7NBB0f-tEtfEZQis-iKy71SUKmmHFcXf6XLn6g0XU,545
|
|
310
|
-
llama_cloud/types/usage.py,sha256
|
|
320
|
+
llama_cloud/types/usage.py,sha256=-Yzh_NwIXlumIdOQH7YppEfABs3xHEcYrkPGk3mduLg,1450
|
|
321
|
+
llama_cloud/types/usage_active_alerts_item.py,sha256=YZkSH_Vd3hu5f-Nv0LKKj9slVTa3GsOcbSPhttKcVqQ,964
|
|
322
|
+
llama_cloud/types/usage_and_plan.py,sha256=DsQVkOkh6yiDY9FsGR34DcTocj53loO2lU55P45XnWY,1040
|
|
311
323
|
llama_cloud/types/usage_metric_response.py,sha256=ukvtNZLeLacv-5F0-GQ5wTBZOPUPEjAeurgYPc4s7nA,1047
|
|
312
324
|
llama_cloud/types/user_job_record.py,sha256=mJHdokJsemXJOwM2l7fsW3X0SlwSNcy7yHbcXZHh3I4,1098
|
|
313
325
|
llama_cloud/types/user_organization.py,sha256=Ydel7grMnKiPMWJmSWhCFCm3v_n286Gk36ANtDLNLd4,1770
|
|
@@ -319,7 +331,7 @@ llama_cloud/types/validation_error_loc_item.py,sha256=LAtjCHIllWRBFXvAZ5QZpp7CPX
|
|
|
319
331
|
llama_cloud/types/vertex_ai_embedding_config.py,sha256=DvQk2xMJFmo54MEXTzoM4KSADyhGm_ygmFyx6wIcQdw,1159
|
|
320
332
|
llama_cloud/types/vertex_embedding_mode.py,sha256=yY23FjuWU_DkXjBb3JoKV4SCMqel2BaIMltDqGnIowU,1217
|
|
321
333
|
llama_cloud/types/vertex_text_embedding.py,sha256=-C4fNCYfFl36ATdBMGFVPpiHIKxjk0KB1ERA2Ec20aU,1932
|
|
322
|
-
llama_cloud-0.1.
|
|
323
|
-
llama_cloud-0.1.
|
|
324
|
-
llama_cloud-0.1.
|
|
325
|
-
llama_cloud-0.1.
|
|
334
|
+
llama_cloud-0.1.14.dist-info/LICENSE,sha256=_iNqtPcw1Ue7dZKwOwgPtbegMUkWVy15hC7bffAdNmY,1067
|
|
335
|
+
llama_cloud-0.1.14.dist-info/METADATA,sha256=7-aIbaODwyeHrJ0WXBxE1QpyHx700jDivfPH3rWDGDk,902
|
|
336
|
+
llama_cloud-0.1.14.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
|
337
|
+
llama_cloud-0.1.14.dist-info/RECORD,,
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
-
|
|
3
|
-
from .extract_agent_create_data_schema import ExtractAgentCreateDataSchema
|
|
4
|
-
from .extract_agent_create_data_schema_zero_value import ExtractAgentCreateDataSchemaZeroValue
|
|
5
|
-
from .extract_agent_update_data_schema import ExtractAgentUpdateDataSchema
|
|
6
|
-
from .extract_agent_update_data_schema_zero_value import ExtractAgentUpdateDataSchemaZeroValue
|
|
7
|
-
from .extract_schema_validate_request_data_schema import ExtractSchemaValidateRequestDataSchema
|
|
8
|
-
from .extract_schema_validate_request_data_schema_zero_value import ExtractSchemaValidateRequestDataSchemaZeroValue
|
|
9
|
-
|
|
10
|
-
__all__ = [
|
|
11
|
-
"ExtractAgentCreateDataSchema",
|
|
12
|
-
"ExtractAgentCreateDataSchemaZeroValue",
|
|
13
|
-
"ExtractAgentUpdateDataSchema",
|
|
14
|
-
"ExtractAgentUpdateDataSchemaZeroValue",
|
|
15
|
-
"ExtractSchemaValidateRequestDataSchema",
|
|
16
|
-
"ExtractSchemaValidateRequestDataSchemaZeroValue",
|
|
17
|
-
]
|
|
File without changes
|
/llama_cloud/{resources/llama_extract/types → types}/extract_agent_create_data_schema_zero_value.py
RENAMED
|
File without changes
|
|
File without changes
|
/llama_cloud/{resources/llama_extract/types → types}/extract_agent_update_data_schema_zero_value.py
RENAMED
|
File without changes
|
/llama_cloud/{resources/llama_extract/types → types}/extract_schema_validate_request_data_schema.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|