llama-cloud 0.1.34__py3-none-any.whl → 0.1.35__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.

Files changed (41) hide show
  1. llama_cloud/__init__.py +34 -0
  2. llama_cloud/client.py +3 -0
  3. llama_cloud/resources/__init__.py +6 -0
  4. llama_cloud/resources/beta/client.py +211 -8
  5. llama_cloud/resources/files/client.py +226 -0
  6. llama_cloud/resources/llama_extract/__init__.py +4 -0
  7. llama_cloud/resources/llama_extract/client.py +179 -0
  8. llama_cloud/resources/llama_extract/types/__init__.py +4 -0
  9. llama_cloud/resources/llama_extract/types/extract_stateless_request_data_schema.py +9 -0
  10. llama_cloud/resources/llama_extract/types/extract_stateless_request_data_schema_zero_value.py +7 -0
  11. llama_cloud/resources/parsing/client.py +24 -0
  12. llama_cloud/resources/users/__init__.py +2 -0
  13. llama_cloud/resources/users/client.py +155 -0
  14. llama_cloud/types/__init__.py +28 -0
  15. llama_cloud/types/data_source_reader_version_metadata.py +2 -1
  16. llama_cloud/types/data_source_reader_version_metadata_reader_version.py +17 -0
  17. llama_cloud/types/extract_agent.py +3 -0
  18. llama_cloud/types/extract_config.py +4 -0
  19. llama_cloud/types/file_data.py +36 -0
  20. llama_cloud/types/legacy_parse_job_config.py +3 -0
  21. llama_cloud/types/llama_extract_settings.py +4 -0
  22. llama_cloud/types/llama_parse_parameters.py +3 -0
  23. llama_cloud/types/managed_open_ai_embedding.py +36 -0
  24. llama_cloud/types/managed_open_ai_embedding_config.py +34 -0
  25. llama_cloud/types/multimodal_parse_resolution.py +17 -0
  26. llama_cloud/types/paginated_response_quota_configuration.py +36 -0
  27. llama_cloud/types/parse_job_config.py +3 -0
  28. llama_cloud/types/pipeline_embedding_config.py +11 -0
  29. llama_cloud/types/quota_configuration.py +53 -0
  30. llama_cloud/types/quota_configuration_configuration_type.py +33 -0
  31. llama_cloud/types/quota_configuration_status.py +21 -0
  32. llama_cloud/types/quota_rate_limit_configuration_value.py +38 -0
  33. llama_cloud/types/quota_rate_limit_configuration_value_denominator_units.py +29 -0
  34. llama_cloud/types/update_user_response.py +33 -0
  35. llama_cloud/types/usage_response_active_alerts_item.py +4 -0
  36. llama_cloud/types/user_summary.py +38 -0
  37. llama_cloud/types/webhook_configuration_webhook_events_item.py +20 -0
  38. {llama_cloud-0.1.34.dist-info → llama_cloud-0.1.35.dist-info}/METADATA +1 -1
  39. {llama_cloud-0.1.34.dist-info → llama_cloud-0.1.35.dist-info}/RECORD +41 -24
  40. {llama_cloud-0.1.34.dist-info → llama_cloud-0.1.35.dist-info}/LICENSE +0 -0
  41. {llama_cloud-0.1.34.dist-info → llama_cloud-0.1.35.dist-info}/WHEEL +0 -0
