llama-cloud 0.1.34__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.

Files changed (60) hide show
  1. llama_cloud/__init__.py +54 -2
  2. llama_cloud/client.py +3 -0
  3. llama_cloud/resources/__init__.py +6 -0
  4. llama_cloud/resources/admin/client.py +51 -0
  5. llama_cloud/resources/beta/client.py +211 -8
  6. llama_cloud/resources/classifier/client.py +231 -181
  7. llama_cloud/resources/data_sinks/types/data_sink_update_component.py +2 -0
  8. llama_cloud/resources/files/client.py +226 -0
  9. llama_cloud/resources/llama_extract/__init__.py +4 -0
  10. llama_cloud/resources/llama_extract/client.py +275 -4
  11. llama_cloud/resources/llama_extract/types/__init__.py +4 -0
  12. llama_cloud/resources/llama_extract/types/extract_stateless_request_data_schema.py +9 -0
  13. llama_cloud/resources/llama_extract/types/extract_stateless_request_data_schema_zero_value.py +7 -0
  14. llama_cloud/resources/parsing/client.py +24 -0
  15. llama_cloud/resources/users/__init__.py +2 -0
  16. llama_cloud/resources/users/client.py +155 -0
  17. llama_cloud/types/__init__.py +48 -2
  18. llama_cloud/types/classification_result.py +4 -5
  19. llama_cloud/types/classifier_rule.py +43 -0
  20. llama_cloud/types/classify_job.py +45 -0
  21. llama_cloud/types/{classify_response.py → classify_job_results.py} +3 -6
  22. llama_cloud/types/classify_job_with_status.py +47 -0
  23. llama_cloud/types/classify_parsing_configuration.py +38 -0
  24. llama_cloud/types/cloud_astra_db_vector_store.py +51 -0
  25. llama_cloud/types/cloud_confluence_data_source.py +15 -0
  26. llama_cloud/types/configurable_data_sink_names.py +4 -0
  27. llama_cloud/types/data_sink_component.py +2 -0
  28. llama_cloud/types/data_sink_create_component.py +2 -0
  29. llama_cloud/types/data_source_reader_version_metadata.py +2 -1
  30. llama_cloud/types/data_source_reader_version_metadata_reader_version.py +17 -0
  31. llama_cloud/types/extract_agent.py +3 -0
  32. llama_cloud/types/extract_config.py +4 -0
  33. llama_cloud/types/failure_handling_config.py +37 -0
  34. llama_cloud/types/file_classification.py +41 -0
  35. llama_cloud/types/file_data.py +36 -0
  36. llama_cloud/types/file_store_info_response.py +34 -0
  37. llama_cloud/types/file_store_info_response_status.py +25 -0
  38. llama_cloud/types/legacy_parse_job_config.py +3 -0
  39. llama_cloud/types/llama_extract_settings.py +4 -0
  40. llama_cloud/types/llama_parse_parameters.py +3 -0
  41. llama_cloud/types/managed_open_ai_embedding.py +36 -0
  42. llama_cloud/types/managed_open_ai_embedding_config.py +34 -0
  43. llama_cloud/types/multimodal_parse_resolution.py +17 -0
  44. llama_cloud/types/paginated_response_quota_configuration.py +36 -0
  45. llama_cloud/types/parse_job_config.py +3 -0
  46. llama_cloud/types/pipeline_embedding_config.py +11 -0
  47. llama_cloud/types/quota_configuration.py +53 -0
  48. llama_cloud/types/quota_configuration_configuration_type.py +33 -0
  49. llama_cloud/types/quota_configuration_status.py +21 -0
  50. llama_cloud/types/quota_rate_limit_configuration_value.py +38 -0
  51. llama_cloud/types/quota_rate_limit_configuration_value_denominator_units.py +29 -0
  52. llama_cloud/types/supported_llm_model_names.py +12 -0
  53. llama_cloud/types/update_user_response.py +33 -0
  54. llama_cloud/types/usage_response_active_alerts_item.py +4 -0
  55. llama_cloud/types/user_summary.py +38 -0
  56. llama_cloud/types/webhook_configuration_webhook_events_item.py +20 -0
  57. {llama_cloud-0.1.34.dist-info → llama_cloud-0.1.36.dist-info}/METADATA +2 -4
  58. {llama_cloud-0.1.34.dist-info → llama_cloud-0.1.36.dist-info}/RECORD +60 -34
  59. {llama_cloud-0.1.34.dist-info → llama_cloud-0.1.36.dist-info}/WHEEL +1 -1
  60. {llama_cloud-0.1.34.dist-info → llama_cloud-0.1.36.dist-info}/LICENSE +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()