@@ -0,0 +1,53 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import datetime as dt
4
+ import typing
5
+
6
+ import typing_extensions
7
+
8
+ from ..core.datetime_utils import serialize_datetime
9
+ from .quota_configuration_configuration_type import QuotaConfigurationConfigurationType
10
+ from .quota_configuration_status import QuotaConfigurationStatus
11
+ from .quota_rate_limit_configuration_value import QuotaRateLimitConfigurationValue
12
+
13
+ try:
14
+ import pydantic
15
+ if pydantic.__version__.startswith("1."):
16
+ raise ImportError
17
+ import pydantic.v1 as pydantic # type: ignore
18
+ except ImportError:
19
+ import pydantic # type: ignore
20
+
21
+
22
+ class QuotaConfiguration(pydantic.BaseModel):
23
+ """
24
+ Full quota configuration model.
25
+ """
26
+
27
+ source_type: typing_extensions.Literal["organization"]
28
+ source_id: str = pydantic.Field(description="The source ID, e.g. the organization ID")
29
+ configuration_type: QuotaConfigurationConfigurationType = pydantic.Field(description="The quota configuration type")
30
+ configuration_value: QuotaRateLimitConfigurationValue = pydantic.Field(description="The quota configuration value")
31
+ configuration_metadata: typing.Optional[typing.Dict[str, typing.Any]]
32
+ started_at: typing.Optional[dt.datetime] = pydantic.Field(description="The start date of the quota")
33
+ ended_at: typing.Optional[dt.datetime]
34
+ idempotency_key: typing.Optional[str]
35
+ status: QuotaConfigurationStatus = pydantic.Field(
36
+ description="The status of the quota, i.e. 'ACTIVE' or 'INACTIVE'"
37
+ )
38
+ id: typing.Optional[str]
39
+ created_at: typing.Optional[dt.datetime]
40
+ updated_at: typing.Optional[dt.datetime]
41
+
42
+ def json(self, **kwargs: typing.Any) -> str:
43
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
44
+ return super().json(**kwargs_with_defaults)
45
+
46
+ def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
47
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
48
+ return super().dict(**kwargs_with_defaults)
49
+
50
+ class Config:
51
+ frozen = True
52
+ smart_union = True
53
+ json_encoders = {dt.datetime: serialize_datetime}
@@ -0,0 +1,33 @@
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 QuotaConfigurationConfigurationType(str, enum.Enum):
10
+ """
11
+ The quota configuration type
12
+ """
13
+
14
+ RATE_LIMIT_PARSE_CONCURRENT_PREMIUM = "rate_limit_parse_concurrent_premium"
15
+ RATE_LIMIT_PARSE_CONCURRENT_DEFAULT = "rate_limit_parse_concurrent_default"
16
+ RATE_LIMIT_CONCURRENT_JOBS_IN_EXECUTION_DEFAULT = "rate_limit_concurrent_jobs_in_execution_default"
17
+ RATE_LIMIT_CONCURRENT_JOBS_IN_EXECUTION_DOC_INGEST = "rate_limit_concurrent_jobs_in_execution_doc_ingest"
18
+
19
+ def visit(
20
+ self,
21
+ rate_limit_parse_concurrent_premium: typing.Callable[[], T_Result],
22
+ rate_limit_parse_concurrent_default: typing.Callable[[], T_Result],
23
+ rate_limit_concurrent_jobs_in_execution_default: typing.Callable[[], T_Result],
24
+ rate_limit_concurrent_jobs_in_execution_doc_ingest: typing.Callable[[], T_Result],
25
+ ) -> T_Result:
26
+ if self is QuotaConfigurationConfigurationType.RATE_LIMIT_PARSE_CONCURRENT_PREMIUM:
27
+ return rate_limit_parse_concurrent_premium()
28
+ if self is QuotaConfigurationConfigurationType.RATE_LIMIT_PARSE_CONCURRENT_DEFAULT:
29
+ return rate_limit_parse_concurrent_default()
30
+ if self is QuotaConfigurationConfigurationType.RATE_LIMIT_CONCURRENT_JOBS_IN_EXECUTION_DEFAULT:
31
+ return rate_limit_concurrent_jobs_in_execution_default()
32
+ if self is QuotaConfigurationConfigurationType.RATE_LIMIT_CONCURRENT_JOBS_IN_EXECUTION_DOC_INGEST:
33
+ return rate_limit_concurrent_jobs_in_execution_doc_ingest()
@@ -0,0 +1,21 @@
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 QuotaConfigurationStatus(str, enum.Enum):
10
+ """
11
+ The status of the quota, i.e. 'ACTIVE' or 'INACTIVE'
12
+ """
13
+
14
+ ACTIVE = "ACTIVE"
15
+ INACTIVE = "INACTIVE"
16
+
17
+ def visit(self, active: typing.Callable[[], T_Result], inactive: typing.Callable[[], T_Result]) -> T_Result:
18
+ if self is QuotaConfigurationStatus.ACTIVE:
19
+ return active()
20
+ if self is QuotaConfigurationStatus.INACTIVE:
21
+ return inactive()
@@ -0,0 +1,38 @@
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 .quota_rate_limit_configuration_value_denominator_units import QuotaRateLimitConfigurationValueDenominatorUnits
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 QuotaRateLimitConfigurationValue(pydantic.BaseModel):
19
+ """
20
+ Quota-specific wrapper for default rate limit configuration.
21
+ """
22
+
23
+ numerator: int = pydantic.Field(description="The rate numerator")
24
+ denominator: typing.Optional[int]
25
+ denominator_units: typing.Optional[QuotaRateLimitConfigurationValueDenominatorUnits]
26
+
27
+ def json(self, **kwargs: typing.Any) -> str:
28
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
29
+ return super().json(**kwargs_with_defaults)
30
+
31
+ def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
32
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
33
+ return super().dict(**kwargs_with_defaults)
34
+
35
+ class Config:
36
+ frozen = True
37
+ smart_union = True
38
+ json_encoders = {dt.datetime: serialize_datetime}
@@ -0,0 +1,29 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import enum
4
+ import typing
5
+
6
+ T_Result = typing.TypeVar("T_Result")
7
+
8
+
9
+ class QuotaRateLimitConfigurationValueDenominatorUnits(str, enum.Enum):
10
+ SECOND = "second"
11
+ MINUTE = "minute"
12
+ HOUR = "hour"
13
+ DAY = "day"
14
+
15
+ def visit(
16
+ self,
17
+ second: typing.Callable[[], T_Result],
18
+ minute: typing.Callable[[], T_Result],
19
+ hour: typing.Callable[[], T_Result],
20
+ day: typing.Callable[[], T_Result],
21
+ ) -> T_Result:
22
+ if self is QuotaRateLimitConfigurationValueDenominatorUnits.SECOND:
23
+ return second()
24
+ if self is QuotaRateLimitConfigurationValueDenominatorUnits.MINUTE:
25
+ return minute()
26
+ if self is QuotaRateLimitConfigurationValueDenominatorUnits.HOUR:
27
+ return hour()
28
+ if self is QuotaRateLimitConfigurationValueDenominatorUnits.DAY:
29
+ return day()
@@ -0,0 +1,33 @@
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 .user_summary import UserSummary
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 UpdateUserResponse(pydantic.BaseModel):
19
+ user: UserSummary = pydantic.Field(description="The user of the response")
20
+ message: str = pydantic.Field(description="The message of the response")
21
+
22
+ def json(self, **kwargs: typing.Any) -> str:
23
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
24
+ return super().json(**kwargs_with_defaults)
25
+
26
+ def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
27
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
28
+ return super().dict(**kwargs_with_defaults)
29
+
30
+ class Config:
31
+ frozen = True
32
+ smart_union = True
33
+ json_encoders = {dt.datetime: serialize_datetime}
@@ -11,6 +11,7 @@ class UsageResponseActiveAlertsItem(str, enum.Enum):
11
11
  PLAN_SPEND_LIMIT_SOFT_ALERT = "plan_spend_limit_soft_alert"
12
12
  CONFIGURED_SPEND_LIMIT_EXCEEDED = "configured_spend_limit_exceeded"
13
13
  FREE_CREDITS_EXHAUSTED = "free_credits_exhausted"
14
+ INTERNAL_SPENDING_ALERT = "internal_spending_alert"
14
15
 
15
16
  def visit(
16
17
  self,
@@ -18,6 +19,7 @@ class UsageResponseActiveAlertsItem(str, enum.Enum):
18
19
  plan_spend_limit_soft_alert: typing.Callable[[], T_Result],
19
20
  configured_spend_limit_exceeded: typing.Callable[[], T_Result],
20
21
  free_credits_exhausted: typing.Callable[[], T_Result],
22
+ internal_spending_alert: typing.Callable[[], T_Result],
21
23
  ) -> T_Result:
22
24
  if self is UsageResponseActiveAlertsItem.PLAN_SPEND_LIMIT_EXCEEDED:
23
25
  return plan_spend_limit_exceeded()
@@ -27,3 +29,5 @@ class UsageResponseActiveAlertsItem(str, enum.Enum):
27
29
  return configured_spend_limit_exceeded()
28
30
  if self is UsageResponseActiveAlertsItem.FREE_CREDITS_EXHAUSTED:
29
31
  return free_credits_exhausted()
32
+ if self is UsageResponseActiveAlertsItem.INTERNAL_SPENDING_ALERT:
33
+ return internal_spending_alert()
@@ -0,0 +1,38 @@
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 UserSummary(pydantic.BaseModel):
18
+ id: str = pydantic.Field(description="User's unique identifier")
19
+ email: str = pydantic.Field(description="User's email address")
20
+ password_hash: typing.Optional[str]
21
+ first_name: typing.Optional[str]
22
+ last_name: typing.Optional[str]
23
+ last_login: typing.Optional[dt.datetime]
24
+ created_at: dt.datetime = pydantic.Field(description="When the user was created")
25
+ updated_at: dt.datetime = pydantic.Field(description="When the user was last updated")
26
+
27
+ def json(self, **kwargs: typing.Any) -> str:
28
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
29
+ return super().json(**kwargs_with_defaults)
30
+
31
+ def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
32
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
33
+ return super().dict(**kwargs_with_defaults)
34
+
35
+ class Config:
36
+ frozen = True
37
+ smart_union = True
38
+ json_encoders = {dt.datetime: serialize_datetime}
@@ -12,6 +12,11 @@ class WebhookConfigurationWebhookEventsItem(str, enum.Enum):
12
12
  EXTRACT_ERROR = "extract.error"
13
13
  EXTRACT_PARTIAL_SUCCESS = "extract.partial_success"
14
14
  EXTRACT_CANCELLED = "extract.cancelled"
15
+ PARSE_PENDING = "parse.pending"
16
+ PARSE_SUCCESS = "parse.success"
17
+ PARSE_ERROR = "parse.error"
18
+ PARSE_PARTIAL_SUCCESS = "parse.partial_success"
19
+ PARSE_CANCELLED = "parse.cancelled"
15
20
  UNMAPPED_EVENT = "unmapped_event"
16
21
 
17
22
  def visit(
@@ -21,6 +26,11 @@ class WebhookConfigurationWebhookEventsItem(str, enum.Enum):
21
26
  extract_error: typing.Callable[[], T_Result],
22
27
  extract_partial_success: typing.Callable[[], T_Result],
23
28
  extract_cancelled: typing.Callable[[], T_Result],
29
+ parse_pending: typing.Callable[[], T_Result],
30
+ parse_success: typing.Callable[[], T_Result],
31
+ parse_error: typing.Callable[[], T_Result],
32
+ parse_partial_success: typing.Callable[[], T_Result],
33
+ parse_cancelled: typing.Callable[[], T_Result],
24
34
  unmapped_event: typing.Callable[[], T_Result],
25
35
  ) -> T_Result:
26
36
  if self is WebhookConfigurationWebhookEventsItem.EXTRACT_PENDING:
@@ -33,5 +43,15 @@ class WebhookConfigurationWebhookEventsItem(str, enum.Enum):
33
43
  return extract_partial_success()
34
44
  if self is WebhookConfigurationWebhookEventsItem.EXTRACT_CANCELLED:
35
45
  return extract_cancelled()
46
+ if self is WebhookConfigurationWebhookEventsItem.PARSE_PENDING:
47
+ return parse_pending()
48
+ if self is WebhookConfigurationWebhookEventsItem.PARSE_SUCCESS:
49
+ return parse_success()
50
+ if self is WebhookConfigurationWebhookEventsItem.PARSE_ERROR:
51
+ return parse_error()
52
+ if self is WebhookConfigurationWebhookEventsItem.PARSE_PARTIAL_SUCCESS:
53
+ return parse_partial_success()
54
+ if self is WebhookConfigurationWebhookEventsItem.PARSE_CANCELLED:
55
+ return parse_cancelled()
36
56
  if self is WebhookConfigurationWebhookEventsItem.UNMAPPED_EVENT:
37
57
  return unmapped_event()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: llama-cloud
3
- Version: 0.1.34
3
+ Version: 0.1.35
4
4
  Summary:
5
5
  License: MIT
6
6
  Author: Logan Markewich
@@ -1,5 +1,5 @@
1
- llama_cloud/__init__.py,sha256=IYnzCBris1anU_Welfu0tW6QXK8YepHdjsC0U5HxZIY,25735
2
- llama_cloud/client.py,sha256=6kvyLEhvgy6TJfhm3VGvbtdQsjgpi51289Q13K9WDK0,6188
1
+ llama_cloud/__init__.py,sha256=F93sJ9Sc7tj6XcFHPCy3X1T4VX2f-IJ0GLEG9NYvk0s,26921
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
5
5
  llama_cloud/core/client_wrapper.py,sha256=xmj0jCdQ0ySzbSqHUWOkpRRy069y74I_HuXkWltcsVM,1507
@@ -9,13 +9,13 @@ llama_cloud/core/remove_none_from_dict.py,sha256=8m91FC3YuVem0Gm9_sXhJ2tGvP33owJ
9
9
  llama_cloud/environment.py,sha256=feTjOebeFZMrBdnHat4RE5aHlpt-sJm4NhK4ntV1htI,167
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=oa1g-G2rd9TLuef9tVaX3wycQgTQ05zIbfP3l8umG-k,4227
12
+ llama_cloud/resources/__init__.py,sha256=YEJrxAIFcQ6-d8qKlUYidwJqWFVWLKUw4B3gQrn1nKI,4429
13
13
  llama_cloud/resources/admin/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