@@ -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:
@@ -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
- Metadata-Version: 2.3
1
+ Metadata-Version: 2.1
2
2
  Name: llama-cloud
3
- Version: 0.1.34
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,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=ZE5Y7UEItg2hbjMAjjLgdoMaEYCnc478iEHSGwS4HAo,27419
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,21 +9,21 @@ 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
- llama_cloud/resources/admin/client.py,sha256=mzA_ezCjugKNmvWCMWEF0Z0k86ErACWov1VtPV1J2tU,3678
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
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
22
- llama_cloud/resources/classifier/client.py,sha256=EJyTdjuKhESP1Ew_kEOP_GUz2o1I_Zh2xnGyjJkA5iI,11804
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=EWbsPt3k_w_vySf01iiFanyN7UVNzSOM3weHzx-Y_rk,809
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
@@ -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=B_qhVsk-Qs81qrFOVgWqcvelSB3TLWFJCibnn--3BjE,83096
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=zPg9ZvyXe6PcaPTS519YoNDtKLjfGdUeoXH0Hr_wGMc,33040
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
@@ -102,12 +106,17 @@ llama_cloud/types/chat_app.py,sha256=fLuzYkXLq51C_Y23hoLwfmG-OiT7jlyHt2JGe6-f1IA
102
106
  llama_cloud/types/chat_app_response.py,sha256=WSKr1KI9_pGTSstr3I53kZ8qb3y87Q4ulh8fR0C7sSU,1784
103
107
  llama_cloud/types/chat_data.py,sha256=ZYqVtjXF6qPGajU4IWZu3InpU54TXJwBFiqxBepylP0,1197
104
108
  llama_cloud/types/chunk_mode.py,sha256=J4vqAQfQG6PWsIv1Fe_99nVsAfDbv_P81_KVsJ9AkU4,790
105
- llama_cloud/types/classification_result.py,sha256=aRuD2xfIQQUxGsW1jFA091b4SZFTnDFDrJxv3z0kP5E,1425
106
- llama_cloud/types/classify_response.py,sha256=qhw71pDfClb9karjfP2cmZHbRBZgm1i6pWUM7r7IF8o,1467
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
107
116
  llama_cloud/types/cloud_az_storage_blob_data_source.py,sha256=NT4cYsD1M868_bSJxKM9cvTMtjQtQxKloE4vRv8_lwg,1534
108
117
  llama_cloud/types/cloud_azure_ai_search_vector_store.py,sha256=9GTaft7BaKsR9RJQp5dlpbslXUlTMA1AcDdKV1ApfqI,1513
109
118
  llama_cloud/types/cloud_box_data_source.py,sha256=9bffCaKGvctSsk9OdTpzzP__O1NDpb9wdvKY2uwjpwY,1470
110
- llama_cloud/types/cloud_confluence_data_source.py,sha256=ok8BOv51SC4Ia9kX3DC8LuZjnP8hmdy-vqzOrTZek2A,1720
119
+ llama_cloud/types/cloud_confluence_data_source.py,sha256=q-bBwkG5L2QZqZdPDlvgzdz9Fv0jz4nn2Qpea3J0xu0,2303
111
120
  llama_cloud/types/cloud_document.py,sha256=Rg_H8lcz2TzxEAIdU-m5mGpkM7s0j1Cn4JHkXYddmGs,1255
112
121
  llama_cloud/types/cloud_document_create.py,sha256=fQ1gZAtLCpr-a-sPbMez_5fK9JMU3uyp2tNvIzWNG3U,1278
113
122
  llama_cloud/types/cloud_jira_data_source.py,sha256=9R20k8Ne0Bl9X5dgSxpM_IGOFmC70Llz0pJ93rAKRvw,1458