14
14
  llama_cloud/resources/admin/client.py,sha256=mzA_ezCjugKNmvWCMWEF0Z0k86ErACWov1VtPV1J2tU,3678
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
18
- llama_cloud/resources/beta/client.py,sha256=iDbMr3dQJd6ZMEOC_vbyZhm4m_s3VM5nwneuuMDgJeE,39028
18
+ llama_cloud/resources/beta/client.py,sha256=KMveY6Uj_lurX9DcY198GoOW7rhww_emrvHFHHD4W7o,46846
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
@@ -36,16 +36,16 @@ llama_cloud/resources/embedding_model_configs/types/embedding_model_config_creat
36
36
  llama_cloud/resources/evals/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
37
37
  llama_cloud/resources/evals/client.py,sha256=v2AyeQV0hVgC6xoP2gJNgneJMaeXALV1hIeirYGxlPw,3242
38
38
  llama_cloud/resources/files/__init__.py,sha256=3B0SNM8EE6PddD5LpxYllci9vflEXy1xjPzhEEd-OUk,293
39
- llama_cloud/resources/files/client.py,sha256=gEk7nhX2sZE3PYFCfvdeYtJfTK_vMlWLHtjsl73p73c,50646
39
+ llama_cloud/resources/files/client.py,sha256=41iMAtvSIz019jGFJ5aBVG-Haxho_bUYKBavBdFYV2I,59400
40
40
  llama_cloud/resources/files/types/__init__.py,sha256=EPYENAwkjBWv1MLf8s7R5-RO-cxZ_8NPrqfR4ZoR7jY,418
41
41
  llama_cloud/resources/files/types/file_create_from_url_resource_info_value.py,sha256=Wc8wFgujOO5pZvbbh2TMMzpa37GKZd14GYNJ9bdq7BE,214
42
42
  llama_cloud/resources/files/types/file_create_permission_info_value.py,sha256=KPCFuEaa8NiB85A5MfdXRAQ0poAUTl7Feg6BTfmdWas,209
43
43
  llama_cloud/resources/files/types/file_create_resource_info_value.py,sha256=R7Y-CJf7fnbvIqE3xOI5XOrmPwLbVJLC7zpxMu8Zopk,201
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
- llama_cloud/resources/llama_extract/__init__.py,sha256=jRUugj6XARMpKZi3e2RkfTdcOSuE-Zy0IfScRLlyYMs,819
47
- llama_cloud/resources/llama_extract/client.py,sha256=i6m2sDv540ZrLWYcxjAbkTWPYlNtNx7CY1AhX5ol1ps,71971
48
- llama_cloud/resources/llama_extract/types/__init__.py,sha256=ZRBD-jg1qdXyiJKTxgH7zaadoDzuof1TYpjK4P5z4zA,1216
46
+ llama_cloud/resources/llama_extract/__init__.py,sha256=V6VZ8hQXwAuvOOZyk43nnbINoDQqEr03AjKQPhYKluk,997
47
+ llama_cloud/resources/llama_extract/client.py,sha256=wXDJy3gIiWgcQaeMXk60AWAExQLVK-s_90mnoEA5oFQ,79256
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
51
51
  llama_cloud/resources/llama_extract/types/extract_agent_update_data_schema.py,sha256=argR5gPRUYWY6ADCMKRdg-8NM-rsBM91_TEn8NKqVy8,305
@@ -54,10 +54,12 @@ llama_cloud/resources/llama_extract/types/extract_job_create_batch_data_schema_o
54
54
  llama_cloud/resources/llama_extract/types/extract_job_create_batch_data_schema_override_zero_value.py,sha256=7zXOgTYUwVAeyYeqWvX69m-7mhvK0V9cBRvgqVSd0X0,228
55
55
  llama_cloud/resources/llama_extract/types/extract_schema_validate_request_data_schema.py,sha256=uMqpKJdCmUNtryS2bkQTNA1AgDlWdtsBOP31iMt3zNA,346
56
56
  llama_cloud/resources/llama_extract/types/extract_schema_validate_request_data_schema_zero_value.py,sha256=cUS7ez5r0Vx8T7SxwLYptZMmvpT5JoDVMyn54Q6VL-g,227
57
+ llama_cloud/resources/llama_extract/types/extract_stateless_request_data_schema.py,sha256=lBblR9zgjJsbWL-2bDisCj7EQiX6aky6GQ4tuMr3LtU,325
58
+ llama_cloud/resources/llama_extract/types/extract_stateless_request_data_schema_zero_value.py,sha256=4-ONLmkrEP36ZH0qRXp3sbXCtLVNQQX4dLXFeF4u47g,222
57
59
  llama_cloud/resources/organizations/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
58
60
  llama_cloud/resources/organizations/client.py,sha256=RoN-nkN7VeRZnrrElXhaPrgQFzGMHgNY41_XpbCXP0g,56623
59
61
  llama_cloud/resources/parsing/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
60
- llama_cloud/resources/parsing/client.py,sha256=EHrQKjOl_VPPbcbaXi5TSah8HBf7ooHijhMF7IEzBMg,88117
62
+ llama_cloud/resources/parsing/client.py,sha256=K9qYu5v99OqbMmeeeCioQDUnT085A5keCencSwES-gc,88995
61
63
  llama_cloud/resources/pipelines/__init__.py,sha256=zyvVEOF_krvEZkCIj_kZoMKfhDqHo_R32a1mv9CriQc,1193
62
64
  llama_cloud/resources/pipelines/client.py,sha256=VAqAm0oY_nXGkMPqXuzPEHS9kPtpuOE5sxfyqlzXuSI,134738
63
65
  llama_cloud/resources/pipelines/types/__init__.py,sha256=C68NQ5QzA0dFXf9oePFFGmV1vn96jcAp-QAznSgoRYQ,1375
@@ -73,7 +75,9 @@ llama_cloud/resources/reports/types/__init__.py,sha256=LfwDYrI4RcQu-o42iAe7HkcwH
73
75
  llama_cloud/resources/reports/types/update_report_plan_api_v_1_reports_report_id_plan_patch_request_action.py,sha256=Qh-MSeRvDBfNb5hoLELivv1pLtrYVf52WVoP7G8V34A,807
74
76
  llama_cloud/resources/retrievers/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
75
77
  llama_cloud/resources/retrievers/client.py,sha256=z2LhmA-cZVFzr9P6loeCZYnJbvSIk0QitFeVFp-IyZk,32126
76
- llama_cloud/types/__init__.py,sha256=Ve6yUuDwvdy3w68HcO_USG_z2ulG2GcvRBUC7dUNgow,30766
78
+ llama_cloud/resources/users/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
79
+ llama_cloud/resources/users/client.py,sha256=A2s8e2syQHkkSwPz-Lrt_Zxp1K-8nqJqj5EafE6NWYs,5545
80
+ llama_cloud/types/__init__.py,sha256=NH19mNyDXsPsrT7EpEq9A8Wp-aCinsbtf-KwLPfUrJo,32253
77
81
  llama_cloud/types/advanced_mode_transform_config.py,sha256=4xCXye0_cPmVS1F8aNTx81sIaEPjQH9kiCCAIoqUzlI,1502
78
82
  llama_cloud/types/advanced_mode_transform_config_chunking_config.py,sha256=wYbJnWLpeQDfhmDZz-wJfYzD1iGT5Jcxb9ga3mzUuvk,1983
79
83
  llama_cloud/types/advanced_mode_transform_config_segmentation_config.py,sha256=anNGq0F5-IlbIW3kpC8OilzLJnUq5tdIcWHnRnmlYsg,1303
@@ -140,7 +144,8 @@ llama_cloud/types/data_source_create.py,sha256=s0bAX_GUwiRdrL-PXS9ROrvq3xpmqbqzd
140
144
  llama_cloud/types/data_source_create_component.py,sha256=6dlkvut0gyy6JA_F4--xPHYOCHi14N6oooWOnOEugzE,980
141
145
  llama_cloud/types/data_source_create_custom_metadata_value.py,sha256=ejSsQNbszYQaUWFh9r9kQpHf88qbhuRv1SI9J_MOSC0,215
142
146
  llama_cloud/types/data_source_custom_metadata_value.py,sha256=pTZn5yjZYmuOhsLABFJOKZblZUkRqo1CqLAuP5tKji4,209
143
- llama_cloud/types/data_source_reader_version_metadata.py,sha256=zP2hkqne17Vg2rd-mOXw-MpOGPmz-y82lNERFpz6E3g,1007
147
+ llama_cloud/types/data_source_reader_version_metadata.py,sha256=hh7Hunen9GHlvtLb8CM58ZD3V3pTYKX7FgNI7sgZHjM,1157
148
+ llama_cloud/types/data_source_reader_version_metadata_reader_version.py,sha256=PLFW6lFTNtBwmGpP5ZCidZwrwndHhirjKVNfrd0CDtI,542
144
149
  llama_cloud/types/data_source_update_dispatcher_config.py,sha256=Sh6HhXfEV2Z6PYhkYQucs2MxyKVpL3UPV-I4cbf--bA,1242
145
150
  llama_cloud/types/delete_params.py,sha256=1snPrd3WO9C1bKf0WdMslE2HQMF0yYLI3U7N53cmurM,1285
146
151
  llama_cloud/types/document_block.py,sha256=OYKd5M3LgJ0Cz0K0YNuVRoHz9HcUdVuf2Vcqku8fck4,1116
@@ -154,9 +159,9 @@ llama_cloud/types/embedding_model_config_embedding_config.py,sha256=9rmfeiJYhBPm
154
159
  llama_cloud/types/embedding_model_config_update.py,sha256=BiA1KbFT-TSvy5OEyChd0dgDnQCKfBRxsDTvVKNj10Q,1175
155
160
  llama_cloud/types/embedding_model_config_update_embedding_config.py,sha256=mrXFxzb9GRaH4UUnOe_05-uYUuiTgDDCRadAMbPmGgc,2991
156
161
  llama_cloud/types/eval_execution_params.py,sha256=ntVaJh5SMZMPL4QLUiihVjUlg2SKbrezvbMKGlrF66Q,1369
157
- llama_cloud/types/extract_agent.py,sha256=T98IOueut4M52Qm7hqcUOcWFFDhZ-ye0OFdXgfFGtS4,1763
162
+ llama_cloud/types/extract_agent.py,sha256=Vj6tg8aEjUPADsUlkhHSCotrfWt8uoktaV45J81KeLc,1869
158
163
  llama_cloud/types/extract_agent_data_schema_value.py,sha256=UaDQ2KjajLDccW7F4NKdfpefeTJrr1hl0c95WRETYkM,201
159
- llama_cloud/types/extract_config.py,sha256=LIkZK7kPiXMun9wrGpjJiMXVpTWmPfvZLx-u2sDWEp0,2340
164
+ llama_cloud/types/extract_config.py,sha256=FqHNQ7a7Jlyb8Ulsh96SmSfykf2PJDy8CerJ-git5io,2527
160
165
  llama_cloud/types/extract_config_priority.py,sha256=btl5lxl25Ve6_lTbQzQyjOKle8XoY0r16lk3364c3uw,795
161
166
  llama_cloud/types/extract_job.py,sha256=Yx4fDdCdylAji2LPTwqflVpz1o9slpj9tTLS93-1tzU,1431
162
167
  llama_cloud/types/extract_job_create.py,sha256=yLtrh46fsK8Q2_hz8Ub3mvGriSn5BI2OjjwpWRy5YsA,1680
@@ -184,6 +189,7 @@ llama_cloud/types/extract_target.py,sha256=Gt-FNqblzcjdfq1hxsqEjWWu-HNLXdKy4w98n
184
189
  llama_cloud/types/fail_page_mode.py,sha256=n4fgPpiEB5siPoEg0Sux4COg7ElNybjshxDoUihZwRU,786
185
190
  llama_cloud/types/file.py,sha256=rQXitPRKOYw91nK5qOZ0vpOmIx_MCpRb0g78d9dQs6w,1822