@@ -127,20 +136,21 @@ llama_cloud/types/composite_retrieval_mode.py,sha256=PtN0vQ90xyAJL4vyGRG4lMNOpnJ
127
136
  llama_cloud/types/composite_retrieval_result.py,sha256=EulVseVvpK50kto4wQweLO7jJe6l6Ym1erKa4dOl4CU,1801
128
137
  llama_cloud/types/composite_retrieved_text_node.py,sha256=eTQ99cdZ2PASff5n4oVV1oaNiS9Ie3AtY_E55kBYpBs,1702
129
138
  llama_cloud/types/composite_retrieved_text_node_with_score.py,sha256=o-HvmyjqODc68zYuobtj10_62FMBAKRLfRoTHGDdmxw,1148
130
- llama_cloud/types/configurable_data_sink_names.py,sha256=0Yk9i8hcNXKCcSKpa5KwsCwy_EDeodqbny7qmF86_lM,1225
139
+ llama_cloud/types/configurable_data_sink_names.py,sha256=eGSnwk5yWffBBc0C3Iuh8RlynGTmRC1hqVv0JlUfbNE,1385
131
140
  llama_cloud/types/configurable_data_source_names.py,sha256=mNW71sSgcVhU3kePAOUgRxeqK1Vo7F_J1xIzmYKPRq0,1971
132
141
  llama_cloud/types/credit_type.py,sha256=nwSRKDWgHk_msdWitctqtyeZwj5EFd6VLto6NF2yCd4,971
133
142
  llama_cloud/types/data_sink.py,sha256=PeexYHHoD8WkVp9WsFtfC-AIWszcgeJUprG1bwC8WsQ,1498
134
- llama_cloud/types/data_sink_component.py,sha256=uvuxLY3MPDpv_bkT0y-tHSZVPRSHCkDBDHVff-036Dg,749
143
+ llama_cloud/types/data_sink_component.py,sha256=yNX2YbevUd6RIbaAvkB40ttU0VSx2JBF-eCuLB_Au9Y,843
135
144
  llama_cloud/types/data_sink_create.py,sha256=dAaFPCwZ5oX0Fbf7ij62dzSaYnrhj3EHmnLnYnw2KgI,1360
136
- llama_cloud/types/data_sink_create_component.py,sha256=8QfNKSTJV_sQ0nJxlpfh0fBkMTSnQD1DTJR8ZMYaesI,755
145
+ llama_cloud/types/data_sink_create_component.py,sha256=0LWeqGDeQh3cZm2h5_IrSlFoU5VKmIILaOdE1VtPtfc,849
137
146
  llama_cloud/types/data_source.py,sha256=QkJsQBlLt7cX0FxYuNF1w9yZw1BnNcGiQTTfMAuxiEM,1852
138
147
  llama_cloud/types/data_source_component.py,sha256=QBxAneOFe8crS0z-eFo3gd1siToQ4hYsLdfB4p3ZeVU,974
139
148
  llama_cloud/types/data_source_create.py,sha256=s0bAX_GUwiRdrL-PXS9ROrvq3xpmqbqzdMa6thqL2P4,1581
140
149
  llama_cloud/types/data_source_create_component.py,sha256=6dlkvut0gyy6JA_F4--xPHYOCHi14N6oooWOnOEugzE,980
141
150
  llama_cloud/types/data_source_create_custom_metadata_value.py,sha256=ejSsQNbszYQaUWFh9r9kQpHf88qbhuRv1SI9J_MOSC0,215
142
151
  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
152
+ llama_cloud/types/data_source_reader_version_metadata.py,sha256=hh7Hunen9GHlvtLb8CM58ZD3V3pTYKX7FgNI7sgZHjM,1157
153
+ llama_cloud/types/data_source_reader_version_metadata_reader_version.py,sha256=PLFW6lFTNtBwmGpP5ZCidZwrwndHhirjKVNfrd0CDtI,542
144
154
  llama_cloud/types/data_source_update_dispatcher_config.py,sha256=Sh6HhXfEV2Z6PYhkYQucs2MxyKVpL3UPV-I4cbf--bA,1242