186
191
  llama_cloud/types/file_count_by_status_response.py,sha256=WuorbZvKjDs9Ql1hUiQu4gN5iCm8d6fr92KLyHpRvQU,1356
192
+ llama_cloud/types/file_data.py,sha256=dH2SNK9ZM-ZH7uKFIfBsk8bVixM33rUr40BdZWFXLhU,1225
187
193
  llama_cloud/types/file_id_presigned_url.py,sha256=Yr_MGFKbuBEHK4efRSK53fHcoo5bbAKnqQGGhMycUc0,1398
188
194
  llama_cloud/types/file_parse_public.py,sha256=sshZ0BcjHMGpuz4ylSurv0K_3ejfPrUGGyDxBHCtdMg,1378
189
195
  llama_cloud/types/file_permission_info_value.py,sha256=RyQlNbhvIKS87Ywu7XUaw5jDToZX64M9Wqzu1U_q2Us,197
@@ -213,12 +219,12 @@ llama_cloud/types/job_record.py,sha256=Z6sF9AruZJo-kTRgNufAWS3WK1yaEqop6kox1GpBY
213
219
  llama_cloud/types/job_record_parameters.py,sha256=Oqxp5y0owPfjLc_NR7AYE8P3zM2PJo36N9olbyNl7AA,3425
214
220
  llama_cloud/types/job_record_with_usage_metrics.py,sha256=iNV2do5TB_0e3PoOz_DJyAaM6Cn9G8KG-dGPGgEs5SY,1198
215
221
  llama_cloud/types/l_lama_parse_transform_config.py,sha256=YQRJZvKh1Ee2FUyW_N0nqYJoW599qBgH3JCH9SH6YLo,1249
216
- llama_cloud/types/legacy_parse_job_config.py,sha256=zZJFYnquo51NbEXhw-yhpRjIuaJNgg-T_fAI2J7-hrM,12660
222
+ llama_cloud/types/legacy_parse_job_config.py,sha256=eEPExbkUi9J7lQoY0Fuc2HK_RlhPmO30cMkfjtmmizs,12832
217
223
  llama_cloud/types/license_info_response.py,sha256=fE9vcWO8k92SBqb_wOyBu_16C61s72utA-SifEi9iBc,1192
218
- llama_cloud/types/llama_extract_settings.py,sha256=Y60XxsxVHUtX-ZjC0tyNzsaDIj_ojxYC1iy2w4vti54,2532
224
+ llama_cloud/types/llama_extract_settings.py,sha256=YKhhyUNgqpowTdTx715Uk13GdBsxCUZLVsLi5iYQIiY,2767
219
225
  llama_cloud/types/llama_index_core_base_llms_types_chat_message.py,sha256=NelHo-T-ebVMhRKsqE_xV8AJW4c7o6lS0uEQnPsmTwg,1365
220
226
  llama_cloud/types/llama_index_core_base_llms_types_chat_message_blocks_item.py,sha256=-aL8fh-w2Xf4uQs_LHzb3q6LL_onLAcVzCR5yMI4qJw,1571
221
- llama_cloud/types/llama_parse_parameters.py,sha256=pgWWbeaoC8p01_c0bC--ksHjJt-_A7QUhQdCW4MAVIQ,6325
227
+ llama_cloud/types/llama_parse_parameters.py,sha256=5RxQ9pJ4kyVKwuJJbhWxnE0TwtMpH9i7AcuP3dMGIAw,6512
222
228
  llama_cloud/types/llama_parse_parameters_priority.py,sha256=EFRudtaID_s8rLKlfW8O8O9TDbpZdniIidK-xchhfRI,830
223
229
  llama_cloud/types/llama_parse_supported_file_extensions.py,sha256=B_0N3f8Aq59W9FbsH50mGBUiyWTIXQjHFl739uAyaQw,11207
224
230
  llama_cloud/types/llm_model_data.py,sha256=6rrycqGwlK3LZ2S-WtgmeomithdLhDCgwBBZQ5KLaso,1300
@@ -226,12 +232,15 @@ llama_cloud/types/llm_parameters.py,sha256=RTKYt09lm9a1MlnBfYuTP2x_Ww4byUNNc1TqI
226
232
  llama_cloud/types/load_files_job_config.py,sha256=R5sFgFmV__0mqLUuD7dkFoBJHG2ZLw5px9zRapvYcpE,1069
227
233
  llama_cloud/types/managed_ingestion_status.py,sha256=3KVlcurpEBOPAesBUS5pSYLoQVIyZUlr90Mmv-uALHE,1290
228
234
  llama_cloud/types/managed_ingestion_status_response.py,sha256=rdNpjNbQswF-6JG1e-EU374TP6Pjlxl0p7HJyNmuxTI,1373
235
+ llama_cloud/types/managed_open_ai_embedding.py,sha256=imByAQgyNeIC0oKfVzuzG57T6rKdfHUQK0DfNS-G3UM,1261
236
+ llama_cloud/types/managed_open_ai_embedding_config.py,sha256=my2Pws6d4JZr0wVzXd59oUNLxK0G-WhoRDEn8Ce1PWk,1180
229
237
  llama_cloud/types/message_annotation.py,sha256=n4F9w4LxwmGvgXDk6E8YPTMu_g0yEjZhZ_eNFXdS_bc,1017
230
238
  llama_cloud/types/message_role.py,sha256=9MpXT9drR33TyT1-NiqB3uGbuxvWwtoOdSmKQE9HmJI,1359
231
239
  llama_cloud/types/metadata_filter.py,sha256=LX2fGsUb4wvF5bj9iWO6IPQGi3i0L2Lb4cE6igeeX9Y,1438
232
240
  llama_cloud/types/metadata_filter_value.py,sha256=ij721gXNI7zbgsuDl9-AqBcXg2WDuVZhYS5F5YqekEs,188
233
241
  llama_cloud/types/metadata_filters.py,sha256=uSf6sB4oQu6WzMPNFG6Tc4euqEiYcj_X14Y5JWt9xVE,1315
234
242
  llama_cloud/types/metadata_filters_filters_item.py,sha256=e8KhD2q6Qc2_aK6r5CvyxC0oWVYO4F4vBIcB9eMEPPM,246
243
+ llama_cloud/types/multimodal_parse_resolution.py,sha256=_eNBgAmei6rvWT1tEIefC_dl_Y3ALR81gIgJYCgy6eA,489
235
244
  llama_cloud/types/node_relationship.py,sha256=2e2PqWm0LOTiImvtsyiuaAPNIl0BItjSrQZTJv65GRA,1209
236
245
  llama_cloud/types/none_chunking_config.py,sha256=D062t314Vp-s4n9h8wNgsYfElI4PonPKmihvjEmaqdA,952
237
246
  llama_cloud/types/none_segmentation_config.py,sha256=j3jUA6E8uFtwDMEu4TFG3Q4ZGCGiuUfUW9AMO1NNqXU,956
@@ -252,7 +261,8 @@ llama_cloud/types/paginated_list_pipeline_files_response.py,sha256=2TKR2oHSQRyLM
252
261
  llama_cloud/types/paginated_report_response.py,sha256=o79QhQi9r0HZZrhvRlA6WGjxtyPuxN0xONhwXSwxtcs,1104
253
262
  llama_cloud/types/paginated_response_agent_data.py,sha256=u6Y-Cq9qjGF5tskMOQChUNqyI91Tk-uQ6vQdi69cs80,1159
254
263
  llama_cloud/types/paginated_response_aggregate_group.py,sha256=1ajZLZJLU6-GuQ_PPsEVRFZ6bm9he807F_F_DmB2HlQ,1179
255
- llama_cloud/types/parse_job_config.py,sha256=gLRQOaPgTfQuaNzriYtjDPucSFXt1AWyG19tGfzoy5M,6788
264
+ llama_cloud/types/paginated_response_quota_configuration.py,sha256=S-miK621O7V6hBB05xcFBKCwa-gBK17iTHh29Saebz8,1123
265
+ llama_cloud/types/parse_job_config.py,sha256=8Rm4jkXIRIwX_muj5YmpMNxXEM4_4mE2RKtuMlboOh8,6975
256
266
  llama_cloud/types/parse_job_config_priority.py,sha256=__-gVv1GzktVCYZVyl6zeDt0pAZwYl-mxM0xkIHPEro,800
257
267
  llama_cloud/types/parse_plan_level.py,sha256=GBkDS19qfHseBa17EXfuTPNT4GNv5alyPrWEvWji3GY,528
258
268
  llama_cloud/types/parser_languages.py,sha256=Ps3IlaSt6tyxEI657N3-vZL96r2puk8wsf31cWnO-SI,10840
@@ -279,7 +289,7 @@ llama_cloud/types/pipeline_data_source_create.py,sha256=wMsymqB-YGyf3jdQr-N5ODVG
279
289
  llama_cloud/types/pipeline_data_source_custom_metadata_value.py,sha256=8n3r60sxMx4_udW0yzJZxzyWeK6L3cc2-jLGZFW4EDs,217
280
290
  llama_cloud/types/pipeline_data_source_status.py,sha256=BD4xoftwp9lWC8EjJTnf3boIG_AyzjLPuP4qJxGhmcc,1039
281
291
  llama_cloud/types/pipeline_deployment.py,sha256=eVBrz032aPb2cqtIIVYT5MTHQvBNm89XazoNrRWVugo,1356
282
- llama_cloud/types/pipeline_embedding_config.py,sha256=mpeJ6bOMvRUO12VTYbcHmgJ3ssHNKAUQMrF06j2t7Lc,2721
292
+ llama_cloud/types/pipeline_embedding_config.py,sha256=7NJzlabQLFUFsvj7fye-oKLPasaXCWJBm-XuLxy-xmQ,3112
283
293
  llama_cloud/types/pipeline_file.py,sha256=4t4Xbszsbcjik58NINofsA4nrxmAI-pVu1LyqTiALgk,2572
284
294
  llama_cloud/types/pipeline_file_config_hash_value.py,sha256=4lvLnDpzNAHdiMkGJTTNDTu3p3H7Nxw5MR1Mzte7-_M,201
285
295
  llama_cloud/types/pipeline_file_create.py,sha256=yoMIzWED0ktKerE48kgzInBa3d0aNGO5JjTtDTDAn4A,1310
@@ -307,6 +317,11 @@ llama_cloud/types/progress_event_status.py,sha256=yb4RAXwOKU6Bi7iyYy-3lwhF6_mLz0
307
317
  llama_cloud/types/project.py,sha256=4NNh_ZAjEkoWl5st6b1jsPVf_SYKtUTB6rS1701G4IQ,1441
308
318
  llama_cloud/types/project_create.py,sha256=GxGmsXGJM-cHrvPFLktEkj9JtNsSdFae7-HPZFB4er0,1014
309
319
  llama_cloud/types/prompt_conf.py,sha256=hh8I3jxk3K6e5QZoBCLqszohMYtk73PERYoL36lLmTk,1660
320
+ llama_cloud/types/quota_configuration.py,sha256=gTt2pLHhh9PpWxs1gtH1sTxM3Z6BBOAgSBI8AHCRoFI,2178
321
+ llama_cloud/types/quota_configuration_configuration_type.py,sha256=tg7owI77nZSHaMhTYMiXO5V-_bwjlK0Ao3TP7s0TNRI,1645
322
+ llama_cloud/types/quota_configuration_status.py,sha256=Lcmu1Ek9GAcj7LP8ciMzHrDcXvQ6eEFXEXOzG8v_HmE,580
323
+ llama_cloud/types/quota_rate_limit_configuration_value.py,sha256=pusvBUv-7FOCa5QCglNjIYtrHszbD1ppV1TtIRnX3kA,1363
324
+ llama_cloud/types/quota_rate_limit_configuration_value_denominator_units.py,sha256=0kKYJRjLwRvViwj3tjEYarmpJjHTh5J7kvv3gR-55MY,920
310
325
  llama_cloud/types/re_rank_config.py,sha256=mxRWwrC5BLg3DP1yEyRwW2lIpv5BuXZfTy8f4RbcOp0,1262