145
155
  llama_cloud/types/delete_params.py,sha256=1snPrd3WO9C1bKf0WdMslE2HQMF0yYLI3U7N53cmurM,1285
146
156
  llama_cloud/types/document_block.py,sha256=OYKd5M3LgJ0Cz0K0YNuVRoHz9HcUdVuf2Vcqku8fck4,1116
@@ -154,9 +164,9 @@ llama_cloud/types/embedding_model_config_embedding_config.py,sha256=9rmfeiJYhBPm
154
164
  llama_cloud/types/embedding_model_config_update.py,sha256=BiA1KbFT-TSvy5OEyChd0dgDnQCKfBRxsDTvVKNj10Q,1175
155
165
  llama_cloud/types/embedding_model_config_update_embedding_config.py,sha256=mrXFxzb9GRaH4UUnOe_05-uYUuiTgDDCRadAMbPmGgc,2991
156
166
  llama_cloud/types/eval_execution_params.py,sha256=ntVaJh5SMZMPL4QLUiihVjUlg2SKbrezvbMKGlrF66Q,1369
157
- llama_cloud/types/extract_agent.py,sha256=T98IOueut4M52Qm7hqcUOcWFFDhZ-ye0OFdXgfFGtS4,1763
167
+ llama_cloud/types/extract_agent.py,sha256=Vj6tg8aEjUPADsUlkhHSCotrfWt8uoktaV45J81KeLc,1869
158
168
  llama_cloud/types/extract_agent_data_schema_value.py,sha256=UaDQ2KjajLDccW7F4NKdfpefeTJrr1hl0c95WRETYkM,201
159
- llama_cloud/types/extract_config.py,sha256=LIkZK7kPiXMun9wrGpjJiMXVpTWmPfvZLx-u2sDWEp0,2340
169
+ llama_cloud/types/extract_config.py,sha256=FqHNQ7a7Jlyb8Ulsh96SmSfykf2PJDy8CerJ-git5io,2527
160
170
  llama_cloud/types/extract_config_priority.py,sha256=btl5lxl25Ve6_lTbQzQyjOKle8XoY0r16lk3364c3uw,795
161
171
  llama_cloud/types/extract_job.py,sha256=Yx4fDdCdylAji2LPTwqflVpz1o9slpj9tTLS93-1tzU,1431
162
172
  llama_cloud/types/extract_job_create.py,sha256=yLtrh46fsK8Q2_hz8Ub3mvGriSn5BI2OjjwpWRy5YsA,1680
@@ -182,12 +192,17 @@ llama_cloud/types/extract_schema_validate_response_data_schema_value.py,sha256=l
182
192
  llama_cloud/types/extract_state.py,sha256=TNeVAXXKZaiM2srlbQlzRSn4_TDpR4xyT_yQhJUxFvk,775
183
193
  llama_cloud/types/extract_target.py,sha256=Gt-FNqblzcjdfq1hxsqEjWWu-HNLXdKy4w98nog52Ms,478
184
194
  llama_cloud/types/fail_page_mode.py,sha256=n4fgPpiEB5siPoEg0Sux4COg7ElNybjshxDoUihZwRU,786
195
+ llama_cloud/types/failure_handling_config.py,sha256=EmAQW0qm7-JTSYFwhmIWxqkVNWym_AyAJIMEmeI9Cqc,1216
185
196
  llama_cloud/types/file.py,sha256=rQXitPRKOYw91nK5qOZ0vpOmIx_MCpRb0g78d9dQs6w,1822
197
+ llama_cloud/types/file_classification.py,sha256=jKzAc_3rg0Usyf3TNr-bI5HZn9zGIj9vYH90RKoDtiY,1418
186
198
  llama_cloud/types/file_count_by_status_response.py,sha256=WuorbZvKjDs9Ql1hUiQu4gN5iCm8d6fr92KLyHpRvQU,1356
199
+ llama_cloud/types/file_data.py,sha256=dH2SNK9ZM-ZH7uKFIfBsk8bVixM33rUr40BdZWFXLhU,1225
187
200
  llama_cloud/types/file_id_presigned_url.py,sha256=Yr_MGFKbuBEHK4efRSK53fHcoo5bbAKnqQGGhMycUc0,1398
188
201
  llama_cloud/types/file_parse_public.py,sha256=sshZ0BcjHMGpuz4ylSurv0K_3ejfPrUGGyDxBHCtdMg,1378
189
202
  llama_cloud/types/file_permission_info_value.py,sha256=RyQlNbhvIKS87Ywu7XUaw5jDToZX64M9Wqzu1U_q2Us,197
190
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
191
206
  llama_cloud/types/filter_condition.py,sha256=YEc-NaZbMha4oZVSKerZ6-gNYriNOZmTHTRMKX-9Ju0,678
192
207
  llama_cloud/types/filter_operation.py,sha256=lzyF_LQ-bT_wubU2bSbV6q2oncCE3mypz3D6qkAR86U,1663
193
208
  llama_cloud/types/filter_operation_eq.py,sha256=7UQkjycQvUFBvd1KRWfNacXAEgp2eGG6XNej0EikP1M,165
@@ -213,12 +228,12 @@ llama_cloud/types/job_record.py,sha256=Z6sF9AruZJo-kTRgNufAWS3WK1yaEqop6kox1GpBY
213
228
  llama_cloud/types/job_record_parameters.py,sha256=Oqxp5y0owPfjLc_NR7AYE8P3zM2PJo36N9olbyNl7AA,3425
214
229
  llama_cloud/types/job_record_with_usage_metrics.py,sha256=iNV2do5TB_0e3PoOz_DJyAaM6Cn9G8KG-dGPGgEs5SY,1198
215
230
  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
231
+ llama_cloud/types/legacy_parse_job_config.py,sha256=eEPExbkUi9J7lQoY0Fuc2HK_RlhPmO30cMkfjtmmizs,12832
217
232
  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
233
+ llama_cloud/types/llama_extract_settings.py,sha256=YKhhyUNgqpowTdTx715Uk13GdBsxCUZLVsLi5iYQIiY,2767
219
234
  llama_cloud/types/llama_index_core_base_llms_types_chat_message.py,sha256=NelHo-T-ebVMhRKsqE_xV8AJW4c7o6lS0uEQnPsmTwg,1365
220
235
  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
236
+ llama_cloud/types/llama_parse_parameters.py,sha256=5RxQ9pJ4kyVKwuJJbhWxnE0TwtMpH9i7AcuP3dMGIAw,6512
222
237
  llama_cloud/types/llama_parse_parameters_priority.py,sha256=EFRudtaID_s8rLKlfW8O8O9TDbpZdniIidK-xchhfRI,830
223
238
  llama_cloud/types/llama_parse_supported_file_extensions.py,sha256=B_0N3f8Aq59W9FbsH50mGBUiyWTIXQjHFl739uAyaQw,11207
224
239
  llama_cloud/types/llm_model_data.py,sha256=6rrycqGwlK3LZ2S-WtgmeomithdLhDCgwBBZQ5KLaso,1300
@@ -226,12 +241,15 @@ llama_cloud/types/llm_parameters.py,sha256=RTKYt09lm9a1MlnBfYuTP2x_Ww4byUNNc1TqI
226
241
  llama_cloud/types/load_files_job_config.py,sha256=R5sFgFmV__0mqLUuD7dkFoBJHG2ZLw5px9zRapvYcpE,1069
227
242
  llama_cloud/types/managed_ingestion_status.py,sha256=3KVlcurpEBOPAesBUS5pSYLoQVIyZUlr90Mmv-uALHE,1290
228
243
  llama_cloud/types/managed_ingestion_status_response.py,sha256=rdNpjNbQswF-6JG1e-EU374TP6Pjlxl0p7HJyNmuxTI,1373
244
+ llama_cloud/types/managed_open_ai_embedding.py,sha256=imByAQgyNeIC0oKfVzuzG57T6rKdfHUQK0DfNS-G3UM,1261
245
+ llama_cloud/types/managed_open_ai_embedding_config.py,sha256=my2Pws6d4JZr0wVzXd59oUNLxK0G-WhoRDEn8Ce1PWk,1180
229
246
  llama_cloud/types/message_annotation.py,sha256=n4F9w4LxwmGvgXDk6E8YPTMu_g0yEjZhZ_eNFXdS_bc,1017