311
326
  llama_cloud/types/re_ranker_type.py,sha256=qYItMEHrf80ePBp7gNGBSL67mkTIsqco92WJaJiYweo,1123
312
327
  llama_cloud/types/recurring_credit_grant.py,sha256=19qI3p5k1mQ1Qoo-gCQU02Aa42XpEsmwxPF1F88F-Yg,1517
@@ -347,23 +362,25 @@ llama_cloud/types/text_node.py,sha256=Tq3QmuKC5cIHvC9wAtvhsXl1g2sACs2yJwQ0Uko8GS
347
362
  llama_cloud/types/text_node_relationships_value.py,sha256=qmXURTk1Xg7ZDzRSSV1uDEel0AXRLohND5ioezibHY0,217
348
363
  llama_cloud/types/text_node_with_score.py,sha256=k-KYWO_mgJBvO6xUfOD5W6v1Ku9E586_HsvDoQbLfuQ,1229
349
364
  llama_cloud/types/token_chunking_config.py,sha256=XNvnTsNd--YOMQ_Ad8hoqhYgQftqkBHKVn6i7nJnMqs,1067
365
+ llama_cloud/types/update_user_response.py,sha256=NfZSKY3nYSQPrG5pBSFQKbeYXEV1FV5i7OWMMo3EQEQ,1147
350
366
  llama_cloud/types/usage_and_plan.py,sha256=bclc7TE7CTBu7RLiTHG426dziyj--I8m5NVu86I2AV4,1065
351
367
  llama_cloud/types/usage_metric_response.py,sha256=ukvtNZLeLacv-5F0-GQ5wTBZOPUPEjAeurgYPc4s7nA,1047
352
368
  llama_cloud/types/usage_response.py,sha256=o0u15PGNQmOOie4kJFfc4Rw0jKGLckBJdH0NCAfT8_k,1499
353
- llama_cloud/types/usage_response_active_alerts_item.py,sha256=5EgU7go_CPe2Bmio12MwDoJaMnaMW0XjFNvVks0BhQY,1255
369
+ llama_cloud/types/usage_response_active_alerts_item.py,sha256=FfaimaNpddbKKrnjh1xwmHPy-5ai_1xwBc7S8bfZ1R8,1494
354
370
  llama_cloud/types/user_job_record.py,sha256=mJHdokJsemXJOwM2l7fsW3X0SlwSNcy7yHbcXZHh3I4,1098
355
371
  llama_cloud/types/user_organization.py,sha256=yKewpOrMcB-CbujGNTjkX6QiWYr5HVsRIFQ-WX8kp2I,1729
356
372
  llama_cloud/types/user_organization_create.py,sha256=Zj57s9xuYVnLW2p8i4j2QORL-G1y7Ab3avXE1baERQY,1189
357
373
  llama_cloud/types/user_organization_delete.py,sha256=bEfgQMdTd6oAMZXtvSm5BhZahG1wAVDBXZ8e7V9UN7w,1159
358
374
  llama_cloud/types/user_organization_role.py,sha256=Tcfu9QISF5nRpo9jvboHzX-Yfg6b676UNfdjzjUIgAs,1448
375
+ llama_cloud/types/user_summary.py,sha256=OuGfvTmuKDR7_XgvZ_zoFkTU4I2d1g-WTbVWD4jWdoY,1418
359
376
  llama_cloud/types/validation_error.py,sha256=yZDLtjUHDY5w82Ra6CW0H9sLAr18R0RY1UNgJKR72DQ,1084
360
377
  llama_cloud/types/validation_error_loc_item.py,sha256=LAtjCHIllWRBFXvAZ5QZpp7CPXjdtN9EB7HrLVo6EP0,128
361
378
  llama_cloud/types/vertex_ai_embedding_config.py,sha256=DvQk2xMJFmo54MEXTzoM4KSADyhGm_ygmFyx6wIcQdw,1159
362
379
  llama_cloud/types/vertex_embedding_mode.py,sha256=yY23FjuWU_DkXjBb3JoKV4SCMqel2BaIMltDqGnIowU,1217
363
380
  llama_cloud/types/vertex_text_embedding.py,sha256=-C4fNCYfFl36ATdBMGFVPpiHIKxjk0KB1ERA2Ec20aU,1932
364
381
  llama_cloud/types/webhook_configuration.py,sha256=_Xm15whrWoKNBuCoO5y_NunA-ByhCAYK87LnC4W-Pzg,1350
365
- llama_cloud/types/webhook_configuration_webhook_events_item.py,sha256=LTfOwphnoYUQYwsHGTlCxoVU_PseIRAbmQJRBdyXnbg,1519
366
- llama_cloud-0.1.34.dist-info/LICENSE,sha256=_iNqtPcw1Ue7dZKwOwgPtbegMUkWVy15hC7bffAdNmY,1067
367
- llama_cloud-0.1.34.dist-info/METADATA,sha256=ppcOOqix2JsINMcHaep9YetTNGClITBAESbX30Iyqqw,1194
368
- llama_cloud-0.1.34.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
369
- llama_cloud-0.1.34.dist-info/RECORD,,
382
+ llama_cloud/types/webhook_configuration_webhook_events_item.py,sha256=OL3moFO_6hsKZYSBQBsSHmWA0NgLcLJgBPZfABwT60c,2544
383
+ llama_cloud-0.1.35.dist-info/LICENSE,sha256=_iNqtPcw1Ue7dZKwOwgPtbegMUkWVy15hC7bffAdNmY,1067
384
+ llama_cloud-0.1.35.dist-info/METADATA,sha256=-fwtdm5e3opq0GhkQGu4Pkw2RYvWew37uRjstjXmmwY,1194
385
+ llama_cloud-0.1.35.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
386
+ llama_cloud-0.1.35.dist-info/RECORD,,