230
247
  llama_cloud/types/message_role.py,sha256=9MpXT9drR33TyT1-NiqB3uGbuxvWwtoOdSmKQE9HmJI,1359
231
248
  llama_cloud/types/metadata_filter.py,sha256=LX2fGsUb4wvF5bj9iWO6IPQGi3i0L2Lb4cE6igeeX9Y,1438
232
249
  llama_cloud/types/metadata_filter_value.py,sha256=ij721gXNI7zbgsuDl9-AqBcXg2WDuVZhYS5F5YqekEs,188
233
250
  llama_cloud/types/metadata_filters.py,sha256=uSf6sB4oQu6WzMPNFG6Tc4euqEiYcj_X14Y5JWt9xVE,1315
234
251
  llama_cloud/types/metadata_filters_filters_item.py,sha256=e8KhD2q6Qc2_aK6r5CvyxC0oWVYO4F4vBIcB9eMEPPM,246
252
+ llama_cloud/types/multimodal_parse_resolution.py,sha256=_eNBgAmei6rvWT1tEIefC_dl_Y3ALR81gIgJYCgy6eA,489
235
253
  llama_cloud/types/node_relationship.py,sha256=2e2PqWm0LOTiImvtsyiuaAPNIl0BItjSrQZTJv65GRA,1209
236
254
  llama_cloud/types/none_chunking_config.py,sha256=D062t314Vp-s4n9h8wNgsYfElI4PonPKmihvjEmaqdA,952
237
255
  llama_cloud/types/none_segmentation_config.py,sha256=j3jUA6E8uFtwDMEu4TFG3Q4ZGCGiuUfUW9AMO1NNqXU,956
@@ -252,7 +270,8 @@ llama_cloud/types/paginated_list_pipeline_files_response.py,sha256=2TKR2oHSQRyLM
252
270
  llama_cloud/types/paginated_report_response.py,sha256=o79QhQi9r0HZZrhvRlA6WGjxtyPuxN0xONhwXSwxtcs,1104
253
271
  llama_cloud/types/paginated_response_agent_data.py,sha256=u6Y-Cq9qjGF5tskMOQChUNqyI91Tk-uQ6vQdi69cs80,1159
254
272
  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
273
+ llama_cloud/types/paginated_response_quota_configuration.py,sha256=S-miK621O7V6hBB05xcFBKCwa-gBK17iTHh29Saebz8,1123
274
+ llama_cloud/types/parse_job_config.py,sha256=8Rm4jkXIRIwX_muj5YmpMNxXEM4_4mE2RKtuMlboOh8,6975
256
275
  llama_cloud/types/parse_job_config_priority.py,sha256=__-gVv1GzktVCYZVyl6zeDt0pAZwYl-mxM0xkIHPEro,800
257
276
  llama_cloud/types/parse_plan_level.py,sha256=GBkDS19qfHseBa17EXfuTPNT4GNv5alyPrWEvWji3GY,528
258
277
  llama_cloud/types/parser_languages.py,sha256=Ps3IlaSt6tyxEI657N3-vZL96r2puk8wsf31cWnO-SI,10840
@@ -279,7 +298,7 @@ llama_cloud/types/pipeline_data_source_create.py,sha256=wMsymqB-YGyf3jdQr-N5ODVG
279
298
  llama_cloud/types/pipeline_data_source_custom_metadata_value.py,sha256=8n3r60sxMx4_udW0yzJZxzyWeK6L3cc2-jLGZFW4EDs,217
280
299
  llama_cloud/types/pipeline_data_source_status.py,sha256=BD4xoftwp9lWC8EjJTnf3boIG_AyzjLPuP4qJxGhmcc,1039
281
300
  llama_cloud/types/pipeline_deployment.py,sha256=eVBrz032aPb2cqtIIVYT5MTHQvBNm89XazoNrRWVugo,1356
282
- llama_cloud/types/pipeline_embedding_config.py,sha256=mpeJ6bOMvRUO12VTYbcHmgJ3ssHNKAUQMrF06j2t7Lc,2721
301
+ llama_cloud/types/pipeline_embedding_config.py,sha256=7NJzlabQLFUFsvj7fye-oKLPasaXCWJBm-XuLxy-xmQ,3112
283
302
  llama_cloud/types/pipeline_file.py,sha256=4t4Xbszsbcjik58NINofsA4nrxmAI-pVu1LyqTiALgk,2572
284
303
  llama_cloud/types/pipeline_file_config_hash_value.py,sha256=4lvLnDpzNAHdiMkGJTTNDTu3p3H7Nxw5MR1Mzte7-_M,201
285
304
  llama_cloud/types/pipeline_file_create.py,sha256=yoMIzWED0ktKerE48kgzInBa3d0aNGO5JjTtDTDAn4A,1310
@@ -307,6 +326,11 @@ llama_cloud/types/progress_event_status.py,sha256=yb4RAXwOKU6Bi7iyYy-3lwhF6_mLz0
307
326
  llama_cloud/types/project.py,sha256=4NNh_ZAjEkoWl5st6b1jsPVf_SYKtUTB6rS1701G4IQ,1441
308
327
  llama_cloud/types/project_create.py,sha256=GxGmsXGJM-cHrvPFLktEkj9JtNsSdFae7-HPZFB4er0,1014
309
328
  llama_cloud/types/prompt_conf.py,sha256=hh8I3jxk3K6e5QZoBCLqszohMYtk73PERYoL36lLmTk,1660
329
+ llama_cloud/types/quota_configuration.py,sha256=gTt2pLHhh9PpWxs1gtH1sTxM3Z6BBOAgSBI8AHCRoFI,2178
330
+ llama_cloud/types/quota_configuration_configuration_type.py,sha256=tg7owI77nZSHaMhTYMiXO5V-_bwjlK0Ao3TP7s0TNRI,1645
331
+ llama_cloud/types/quota_configuration_status.py,sha256=Lcmu1Ek9GAcj7LP8ciMzHrDcXvQ6eEFXEXOzG8v_HmE,580
332
+ llama_cloud/types/quota_rate_limit_configuration_value.py,sha256=pusvBUv-7FOCa5QCglNjIYtrHszbD1ppV1TtIRnX3kA,1363
333
+ llama_cloud/types/quota_rate_limit_configuration_value_denominator_units.py,sha256=0kKYJRjLwRvViwj3tjEYarmpJjHTh5J7kvv3gR-55MY,920
310
334
  llama_cloud/types/re_rank_config.py,sha256=mxRWwrC5BLg3DP1yEyRwW2lIpv5BuXZfTy8f4RbcOp0,1262
311
335
  llama_cloud/types/re_ranker_type.py,sha256=qYItMEHrf80ePBp7gNGBSL67mkTIsqco92WJaJiYweo,1123
312
336
  llama_cloud/types/recurring_credit_grant.py,sha256=19qI3p5k1mQ1Qoo-gCQU02Aa42XpEsmwxPF1F88F-Yg,1517
@@ -341,29 +365,31 @@ llama_cloud/types/status_enum.py,sha256=cUBIlys89E8PUzmVqqawu7qTDF0aRqBwiijOmRDP
341
365
  llama_cloud/types/struct_mode.py,sha256=ROicwjXfFmgVU8_xSVxJlnFUzRNKG5VIEF1wYg9uOPU,1020
342
366
  llama_cloud/types/struct_parse_conf.py,sha256=3QQBy8VP9JB16d4fTGK_GiU6PUALIOWCN9GYI3in6ic,2439
343
367
  llama_cloud/types/supported_llm_model.py,sha256=hubSopFICVNEegbJbtbpK6zRHwFPwUNtrw_NAw_3bfg,1380
344
- llama_cloud/types/supported_llm_model_names.py,sha256=PXL0gA1lc0GJNzZHnjOscoxHpPW787A8Adh-2egAKo8,2512
368
+ llama_cloud/types/supported_llm_model_names.py,sha256=w2FrfffSwpJflq1EoO6Kw7ViTOZNGX4hf60k0Qf3VLA,3213
345
369
  llama_cloud/types/text_block.py,sha256=X154sQkSyposXuRcEWNp_tWcDQ-AI6q_-MfJUN5exP8,958
346
370
  llama_cloud/types/text_node.py,sha256=Tq3QmuKC5cIHvC9wAtvhsXl1g2sACs2yJwQ0Uko8GSU,2846
347
371
  llama_cloud/types/text_node_relationships_value.py,sha256=qmXURTk1Xg7ZDzRSSV1uDEel0AXRLohND5ioezibHY0,217
348
372
  llama_cloud/types/text_node_with_score.py,sha256=k-KYWO_mgJBvO6xUfOD5W6v1Ku9E586_HsvDoQbLfuQ,1229
349
373
  llama_cloud/types/token_chunking_config.py,sha256=XNvnTsNd--YOMQ_Ad8hoqhYgQftqkBHKVn6i7nJnMqs,1067
374
+ llama_cloud/types/update_user_response.py,sha256=NfZSKY3nYSQPrG5pBSFQKbeYXEV1FV5i7OWMMo3EQEQ,1147
350
375
  llama_cloud/types/usage_and_plan.py,sha256=bclc7TE7CTBu7RLiTHG426dziyj--I8m5NVu86I2AV4,1065
351
376
  llama_cloud/types/usage_metric_response.py,sha256=ukvtNZLeLacv-5F0-GQ5wTBZOPUPEjAeurgYPc4s7nA,1047
352
377
  llama_cloud/types/usage_response.py,sha256=o0u15PGNQmOOie4kJFfc4Rw0jKGLckBJdH0NCAfT8_k,1499
353
- llama_cloud/types/usage_response_active_alerts_item.py,sha256=5EgU7go_CPe2Bmio12MwDoJaMnaMW0XjFNvVks0BhQY,1255
378
+ llama_cloud/types/usage_response_active_alerts_item.py,sha256=FfaimaNpddbKKrnjh1xwmHPy-5ai_1xwBc7S8bfZ1R8,1494
354
379
  llama_cloud/types/user_job_record.py,sha256=mJHdokJsemXJOwM2l7fsW3X0SlwSNcy7yHbcXZHh3I4,1098
355
380
  llama_cloud/types/user_organization.py,sha256=yKewpOrMcB-CbujGNTjkX6QiWYr5HVsRIFQ-WX8kp2I,1729
356
381
  llama_cloud/types/user_organization_create.py,sha256=Zj57s9xuYVnLW2p8i4j2QORL-G1y7Ab3avXE1baERQY,1189
357
382
  llama_cloud/types/user_organization_delete.py,sha256=bEfgQMdTd6oAMZXtvSm5BhZahG1wAVDBXZ8e7V9UN7w,1159
358
383
  llama_cloud/types/user_organization_role.py,sha256=Tcfu9QISF5nRpo9jvboHzX-Yfg6b676UNfdjzjUIgAs,1448
384
+ llama_cloud/types/user_summary.py,sha256=OuGfvTmuKDR7_XgvZ_zoFkTU4I2d1g-WTbVWD4jWdoY,1418
359
385
  llama_cloud/types/validation_error.py,sha256=yZDLtjUHDY5w82Ra6CW0H9sLAr18R0RY1UNgJKR72DQ,1084
360
386
  llama_cloud/types/validation_error_loc_item.py,sha256=LAtjCHIllWRBFXvAZ5QZpp7CPXjdtN9EB7HrLVo6EP0,128
361
387
  llama_cloud/types/vertex_ai_embedding_config.py,sha256=DvQk2xMJFmo54MEXTzoM4KSADyhGm_ygmFyx6wIcQdw,1159
362
388
  llama_cloud/types/vertex_embedding_mode.py,sha256=yY23FjuWU_DkXjBb3JoKV4SCMqel2BaIMltDqGnIowU,1217
363
389
  llama_cloud/types/vertex_text_embedding.py,sha256=-C4fNCYfFl36ATdBMGFVPpiHIKxjk0KB1ERA2Ec20aU,1932
364
390
  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,,
391
+ llama_cloud/types/webhook_configuration_webhook_events_item.py,sha256=OL3moFO_6hsKZYSBQBsSHmWA0NgLcLJgBPZfABwT60c,2544
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,,