llama-cloud 0.1.5__py3-none-any.whl → 0.1.7a1__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 (129) hide show
  1. llama_cloud/__init__.py +138 -2
  2. llama_cloud/client.py +15 -0
  3. llama_cloud/resources/__init__.py +17 -1
  4. llama_cloud/resources/chat_apps/__init__.py +2 -0
  5. llama_cloud/resources/chat_apps/client.py +620 -0
  6. llama_cloud/resources/data_sinks/client.py +2 -2
  7. llama_cloud/resources/data_sources/client.py +2 -2
  8. llama_cloud/resources/embedding_model_configs/client.py +4 -4
  9. llama_cloud/resources/files/__init__.py +2 -2
  10. llama_cloud/resources/files/client.py +21 -0
  11. llama_cloud/resources/files/types/__init__.py +2 -1
  12. llama_cloud/resources/files/types/file_create_permission_info_value.py +7 -0
  13. llama_cloud/resources/jobs/__init__.py +2 -0
  14. llama_cloud/resources/jobs/client.py +148 -0
  15. llama_cloud/resources/llama_extract/__init__.py +5 -0
  16. llama_cloud/resources/llama_extract/client.py +1038 -0
  17. llama_cloud/resources/llama_extract/types/__init__.py +6 -0
  18. llama_cloud/resources/llama_extract/types/extract_agent_create_data_schema_value.py +7 -0
  19. llama_cloud/resources/llama_extract/types/extract_agent_update_data_schema_value.py +7 -0
  20. llama_cloud/resources/organizations/client.py +14 -14
  21. llama_cloud/resources/parsing/client.py +480 -229
  22. llama_cloud/resources/pipelines/client.py +182 -126
  23. llama_cloud/resources/projects/client.py +210 -102
  24. llama_cloud/resources/reports/__init__.py +5 -0
  25. llama_cloud/resources/reports/client.py +1198 -0
  26. llama_cloud/resources/reports/types/__init__.py +7 -0
  27. llama_cloud/resources/reports/types/update_report_plan_api_v_1_reports_report_id_plan_patch_request_action.py +25 -0
  28. llama_cloud/resources/retrievers/__init__.py +2 -0
  29. llama_cloud/resources/retrievers/client.py +654 -0
  30. llama_cloud/types/__init__.py +124 -2
  31. llama_cloud/types/{chat_message.py → app_schema_chat_chat_message.py} +2 -2
  32. llama_cloud/types/chat_app.py +44 -0
  33. llama_cloud/types/chat_app_response.py +41 -0
  34. llama_cloud/types/cloud_az_storage_blob_data_source.py +1 -0
  35. llama_cloud/types/cloud_box_data_source.py +1 -0
  36. llama_cloud/types/cloud_confluence_data_source.py +1 -0
  37. llama_cloud/types/cloud_google_drive_data_source.py +1 -0
  38. llama_cloud/types/cloud_jira_data_source.py +1 -0
  39. llama_cloud/types/cloud_notion_page_data_source.py +1 -0
  40. llama_cloud/types/cloud_one_drive_data_source.py +1 -0
  41. llama_cloud/types/cloud_postgres_vector_store.py +1 -0
  42. llama_cloud/types/cloud_s_3_data_source.py +1 -0
  43. llama_cloud/types/cloud_sharepoint_data_source.py +1 -0
  44. llama_cloud/types/cloud_slack_data_source.py +1 -0
  45. llama_cloud/types/composite_retrieval_mode.py +21 -0
  46. llama_cloud/types/composite_retrieval_result.py +38 -0
  47. llama_cloud/types/composite_retrieved_text_node.py +42 -0
  48. llama_cloud/types/data_sink.py +1 -1
  49. llama_cloud/types/data_sink_create.py +1 -1
  50. llama_cloud/types/data_source.py +1 -1
  51. llama_cloud/types/data_source_create.py +1 -1
  52. llama_cloud/types/edit_suggestion.py +39 -0
  53. llama_cloud/types/eval_dataset_job_record.py +1 -0
  54. llama_cloud/types/extract_agent.py +45 -0
  55. llama_cloud/types/extract_agent_data_schema_value.py +5 -0
  56. llama_cloud/types/extract_config.py +40 -0
  57. llama_cloud/types/extract_job.py +35 -0
  58. llama_cloud/types/extract_job_create.py +40 -0
  59. llama_cloud/types/extract_job_create_data_schema_override_value.py +7 -0
  60. llama_cloud/types/extract_mode.py +17 -0
  61. llama_cloud/types/extract_resultset.py +46 -0
  62. llama_cloud/types/extract_resultset_data.py +11 -0
  63. llama_cloud/types/extract_resultset_data_item_value.py +7 -0
  64. llama_cloud/types/extract_resultset_data_zero_value.py +7 -0
  65. llama_cloud/types/extract_resultset_extraction_metadata_value.py +7 -0
  66. llama_cloud/types/file.py +3 -0
  67. llama_cloud/types/file_permission_info_value.py +5 -0
  68. llama_cloud/types/filter_condition.py +9 -1
  69. llama_cloud/types/filter_operator.py +4 -0
  70. llama_cloud/types/image_block.py +35 -0
  71. llama_cloud/types/input_message.py +1 -1
  72. llama_cloud/types/job_name_mapping.py +4 -0
  73. llama_cloud/types/job_names.py +89 -0
  74. llama_cloud/types/job_record.py +57 -0
  75. llama_cloud/types/job_record_with_usage_metrics.py +36 -0
  76. llama_cloud/types/llama_index_core_base_llms_types_chat_message.py +39 -0
  77. llama_cloud/types/llama_index_core_base_llms_types_chat_message_blocks_item.py +33 -0
  78. llama_cloud/types/llama_parse_parameters.py +15 -0
  79. llama_cloud/types/llm.py +1 -0
  80. llama_cloud/types/llm_model_data.py +1 -0
  81. llama_cloud/types/llm_parameters.py +1 -0
  82. llama_cloud/types/managed_ingestion_status.py +4 -0
  83. llama_cloud/types/managed_ingestion_status_response.py +1 -0
  84. llama_cloud/types/object_type.py +4 -0
  85. llama_cloud/types/organization.py +5 -0
  86. llama_cloud/types/paginated_jobs_history_with_metrics.py +35 -0
  87. llama_cloud/types/paginated_report_response.py +35 -0
  88. llama_cloud/types/parse_plan_level.py +21 -0
  89. llama_cloud/types/parsing_job_structured_result.py +32 -0
  90. llama_cloud/types/pipeline_create.py +3 -1
  91. llama_cloud/types/pipeline_data_source.py +1 -1
  92. llama_cloud/types/pipeline_file.py +3 -0
  93. llama_cloud/types/pipeline_file_permission_info_value.py +7 -0
  94. llama_cloud/types/playground_session.py +2 -2
  95. llama_cloud/types/preset_retrieval_params.py +1 -0
  96. llama_cloud/types/progress_event.py +44 -0
  97. llama_cloud/types/progress_event_status.py +33 -0
  98. llama_cloud/types/prompt_spec.py +2 -2
  99. llama_cloud/types/related_node_info.py +2 -2
  100. llama_cloud/types/related_node_info_node_type.py +7 -0
  101. llama_cloud/types/report.py +33 -0
  102. llama_cloud/types/report_block.py +34 -0
  103. llama_cloud/types/report_block_dependency.py +29 -0
  104. llama_cloud/types/report_create_response.py +31 -0
  105. llama_cloud/types/report_event_item.py +40 -0
  106. llama_cloud/types/report_event_item_event_data.py +45 -0
  107. llama_cloud/types/report_event_type.py +37 -0
  108. llama_cloud/types/report_metadata.py +39 -0
  109. llama_cloud/types/report_plan.py +36 -0
  110. llama_cloud/types/report_plan_block.py +36 -0
  111. llama_cloud/types/report_query.py +33 -0
  112. llama_cloud/types/report_response.py +41 -0
  113. llama_cloud/types/report_state.py +37 -0
  114. llama_cloud/types/report_state_event.py +38 -0
  115. llama_cloud/types/report_update_event.py +38 -0
  116. llama_cloud/types/retrieve_results.py +1 -1
  117. llama_cloud/types/retriever.py +45 -0
  118. llama_cloud/types/retriever_create.py +37 -0
  119. llama_cloud/types/retriever_pipeline.py +37 -0
  120. llama_cloud/types/status_enum.py +4 -0
  121. llama_cloud/types/supported_llm_model_names.py +4 -0
  122. llama_cloud/types/text_block.py +31 -0
  123. llama_cloud/types/text_node.py +13 -6
  124. llama_cloud/types/usage_metric_response.py +34 -0
  125. llama_cloud/types/user_job_record.py +32 -0
  126. {llama_cloud-0.1.5.dist-info → llama_cloud-0.1.7a1.dist-info}/METADATA +3 -1
  127. {llama_cloud-0.1.5.dist-info → llama_cloud-0.1.7a1.dist-info}/RECORD +129 -59
  128. {llama_cloud-0.1.5.dist-info → llama_cloud-0.1.7a1.dist-info}/WHEEL +1 -1
  129. {llama_cloud-0.1.5.dist-info → llama_cloud-0.1.7a1.dist-info}/LICENSE +0 -0
@@ -16,6 +16,13 @@ except ImportError:
16
16
 
17
17
 
18
18
  class TextNode(pydantic.BaseModel):
19
+ """
20
+ Provided for backward compatibility.
21
+
22
+ Note: we keep the field with the typo "seperator" to maintain backward compatibility for
23
+ serialized objects.
24
+ """
25
+
19
26
  id: typing.Optional[str] = pydantic.Field(alias="id_", description="Unique ID of the node.")
20
27
  embedding: typing.Optional[typing.List[float]]
21
28
  extra_info: typing.Optional[typing.Dict[str, typing.Any]] = pydantic.Field(
@@ -30,6 +37,12 @@ class TextNode(pydantic.BaseModel):
30
37
  relationships: typing.Optional[typing.Dict[str, TextNodeRelationshipsValue]] = pydantic.Field(
31
38
  description="A mapping of relationships to other node information."
32
39
  )
40
+ metadata_template: typing.Optional[str] = pydantic.Field(
41
+ description="Template for how metadata is formatted, with {key} and {value} placeholders."
42
+ )
43
+ metadata_seperator: typing.Optional[str] = pydantic.Field(
44
+ description="Separator between metadata fields when converting to string."
45
+ )
33
46
  text: typing.Optional[str] = pydantic.Field(description="Text content of the node.")
34
47
  mimetype: typing.Optional[str] = pydantic.Field(description="MIME type of the node content.")
35
48
  start_char_idx: typing.Optional[int]
@@ -37,12 +50,6 @@ class TextNode(pydantic.BaseModel):
37
50
  text_template: typing.Optional[str] = pydantic.Field(
38
51
  description="Template for how text is formatted, with {content} and {metadata_str} placeholders."
39
52
  )
40
- metadata_template: typing.Optional[str] = pydantic.Field(
41
- description="Template for how metadata is formatted, with {key} and {value} placeholders."
42
- )
43
- metadata_seperator: typing.Optional[str] = pydantic.Field(
44
- description="Separator between metadata fields when converting to string."
45
- )
46
53
  class_name: typing.Optional[str]
47
54
 
48
55
  def json(self, **kwargs: typing.Any) -> str:
@@ -0,0 +1,34 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import datetime as dt
4
+ import typing
5
+
6
+ from ..core.datetime_utils import serialize_datetime
7
+
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 UsageMetricResponse(pydantic.BaseModel):
18
+ feature_usage: typing.Dict[str, typing.Any]
19
+ day: str
20
+ source: str
21
+ job_id: str
22
+
23
+ def json(self, **kwargs: typing.Any) -> str:
24
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
25
+ return super().json(**kwargs_with_defaults)
26
+
27
+ def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
28
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
29
+ return super().dict(**kwargs_with_defaults)
30
+
31
+ class Config:
32
+ frozen = True
33
+ smart_union = True
34
+ json_encoders = {dt.datetime: serialize_datetime}
@@ -0,0 +1,32 @@
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 UserJobRecord(pydantic.BaseModel):
18
+ id: str = pydantic.Field(description="The user id from who triggered the job")
19
+ name: str = pydantic.Field(description="The name of the user")
20
+
21
+ def json(self, **kwargs: typing.Any) -> str:
22
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
23
+ return super().json(**kwargs_with_defaults)
24
+
25
+ def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
26
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
27
+ return super().dict(**kwargs_with_defaults)
28
+
29
+ class Config:
30
+ frozen = True
31
+ smart_union = True
32
+ json_encoders = {dt.datetime: serialize_datetime}
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: llama-cloud
3
- Version: 0.1.5
3
+ Version: 0.1.7a1
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
+ Requires-Dist: certifi (>=2024.7.4,<2025.0.0)
15
17
  Requires-Dist: httpx (>=0.20.0)
16
18
  Requires-Dist: pydantic (>=1.10)
17
19
  Description-Content-Type: text/markdown
@@ -1,5 +1,5 @@
1
- llama_cloud/__init__.py,sha256=tr6MJv89iN1pgBzR0_hTaLZVYuA7dKwDjQuRgMwzVAk,17275
2
- llama_cloud/client.py,sha256=d6OdGgwsNaFUCYZpU7KZBrFkirD4nfJriepKSC6Gi9w,4628
1
+ llama_cloud/__init__.py,sha256=MTdmdhGqQjGi2R3n81MTydMNJ1bSP1DGl0kqG5JYw44,21117
2
+ llama_cloud/client.py,sha256=tR2pbEQS9P70s5KbXdOI-xGVUiUFc4_8hyPOkSVoyUg,5801
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,20 +9,22 @@ 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=DPzHUs0XZAeGTrRPQ5kpt9yD5Ttya8H6fQbyYuIo1Oo,3153
12
+ llama_cloud/resources/__init__.py,sha256=GU2EQEjGVcWWE4HGCoBEMSUMHYEQQpXKCR35QIYdKsQ,3701
13
+ llama_cloud/resources/chat_apps/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
14
+ llama_cloud/resources/chat_apps/client.py,sha256=45nthWTX30BR_JlUxbdJTZR_WMjNIkbRzmyywxZu0Eg,23392
13
15
  llama_cloud/resources/component_definitions/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
14
16
  llama_cloud/resources/component_definitions/client.py,sha256=YYfoXNa1qim2OdD5y4N5mvoBZKtrCuXS560mtqH_-1c,7569
15
17
  llama_cloud/resources/data_sinks/__init__.py,sha256=ZHUjn3HbKhq_7QS1q74r2m5RGKF5lxcvF2P6pGvpcis,147
16
- llama_cloud/resources/data_sinks/client.py,sha256=yl_P7GhEELOL55_KirmEQc6ZE3tP2kJnvumLbJDRZYc,20559
18
+ llama_cloud/resources/data_sinks/client.py,sha256=GpD6FhbGqkg2oUToyMG6J8hPxG_iG7W5ZJRo0qg3yzk,20639
17
19
  llama_cloud/resources/data_sinks/types/__init__.py,sha256=M1aTcufJwiEZo9B0KmYj9PfkSd6I1ooFt9tpIRGwgg8,168
18
20
  llama_cloud/resources/data_sinks/types/data_sink_update_component.py,sha256=EWbsPt3k_w_vySf01iiFanyN7UVNzSOM3weHzx-Y_rk,809
19
21
  llama_cloud/resources/data_sources/__init__.py,sha256=McURkcNBGHXH1hmRDRmZI1dRzJrekCTHZsgv03r2oZI,227
20
- llama_cloud/resources/data_sources/client.py,sha256=kBU8-LhYVXI1OzlTbHgw_mOrr-WQDC7OTyVOf90s7f0,21771
22
+ llama_cloud/resources/data_sources/client.py,sha256=SZFm8bW5nkaXringdSnmxHqvVjKM7cNNOtqVXjgTKhc,21855
21
23
  llama_cloud/resources/data_sources/types/__init__.py,sha256=Cd5xEECTzXqQSfJALfJPSjudlSLeb3RENeJVi8vwPbM,303
22
24
  llama_cloud/resources/data_sources/types/data_source_update_component.py,sha256=u9sYcs3A4ZDzKjWCH3W9xIXCcLkZkVZxwoFOhEluqJU,1173
23
25
  llama_cloud/resources/data_sources/types/data_source_update_custom_metadata_value.py,sha256=3aFC-p8MSxjhOu2nFtqk0pixj6RqNqcFnbOYngUdZUk,215
24
26
  llama_cloud/resources/embedding_model_configs/__init__.py,sha256=cXDtKKq-gj7yjFjdQ5GrGyPs-T5tRV_0JjUMGlAbdUs,1115
25
- llama_cloud/resources/embedding_model_configs/client.py,sha256=UNqZsaRZytcRvMIY_BAOgUHqUpgFHrHlY88189tdJik,15629
27
+ llama_cloud/resources/embedding_model_configs/client.py,sha256=uyuDfQQXudqLEQFevPX_HfoKbMY23__jK_-EnfayITo,15669
26
28
  llama_cloud/resources/embedding_model_configs/types/__init__.py,sha256=6-rcDwJhw_0shz3CjrPvlYBYXJJ1bLn-PpplhOsQ79w,1156
27
29
  llama_cloud/resources/embedding_model_configs/types/embedding_model_config_create_embedding_config.py,sha256=SQCHJk0AmBbKS5XKdcEJxhDhIMLQCmCI13IHC28v7vQ,3054
28
30
  llama_cloud/resources/evals/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
@@ -32,27 +34,42 @@ llama_cloud/resources/extraction/client.py,sha256=i-oud3LOZgkfzQ8JcuKaSnLNwpWFL8
32
34
  llama_cloud/resources/extraction/types/__init__.py,sha256=ePJKSJ6hGIsPnfpe0Sp5w4mBZgnZes4cdtZ8Gfw81Gc,347
33
35
  llama_cloud/resources/extraction/types/extraction_schema_create_data_schema_value.py,sha256=igTdUjMeB-PI5xKrloRKHY-EvL6_V8OLshABu6Dyx4A,217
34
36
  llama_cloud/resources/extraction/types/extraction_schema_update_data_schema_value.py,sha256=z_4tkLkWnHnd3Xa9uUctk9hG9Mo7GKU4dK4s2pm8qow,217
35
- llama_cloud/resources/files/__init__.py,sha256=VXhHrp72yZNsFKgiOn8PP2M0qOp8L9_bIIhwi1hdYHg,229
36
- llama_cloud/resources/files/client.py,sha256=ZJtytxbHzuzxhcZAibd7CDbiB9eUzWZIxgyYDdrzQog,37256
37
- llama_cloud/resources/files/types/__init__.py,sha256=QrzkdOU0N52HT3IkMFA0TH95_9A1FpoRY37mrPe6PZQ,308
37
+ llama_cloud/resources/files/__init__.py,sha256=3B0SNM8EE6PddD5LpxYllci9vflEXy1xjPzhEEd-OUk,293
38
+ llama_cloud/resources/files/client.py,sha256=H4rXLxIB5Oh4_zas8HXnfMzuOjUC4Gu3y7RCG4Ihr1M,38417
39
+ llama_cloud/resources/files/types/__init__.py,sha256=EPYENAwkjBWv1MLf8s7R5-RO-cxZ_8NPrqfR4ZoR7jY,418
38
40
  llama_cloud/resources/files/types/file_create_from_url_resource_info_value.py,sha256=Wc8wFgujOO5pZvbbh2TMMzpa37GKZd14GYNJ9bdq7BE,214
41
+ llama_cloud/resources/files/types/file_create_permission_info_value.py,sha256=KPCFuEaa8NiB85A5MfdXRAQ0poAUTl7Feg6BTfmdWas,209
39
42
  llama_cloud/resources/files/types/file_create_resource_info_value.py,sha256=R7Y-CJf7fnbvIqE3xOI5XOrmPwLbVJLC7zpxMu8Zopk,201
43
+ llama_cloud/resources/jobs/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
44
+ llama_cloud/resources/jobs/client.py,sha256=mN9uOzys9aZkhOJkApUy0yhfNeK8X09xQxT34ZPptNY,5386
45
+ llama_cloud/resources/llama_extract/__init__.py,sha256=mGjNDYAR0wkKNv8ijOuYWs2eLOVHKT7aA7W38G1YmbA,239
46
+ llama_cloud/resources/llama_extract/client.py,sha256=WfcCfdfbHNkO3Yn0gw_WO_ZicdXdtht2rwNJTD3hpU8,41281
47
+ llama_cloud/resources/llama_extract/types/__init__.py,sha256=t7W_qg9IjxLCGBYLqcJCfYgvS2kaztA24CVdAxmavAI,323
48
+ llama_cloud/resources/llama_extract/types/extract_agent_create_data_schema_value.py,sha256=lfZKA5iwWjOwoEzEXwmFTL9AFPRyt55ZhqMzTeTkvyg,213
49
+ llama_cloud/resources/llama_extract/types/extract_agent_update_data_schema_value.py,sha256=uC3amoxbU8Rn1N1NRbbgf77ZE1qkFH6M4JEXursKGgo,213
40
50
  llama_cloud/resources/organizations/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
41
- llama_cloud/resources/organizations/client.py,sha256=P9sMLcM46u-OtNEW9DHOu_y27MnG3MK9eloDfPNt9Is,55548
51
+ llama_cloud/resources/organizations/client.py,sha256=ik_mtJs7C32f0dnZXC-9OlmxjOs0uagU1E8umaykqDU,55652
42
52
  llama_cloud/resources/parsing/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
43
- llama_cloud/resources/parsing/client.py,sha256=5bmfxQnw28UHd0Vn4bKrm-hVk6dcbxS86dqxJPX5T_s,50040
53
+ llama_cloud/resources/parsing/client.py,sha256=eNKKDbODRHaVSJqleMyoMWEITjhUpBIMTLgEt4G2v7s,59206
44
54
  llama_cloud/resources/pipelines/__init__.py,sha256=Mx7p3jDZRLMltsfywSufam_4AnHvmAfsxtMHVI72e-8,1083
45
- llama_cloud/resources/pipelines/client.py,sha256=K2KLz5F-R4KlWOPVf0l3K8R7_VD8OX4oW4T5N-ndMc0,131705
55
+ llama_cloud/resources/pipelines/client.py,sha256=MORoQkrH6-8-utV41zrXjFW2BegDsa_6pJhJvFH4OMQ,134251
46
56
  llama_cloud/resources/pipelines/types/__init__.py,sha256=jjaMc0V3K1HZLMYZ6WT4ydMtBCVy-oF5koqTCovbDws,1202
47
57
  llama_cloud/resources/pipelines/types/pipeline_file_update_custom_metadata_value.py,sha256=trI48WLxPcAqV9207Q6-3cj1nl4EGlZpw7En56ZsPgg,217
48
58
  llama_cloud/resources/pipelines/types/pipeline_update_embedding_config.py,sha256=c8FF64fDrBMX_2RX4uY3CjbNc0Ss_AUJ4Eqs-KeV4Wc,2874
49
59
  llama_cloud/resources/pipelines/types/pipeline_update_transform_config.py,sha256=KbkyULMv-qeS3qRd31ia6pd5rOdypS0o2UL42NRcA7E,321
50
60
  llama_cloud/resources/projects/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
51
- llama_cloud/resources/projects/client.py,sha256=yCtfQENHOQqqzzsqc9SjHv0c99t15neTp7IF0yuB4Yw,50726
52
- llama_cloud/types/__init__.py,sha256=8077Wzq0-pXJEd6XTiXhkhWDlmCjRq-dE-0xB2wwhCE,19903
61
+ llama_cloud/resources/projects/client.py,sha256=B1A68C_rm7pfI6_fq9Xm1zuHdt9O8mLk1ZVvIt0iFb4,55882
62
+ llama_cloud/resources/reports/__init__.py,sha256=cruYbQ1bIuJbRpkfaQY7ajUEslffjd7KzvzMzbtPH94,217
63
+ llama_cloud/resources/reports/client.py,sha256=QiAG8Gr026oqHKuqlHRJTXBwkZIDaq60nzwim1u03zE,45192
64
+ llama_cloud/resources/reports/types/__init__.py,sha256=LfwDYrI4RcQu-o42iAe7HkcwHww2YU90lOonBPTmZIk,291
65
+ llama_cloud/resources/reports/types/update_report_plan_api_v_1_reports_report_id_plan_patch_request_action.py,sha256=Qh-MSeRvDBfNb5hoLELivv1pLtrYVf52WVoP7G8V34A,807
66
+ llama_cloud/resources/retrievers/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
67
+ llama_cloud/resources/retrievers/client.py,sha256=7dWF6uaeoLn8SEhLrt5-cZo-teL0evV7WyJ50dnRpGQ,24655
68
+ llama_cloud/types/__init__.py,sha256=2obblJXKhvfGbQVAUKDCbAxe0EcC3c68v6wCS4ojzeQ,24880
53
69
  llama_cloud/types/advanced_mode_transform_config.py,sha256=4xCXye0_cPmVS1F8aNTx81sIaEPjQH9kiCCAIoqUzlI,1502
54
70
  llama_cloud/types/advanced_mode_transform_config_chunking_config.py,sha256=wYbJnWLpeQDfhmDZz-wJfYzD1iGT5Jcxb9ga3mzUuvk,1983
55
71
  llama_cloud/types/advanced_mode_transform_config_segmentation_config.py,sha256=anNGq0F5-IlbIW3kpC8OilzLJnUq5tdIcWHnRnmlYsg,1303
72
+ llama_cloud/types/app_schema_chat_chat_message.py,sha256=4Mplkc7PczuxKL7Gga3aj8QFLwyVDgHAsdUfEtdsTIo,1593
56
73
  llama_cloud/types/auto_transform_config.py,sha256=HVeHZM75DMRznScqLTfrMwcZwIdyWPuaEYbPewnHqwc,1168
57
74
  llama_cloud/types/azure_open_ai_embedding.py,sha256=MeDqZoPYFN7Nv_imY9cfqDU9SPlEyAY4HcQZ4PF5X3g,2264
58
75
  llama_cloud/types/azure_open_ai_embedding_config.py,sha256=o1zZhzcGElH3SeixFErrm7P_WFHQ6LvrLem_nKJWunw,1170
@@ -63,47 +80,52 @@ llama_cloud/types/bedrock_embedding_config.py,sha256=32dMhoA2cLx1jeogDnCl9WPVb83
63
80
  llama_cloud/types/box_auth_mechanism.py,sha256=EwEdpWYytw_dRtSElfSMPhh5dxalYH8mGW3UAUpkUfY,502
64
81
  llama_cloud/types/character_chunking_config.py,sha256=2ooAnrlVVbKj4nDi_lR66x5E6nWOmj5YDWhSMQD0ubc,1035
65
82
  llama_cloud/types/character_splitter.py,sha256=Jm6ie7c9JmMqIqLfAN-96sYvNUaIyLzCPBjNUx29VUw,1896
83
+ llama_cloud/types/chat_app.py,sha256=sVBCcW6Oh6YuksdIHqvNOxZnxfeRnr1O2r27SQqiDTg,1283
84
+ llama_cloud/types/chat_app_response.py,sha256=FOP7eSkxmJMQ_u41pC2W0cp2oNpEIKgD79DgmxAWYDM,1271
66
85
  llama_cloud/types/chat_data.py,sha256=ZYqVtjXF6qPGajU4IWZu3InpU54TXJwBFiqxBepylP0,1197
67
- llama_cloud/types/chat_message.py,sha256=Yl53CTyGf7uZEez-FxHeD_IL69pF2WL6tZHUUUb1y3c,1523
68
- llama_cloud/types/cloud_az_storage_blob_data_source.py,sha256=SH--TXe-bHHMmZI5kBdFFucHqDrTwebOIrEuxpO9nBE,1483
86
+ llama_cloud/types/cloud_az_storage_blob_data_source.py,sha256=NT4cYsD1M868_bSJxKM9cvTMtjQtQxKloE4vRv8_lwg,1534
69
87
  llama_cloud/types/cloud_azure_ai_search_vector_store.py,sha256=9GTaft7BaKsR9RJQp5dlpbslXUlTMA1AcDdKV1ApfqI,1513
70
- llama_cloud/types/cloud_box_data_source.py,sha256=2hkAIwQ97rLk5Pjq2_I-2nGT-kwMD8H9Npw3gh6XJGg,1419
71
- llama_cloud/types/cloud_confluence_data_source.py,sha256=H1afuJGkM75y5QJPcMo_yXdQruks5FBT_c1oOI3nuHI,1435
88
+ llama_cloud/types/cloud_box_data_source.py,sha256=9bffCaKGvctSsk9OdTpzzP__O1NDpb9wdvKY2uwjpwY,1470
89
+ llama_cloud/types/cloud_confluence_data_source.py,sha256=bl4LUbY3RdTkYRbzSHBTG1zKy1fJ9faNACthSe_6Gvw,1486
72
90
  llama_cloud/types/cloud_document.py,sha256=Rg_H8lcz2TzxEAIdU-m5mGpkM7s0j1Cn4JHkXYddmGs,1255
73
91
  llama_cloud/types/cloud_document_create.py,sha256=fQ1gZAtLCpr-a-sPbMez_5fK9JMU3uyp2tNvIzWNG3U,1278
74
- llama_cloud/types/cloud_google_drive_data_source.py,sha256=3zVmo8YH5GUHEwigylKCaZbQ6HTXIoFl8WudQOCVoB8,1253
75
- llama_cloud/types/cloud_jira_data_source.py,sha256=4fq0Ac1zxyqw3eVJV38JJsN_3xG0yrUvDxb54Vw6s9I,1407
92
+ llama_cloud/types/cloud_google_drive_data_source.py,sha256=jf5k7SY8scR-8_X27ShYSh1vOiFteqIH6cNcG7xZGLE,1304
93
+ llama_cloud/types/cloud_jira_data_source.py,sha256=9R20k8Ne0Bl9X5dgSxpM_IGOFmC70Llz0pJ93rAKRvw,1458
76
94
  llama_cloud/types/cloud_milvus_vector_store.py,sha256=CHFTJSYPZKYPUU-jpB1MG8OwRvnPiT07o7cYCvQMZLA,1235
77
95
  llama_cloud/types/cloud_mongo_db_atlas_vector_search.py,sha256=R-3zF5aH1PvkhXpGLGCFdfgS6Ehey8iYQFX6N0GZNA8,1725
78
- llama_cloud/types/cloud_notion_page_data_source.py,sha256=-BC28uhoWX0IzmgyEluGR9OCJQj2UbcWV3DxJswM8E0,1179
79
- llama_cloud/types/cloud_one_drive_data_source.py,sha256=SjftRD8SimZuoeFseFSfIpFX313Y-74HTCfJk8ufFoQ,1518
96
+ llama_cloud/types/cloud_notion_page_data_source.py,sha256=DxYullFctkpd0A75lfTmPzf-9EjBlusMTtNs3RbmIag,1230
97
+ llama_cloud/types/cloud_one_drive_data_source.py,sha256=ryDLKD7FVvXGo5maj92CSe522thi86tsKBRMktR-WGM,1569
80
98
  llama_cloud/types/cloud_pinecone_vector_store.py,sha256=d1jEezwE6ndNG-2izgoO_m9tG3N1ZFvmeCXI2r3miFc,1724
81
- llama_cloud/types/cloud_postgres_vector_store.py,sha256=nWD7QcwUkDE2QOB0NaA5XLvP9Rinb_gIvb_JBe_CZC4,1235
99
+ llama_cloud/types/cloud_postgres_vector_store.py,sha256=BSTy8UocNI2XHeE5_tuUhZxk2CtpvYMeWULwSl-QtKc,1276
82
100
  llama_cloud/types/cloud_qdrant_vector_store.py,sha256=F-gjNArzwLWmqgPcC-ZxRqSrhTFZbv5kqmIXmnLPB5o,1718
83
- llama_cloud/types/cloud_s_3_data_source.py,sha256=8UazWcol_fg7jJ7vQiGjEeYO-1io39M_kZXtSDdJeq8,1325
84
- llama_cloud/types/cloud_sharepoint_data_source.py,sha256=0UbHQkBIiVjPCrIpydN1kztYp22p1boeyoj8v1Lb_Sg,1515
85
- llama_cloud/types/cloud_slack_data_source.py,sha256=dDsYcBLchGrd9xMGJqIqNBAazDwc5OJvD-07a5U0G5I,1323
101
+ llama_cloud/types/cloud_s_3_data_source.py,sha256=LG19EMOfIfm14XLbMaUC25BKzdL5u_Mb5GwgF7cB9Kw,1376
102
+ llama_cloud/types/cloud_sharepoint_data_source.py,sha256=sN4XmAmkrZMLyvRwk7kohNRaea9lU2mHYGfF36HZ3lk,1566
103
+ llama_cloud/types/cloud_slack_data_source.py,sha256=tlsNj-hDj1gWmM0Q2A1BeyolfaPg_wfvSlJGTETknAo,1374
86
104
  llama_cloud/types/code_splitter.py,sha256=8MJScSxk9LzByufokcWG3AHAnOjUt13VlV2w0SCXTLc,1987
87
105
  llama_cloud/types/cohere_embedding.py,sha256=wkv_fVCA1WEroGawzPFExwmiJ75gPfzeeemty7NBlsM,1579
88
106
  llama_cloud/types/cohere_embedding_config.py,sha256=c0Kj1wuSsBX9TQ2AondKv5ZtX5PmkivsHj6P0M7tVB4,1142
107
+ llama_cloud/types/composite_retrieval_mode.py,sha256=PtN0vQ90xyAJL4vyGRG4lMNOpnJ__2L1xiwosI9yfms,548
108
+ llama_cloud/types/composite_retrieval_result.py,sha256=9BF9r5atA9AW_59iQjfPUHPqYphF0DG54WqHm0aV7FU,1450
109
+ llama_cloud/types/composite_retrieved_text_node.py,sha256=eTQ99cdZ2PASff5n4oVV1oaNiS9Ie3AtY_E55kBYpBs,1702
89
110
  llama_cloud/types/configurable_data_sink_names.py,sha256=0Yk9i8hcNXKCcSKpa5KwsCwy_EDeodqbny7qmF86_lM,1225
90
111
  llama_cloud/types/configurable_data_source_names.py,sha256=mNW71sSgcVhU3kePAOUgRxeqK1Vo7F_J1xIzmYKPRq0,1971
91
112
  llama_cloud/types/configurable_transformation_definition.py,sha256=LDOhI5IDxlLDWM_p_xwCFM7qq1y-aGA8UxN7dnplDlU,1886
92
113
  llama_cloud/types/configurable_transformation_names.py,sha256=N_YhY8IuQxsqBteCibaQwEaY0zd6Ncb6jW69d9mjrdU,1898
93
114
  llama_cloud/types/configured_transformation_item.py,sha256=9caK5ZOKgGCZc6ynJJIWwpxpScKHOHkZwHFlsBy-Fog,1826
94
115
  llama_cloud/types/configured_transformation_item_component.py,sha256=VEwtkbnImKGtzaSaIb9q46xu7ZPZliqK7oMh_-ftiq8,712
95
- llama_cloud/types/data_sink.py,sha256=-4RIM1U5wjXm1Jfl6GmAnVLIRVKcd_j-AFigvQcXliA,1426
116
+ llama_cloud/types/data_sink.py,sha256=PeexYHHoD8WkVp9WsFtfC-AIWszcgeJUprG1bwC8WsQ,1498
96
117
  llama_cloud/types/data_sink_component.py,sha256=uvuxLY3MPDpv_bkT0y-tHSZVPRSHCkDBDHVff-036Dg,749
97
- llama_cloud/types/data_sink_create.py,sha256=7hFoMZwd9YoP6pUjmXnzKsS1Ey5OeEQ-mIlNoh8tYAE,1288
118
+ llama_cloud/types/data_sink_create.py,sha256=dAaFPCwZ5oX0Fbf7ij62dzSaYnrhj3EHmnLnYnw2KgI,1360
98
119
  llama_cloud/types/data_sink_create_component.py,sha256=8QfNKSTJV_sQ0nJxlpfh0fBkMTSnQD1DTJR8ZMYaesI,755
99
120
  llama_cloud/types/data_sink_definition.py,sha256=5ve_pq02s8szc34-wWobMe6BAPj_c7e9n9FFsfDqEQ0,1561
100
- llama_cloud/types/data_source.py,sha256=Qo6BZI8W2yIR6NWN1JdjBPPNbQxeUHy57nWmCBhSJe4,1626
121
+ llama_cloud/types/data_source.py,sha256=QmoElMaQvnWbGJ69M2VZS8lX9nmYlHitVP8hwHoiY5c,1700
101
122
  llama_cloud/types/data_source_component.py,sha256=yfXHoeHaqUMum7fIs3tZB0pOFMhDbAq7oCJtnob0gWY,1077
102
- llama_cloud/types/data_source_create.py,sha256=XUPQYTi2mty888cIQAiilj-NQhOGNaIlwGITWPRYhD4,1507
123
+ llama_cloud/types/data_source_create.py,sha256=s0bAX_GUwiRdrL-PXS9ROrvq3xpmqbqzdMa6thqL2P4,1581
103
124
  llama_cloud/types/data_source_create_component.py,sha256=-P4FGv9Xg951n-77_bb-2_CF-33ZXcUkw52LPQNunBY,1083
104
125
  llama_cloud/types/data_source_create_custom_metadata_value.py,sha256=ejSsQNbszYQaUWFh9r9kQpHf88qbhuRv1SI9J_MOSC0,215
105
126
  llama_cloud/types/data_source_custom_metadata_value.py,sha256=pTZn5yjZYmuOhsLABFJOKZblZUkRqo1CqLAuP5tKji4,209
106
127
  llama_cloud/types/data_source_definition.py,sha256=HlSlTxzYcQJOSo_2OSroAE8vAr-otDvTNBSEkA54vL8,1575
128
+ llama_cloud/types/edit_suggestion.py,sha256=L4WImd8_BDXImZG-Cz84rYJndEWeQmcrd1dDez9zrmU,1144
107
129
  llama_cloud/types/element_segmentation_config.py,sha256=QOBk8YFrgK0I2m3caqV5bpYaGXbk0fMSjZ4hUPZXZDI,959
108
130
  llama_cloud/types/embedding_model_config.py,sha256=6-o0vsAX89eHQdCAG5sI317Aivr4Tvs6ycg9TqNgybo,1525
109
131
  llama_cloud/types/embedding_model_config_embedding_config.py,sha256=9rmfeiJYhBPmSJCXp-qxkOAd9WPwL5Hks7jIKd8XCPM,2901
@@ -111,42 +133,61 @@ llama_cloud/types/embedding_model_config_update.py,sha256=BiA1KbFT-TSvy5OEyChd0d
111
133
  llama_cloud/types/embedding_model_config_update_embedding_config.py,sha256=mrXFxzb9GRaH4UUnOe_05-uYUuiTgDDCRadAMbPmGgc,2991
112
134
  llama_cloud/types/eval_dataset.py,sha256=FIP4uHqUXg0LxGPaq-LmW2aTcEdQk-i5AYLbGqsQSV0,1310
113
135
  llama_cloud/types/eval_dataset_job_params.py,sha256=vcXLJWO581uigNvGAurPDgMeEFtQURWucLF5pemdeS0,1343
114
- llama_cloud/types/eval_dataset_job_record.py,sha256=nqTvrus89MEn0m3mYP6PxUWlnLDKfvvJtOL2V0km0v8,2148
136
+ llama_cloud/types/eval_dataset_job_record.py,sha256=lcX6iTJDngUsuvVeiqDgWDMieuIRJFRewKqiAGgwWAw,2185
115
137
  llama_cloud/types/eval_execution_params.py,sha256=ntVaJh5SMZMPL4QLUiihVjUlg2SKbrezvbMKGlrF66Q,1369
116
138
  llama_cloud/types/eval_execution_params_override.py,sha256=ihEFbMRYmFJ5mWmFW24JjV6D0qqeDM4p829mSxMGtOQ,1195
117
139
  llama_cloud/types/eval_metric.py,sha256=vhO_teMLiyzBdzKpOBW8Bm9qCw2h6m3unp2XotB7pDQ,499
118
140
  llama_cloud/types/eval_question.py,sha256=UG042gXLw1uIW9hQOffCzIoGHVSve8Wk9ZeYGzwhHDU,1432
119
141
  llama_cloud/types/eval_question_create.py,sha256=oOwxkE5gPj8RAwgr3uuTHfTvLSXmYkkxNHqsT7oUHjI,1031
120
142
  llama_cloud/types/eval_question_result.py,sha256=Y4RFXnA4YJTlzM6_NtLOi0rt6hRZoQbToiVJqm41ArY,2168
143
+ llama_cloud/types/extract_agent.py,sha256=T98IOueut4M52Qm7hqcUOcWFFDhZ-ye0OFdXgfFGtS4,1763
144
+ llama_cloud/types/extract_agent_data_schema_value.py,sha256=UaDQ2KjajLDccW7F4NKdfpefeTJrr1hl0c95WRETYkM,201
145
+ llama_cloud/types/extract_config.py,sha256=KFg8cG61KvVlPVwGxtRSgR5XC40V_ID5u97P3t62QuU,1344
146
+ llama_cloud/types/extract_job.py,sha256=rLe66eK1p4QUN8i_0ex2tN_6upZ3SArN34M_hW4YVr0,1257
147
+ llama_cloud/types/extract_job_create.py,sha256=Ut4rjqN0IRvLS2jyAT8_cDdvUOUptXjG0c2MGLpQvUM,1482
148
+ llama_cloud/types/extract_job_create_data_schema_override_value.py,sha256=qtUAZ22JIE7Xx3MJdRxchW6FHOxFIUXcJsx4XNrVtME,219
149
+ llama_cloud/types/extract_mode.py,sha256=aE0tcuviE_eXu0y-A8Mn5MChxOIzjm7EOqyhaPZ3LbA,472
150
+ llama_cloud/types/extract_resultset.py,sha256=lMLW-OO-heZej1pkYRE0FtZWo9O3mlD1at4-2tw-90s,1814
151
+ llama_cloud/types/extract_resultset_data.py,sha256=v9Ae4SxLsvYPE9crko4N16lBjsxuZpz1yrUOhnaM_VY,427
152
+ llama_cloud/types/extract_resultset_data_item_value.py,sha256=JwqgDIGW0irr8QWaSTIrl24FhGxTUDOXIbxoSdIjuxs,209
153
+ llama_cloud/types/extract_resultset_data_zero_value.py,sha256=-tqgtp3hwIr2NhuC28wVWqQDgFFGYPfRdzneMtNzoBU,209
154
+ llama_cloud/types/extract_resultset_extraction_metadata_value.py,sha256=LEFcxgBCY35Tw93RIU8aEcyJYcLuhPp5-_G5XP07-xw,219
121
155
  llama_cloud/types/extraction_job.py,sha256=Y8Vp8zmWEl3m9-hy0v2EIbwfm9c2b6oGTUWw3eip_II,1260
122
156
  llama_cloud/types/extraction_result.py,sha256=A-BMKdbkObQRcKr_wxB9FoEMGhZuEvYzdp_r7bFp_48,1562
123
157
  llama_cloud/types/extraction_result_data_value.py,sha256=YwtoAi0U511CVX4L91Nx0udAT4ejV6wn0AfJOyETt-o,199
124
158
  llama_cloud/types/extraction_schema.py,sha256=bVTuJavuRtFsP31AVDyK2k14GYePxfNflI7oncQiZEQ,1528
125
159
  llama_cloud/types/extraction_schema_data_schema_value.py,sha256=AYyfwqWIr6PrJsQKudzGYGmxC6yjUmBjxcUZpQyEc54,211
126
- llama_cloud/types/file.py,sha256=p-9C2FIrZU1u2jB9F1v05EI3S_X0rRp0YpYWf7yWFzQ,1561
160
+ llama_cloud/types/file.py,sha256=rQXitPRKOYw91nK5qOZ0vpOmIx_MCpRb0g78d9dQs6w,1822
161
+ llama_cloud/types/file_permission_info_value.py,sha256=RyQlNbhvIKS87Ywu7XUaw5jDToZX64M9Wqzu1U_q2Us,197
127
162
  llama_cloud/types/file_resource_info_value.py,sha256=g6T6ELeLK9jgcvX6r-EuAl_4JkwnyqdS0RRoabMReSU,195
128
- llama_cloud/types/filter_condition.py,sha256=in8L0rP6KO3kd8rRakDjrxBZTWZen6VWVojQnZELORc,520
129
- llama_cloud/types/filter_operator.py,sha256=DPS9ZziC7HYNHVtaTLqWLmur6sKSSybFFEUiTpVCOgk,2220
163
+ llama_cloud/types/filter_condition.py,sha256=YEc-NaZbMha4oZVSKerZ6-gNYriNOZmTHTRMKX-9Ju0,678
164
+ llama_cloud/types/filter_operator.py,sha256=tY_DWFVOoLrqDc-soJcSFvUL-MsltK6iLSK7IKK-TPs,2439
130
165
  llama_cloud/types/gemini_embedding.py,sha256=n9vuxFbXt_VNuaZvp7BlkFWmGMgehpJz_ICacIafdYw,1418
131
166
  llama_cloud/types/gemini_embedding_config.py,sha256=ycLaAkl9TQgUkvdbFyrz1cYXg1Wxmf0C-THNk4LWg1s,1142
132
167
  llama_cloud/types/http_validation_error.py,sha256=iOSKYv0dJGjyIq8DAeLVKNJY-GiM1b6yiXGpXrm4QS4,1058
133
168
  llama_cloud/types/hugging_face_inference_api_embedding.py,sha256=c-O87QJZHaBWl0RobjD4tMsmtJCeUOc_oTl6oHZHDYU,1887
134
169
  llama_cloud/types/hugging_face_inference_api_embedding_config.py,sha256=EFHhuPCxU0g3Jcc3k-8X-uH_OLCoRfWNbOCUpZ3Ygd4,1232
135
170
  llama_cloud/types/hugging_face_inference_api_embedding_token.py,sha256=A7-_YryBcsP4G5uRyJ9acao3XwX5-YC3NRndTeDAPj4,144
171
+ llama_cloud/types/image_block.py,sha256=Bccrsm1-B2hUzObP7Oy1H7IVnurixfTpL03i-yqfZp0,1112
136
172
  llama_cloud/types/ingestion_error_response.py,sha256=8u0cyT44dnpkNeUKemTvJMUqi_WyPcYQKP_DMTqaFPY,1259
137
- llama_cloud/types/input_message.py,sha256=H0vsGsIo_J71d3NnHGzs7WytjEhNPzhOEDY9e_9Y_w0,1329
173
+ llama_cloud/types/input_message.py,sha256=Ym6-tX6CMWKuHfxRtyM2y16kqSS3BzHged9rFRFkX0g,1346
138
174
  llama_cloud/types/interval_usage_and_plan.py,sha256=qRZs0MsbJ_X53YfgNujKnJjRYhMn2Bn6bjBUKKUZnZc,1161
139
- llama_cloud/types/job_name_mapping.py,sha256=scAbHrxvowCE3jHRZyYr2bBE5wvMMdBw7zpQ-lp5dY0,1433
140
- llama_cloud/types/llama_parse_parameters.py,sha256=xWqDwgJLBVvoebncdtufRaTyw7FT9kseC2UEz6GS2mY,3227
175
+ llama_cloud/types/job_name_mapping.py,sha256=2dQFQlVHoeSlkyEKSEJv0M3PzJf7hMvkuABj3vMY7ys,1617
176
+ llama_cloud/types/job_names.py,sha256=ZapQT__pLI14SagjGi8AsEwWY949hBoplQemMgb_Aoc,4098
177
+ llama_cloud/types/job_record.py,sha256=-tp6w7dyd5KZMMynxSrL5W5YoJSdqTRWolx_f0_Hbh0,2069
178
+ llama_cloud/types/job_record_with_usage_metrics.py,sha256=iNV2do5TB_0e3PoOz_DJyAaM6Cn9G8KG-dGPGgEs5SY,1198
179
+ llama_cloud/types/llama_index_core_base_llms_types_chat_message.py,sha256=NelHo-T-ebVMhRKsqE_xV8AJW4c7o6lS0uEQnPsmTwg,1365
180
+ llama_cloud/types/llama_index_core_base_llms_types_chat_message_blocks_item.py,sha256=tTglUqrSUaVc2Wsi4uIt5MU-80_oxZzTnhf8ziilVGY,874
181
+ llama_cloud/types/llama_parse_parameters.py,sha256=DWiZZZH5IgMgSbb7v5cJ8ANGSTtjJ5squMntzpiv55k,3929
141
182
  llama_cloud/types/llama_parse_supported_file_extensions.py,sha256=B_0N3f8Aq59W9FbsH50mGBUiyWTIXQjHFl739uAyaQw,11207
142
- llama_cloud/types/llm.py,sha256=v5a7Cq4oSUh3LYYIpECOpV0llDVP7XbFvdlxsIXnmhI,2197
143
- llama_cloud/types/llm_model_data.py,sha256=QgyFe03psw5Aon3w1LC6ovCa1o9MVNcaGcmpapw-4D0,1263
144
- llama_cloud/types/llm_parameters.py,sha256=fQTUCBFBezR1pF8-9cq3vy2CE0Rma-EsjGhUdiN_U8E,1279
183
+ llama_cloud/types/llm.py,sha256=7iIItVPjURp4u5xxJDAFIefUdhUKwIuA245WXilJPXE,2234
184
+ llama_cloud/types/llm_model_data.py,sha256=6rrycqGwlK3LZ2S-WtgmeomithdLhDCgwBBZQ5KLaso,1300
185
+ llama_cloud/types/llm_parameters.py,sha256=taefXZiK4IsuPHcWXxfEd36OefUqAJVuMG2e9vjnyUA,1337
145
186
  llama_cloud/types/local_eval.py,sha256=aJ8jRG0b5EL9cLjx281bzAzPw7Ar004Jfp6mBmyjuTA,1491
146
187
  llama_cloud/types/local_eval_results.py,sha256=YfK6AhfD0gr5apQBfrfzrTHDXvrk7ynAUUjNSKu9NVk,1380
147
188
  llama_cloud/types/local_eval_sets.py,sha256=XJSSriwRvkma889pPiBQrpRakKejKOX3tWPu1TGb1ug,1181
148
- llama_cloud/types/managed_ingestion_status.py,sha256=IW5WpBSofGlJfypFrl3mp4yx9Lq4eHFs-1IOl1R33dI,1128
149
- llama_cloud/types/managed_ingestion_status_response.py,sha256=36XBDaAyrqDeHRvinJSYcNcq3aPZ9zMe6aMz_hW2OIw,1326
189
+ llama_cloud/types/managed_ingestion_status.py,sha256=3KVlcurpEBOPAesBUS5pSYLoQVIyZUlr90Mmv-uALHE,1290
190
+ llama_cloud/types/managed_ingestion_status_response.py,sha256=rdNpjNbQswF-6JG1e-EU374TP6Pjlxl0p7HJyNmuxTI,1373
150
191
  llama_cloud/types/markdown_element_node_parser.py,sha256=NUqdU8BmyfSFK2rV6hCrvP6U1iB6aqZCVsvHWJQ49xU,1964
151
192
  llama_cloud/types/markdown_node_parser.py,sha256=1HGIKAbqU8DwCOCFcfbJZLRtfu1Vd4D-vybgY0wvh24,1690
152
193
  llama_cloud/types/message_annotation.py,sha256=n4F9w4LxwmGvgXDk6E8YPTMu_g0yEjZhZ_eNFXdS_bc,1017
@@ -160,71 +201,100 @@ llama_cloud/types/node_parser.py,sha256=rqZTQ_9GnCHOvSpXuAZoezxQCOgxHo-hmQv0s7pn
160
201
  llama_cloud/types/node_relationship.py,sha256=2e2PqWm0LOTiImvtsyiuaAPNIl0BItjSrQZTJv65GRA,1209
161
202
  llama_cloud/types/none_chunking_config.py,sha256=D062t314Vp-s4n9h8wNgsYfElI4PonPKmihvjEmaqdA,952
162
203
  llama_cloud/types/none_segmentation_config.py,sha256=j3jUA6E8uFtwDMEu4TFG3Q4ZGCGiuUfUW9AMO1NNqXU,956
163
- llama_cloud/types/object_type.py,sha256=oYzizJl4Z5IS5lyhG5UHEAQMmjN9ZYEp27nS7uJwLuE,699
204
+ llama_cloud/types/object_type.py,sha256=psXN-tHmJxXbaLDYfumDA5vrZcdv2PR429z6jze0SsM,821
164
205
  llama_cloud/types/open_ai_embedding.py,sha256=RQijkvKyzbISy92LnBSEpjmIU8p7kMpdc4sdx5-btrM,2042
165
206
  llama_cloud/types/open_ai_embedding_config.py,sha256=Mquc0JrtCo8lVYA2WW7q0ZikS3HRkiMtzDFu5XA-20o,1143
166
- llama_cloud/types/organization.py,sha256=WI37HYVLsqf8ljT5ZcWUBIex7br6ZSzHUMpqCIHdSNA,1223
207
+ llama_cloud/types/organization.py,sha256=p8mYRqSsGxw17AmdW8x8nP7P1UbdpYkwr51WTIjTVLw,1467
167
208
  llama_cloud/types/organization_create.py,sha256=hUXRwArIx_0D_lilpL7z-B0oJJ5yEX8Sbu2xqfH_9so,1086
168
209
  llama_cloud/types/page_screenshot_metadata.py,sha256=dXwWNDS7670xvIIuB1C_gLlsvAzQH4BRR3jLOojRvGs,1268
169
210
  llama_cloud/types/page_screenshot_node_with_score.py,sha256=EdqoXbmARCz1DV14E2saCPshIeII709uM4cLwxw_mkM,1232
170
211
  llama_cloud/types/page_segmentation_config.py,sha256=VH8uuxnubnJak1gSpS64OoMueHidhsDB-2eq2tVHbag,998
171
212
  llama_cloud/types/page_splitter_node_parser.py,sha256=rQgS1CDk18UKA0r9OPvjdtM570jzFArdLCTxYAtZny8,1424
213
+ llama_cloud/types/paginated_jobs_history_with_metrics.py,sha256=Bxy6N0x0FARJhgwNKKPkNpXx8YLRHvth23G14f5Fuk4,1136
172
214
  llama_cloud/types/paginated_list_pipeline_files_response.py,sha256=2TKR2oHSQRyLMqWz1qQBSIvz-ZJb8U_94367lwOJ2S4,1317
215
+ llama_cloud/types/paginated_report_response.py,sha256=o79QhQi9r0HZZrhvRlA6WGjxtyPuxN0xONhwXSwxtcs,1104
216
+ llama_cloud/types/parse_plan_level.py,sha256=GBkDS19qfHseBa17EXfuTPNT4GNv5alyPrWEvWji3GY,528
173
217
  llama_cloud/types/parser_languages.py,sha256=Ps3IlaSt6tyxEI657N3-vZL96r2puk8wsf31cWnO-SI,10840
174
218
  llama_cloud/types/parsing_history_item.py,sha256=_MVzf43t84PbmjOzsMLZ_NBoyiisigLWz-fr0ZxU63g,1183
175
219
  llama_cloud/types/parsing_job.py,sha256=9hoKN4h-t0fka4-fX-79VbvcK2EEZRk2bDDZvCjaYZo,1093
176
220
  llama_cloud/types/parsing_job_json_result.py,sha256=BA3_u-ChHpE5wm08WmOvgPUsMsClkTHTIHjePAk-wuI,1006
177
221
  llama_cloud/types/parsing_job_markdown_result.py,sha256=gPIUO0JwtKwvSHcRYEr995DNl7VN3EaaSaj4aPHCP4o,1077
222
+ llama_cloud/types/parsing_job_structured_result.py,sha256=w_Z4DOHjwUPmffjc4qJiGYbniWTpkjpVcD4irL1dDj0,1017
178
223
  llama_cloud/types/parsing_job_text_result.py,sha256=TP-7IRTWZLAZz7NYLkzi4PsGnaRJuPTt40p56Mk6Rhw,1065
179
224
  llama_cloud/types/parsing_usage.py,sha256=JLlozu-vIkcRKqWaOVJ9Z2TrY7peJRTzOpYjOThGKGQ,1012
180
225
  llama_cloud/types/partition_names.py,sha256=zZZn-sn59gwch2fa7fGMwFWUEuu5Dfen3ZqKtcPnBEM,1877
181
226
  llama_cloud/types/permission.py,sha256=LjhZdo0oLvk7ZVIF1d6Qja--AKH5Ri0naUhuJvZS6Ng,1345
182
227
  llama_cloud/types/pipeline.py,sha256=eVNfQjfQTArB3prPeDkfDK6PtfhhBxW7-_VhH9MzlsE,2789
183
228
  llama_cloud/types/pipeline_configuration_hashes.py,sha256=7_MbOcPWV6iyMflJeXoo9vLzD04E5WM7YxYp4ls0jQs,1169
184
- llama_cloud/types/pipeline_create.py,sha256=Vw4AM75GBw7djCtRy7trwkxItF2vr3YhbDXInA-0zgc,2505
229
+ llama_cloud/types/pipeline_create.py,sha256=a5LHgVE-h4s2m8En5EAbfMIXIpXqd0DLKKTaxX4HrAk,2654
185
230
  llama_cloud/types/pipeline_create_embedding_config.py,sha256=PQqmVBFUyZXYKKBmVQF2zPsGp1L6rje6g3RtXEcdfc8,2811
186
231
  llama_cloud/types/pipeline_create_transform_config.py,sha256=HP6tzLsw_pomK1Ye2PYCS_XDZK_TMgg22mz17_zYKFg,303
187
- llama_cloud/types/pipeline_data_source.py,sha256=zDSUzBCRCUdpbfMRtprGw1TKy4v9_rj789Lz31QMaTk,2067
232
+ llama_cloud/types/pipeline_data_source.py,sha256=f2ae8nrMm5z8nlEURsBpDgxQkQclBnj-pEOjExP4ocM,2141
188
233
  llama_cloud/types/pipeline_data_source_component.py,sha256=c_R2aBl7XXsfJ_ZuK_-PXzzL2nDI4jrbJ0BStlzp87Y,1085
189
234
  llama_cloud/types/pipeline_data_source_create.py,sha256=wMsymqB-YGyf3jdQr-N5ODVG6v0w68EMxGBNdQXeJe0,1178
190
235
  llama_cloud/types/pipeline_data_source_custom_metadata_value.py,sha256=8n3r60sxMx4_udW0yzJZxzyWeK6L3cc2-jLGZFW4EDs,217
191
236
  llama_cloud/types/pipeline_deployment.py,sha256=eVBrz032aPb2cqtIIVYT5MTHQvBNm89XazoNrRWVugo,1356
192
237
  llama_cloud/types/pipeline_embedding_config.py,sha256=mpeJ6bOMvRUO12VTYbcHmgJ3ssHNKAUQMrF06j2t7Lc,2721
193
- llama_cloud/types/pipeline_file.py,sha256=ZRNnEKCLLCjHW8SJ2usCZ1un0-Cnu8KDc_0owMpyc8M,2190
238
+ llama_cloud/types/pipeline_file.py,sha256=QZgaJfkuM6xMR_J4zUFmefTalrGfW8beyiXJxvsCP84,2419
194
239
  llama_cloud/types/pipeline_file_config_hash_value.py,sha256=4lvLnDpzNAHdiMkGJTTNDTu3p3H7Nxw5MR1Mzte7-_M,201
195
240
  llama_cloud/types/pipeline_file_create.py,sha256=yoMIzWED0ktKerE48kgzInBa3d0aNGO5JjTtDTDAn4A,1310
196
241
  llama_cloud/types/pipeline_file_create_custom_metadata_value.py,sha256=olVj5yhQFx1QqWO1Wv9d6AtL-YyYO9_OYtOfcD2ZeGY,217
197
242
  llama_cloud/types/pipeline_file_custom_metadata_value.py,sha256=ClFphYDNlHxeyLF5BWxIUhs2rooS0Xtqxr_Ae8dn8zE,211
243
+ llama_cloud/types/pipeline_file_permission_info_value.py,sha256=a9yfg5n9po0-4ljGx8DtJoeLBwWFpaEk9ZQUN195BXg,211
198
244
  llama_cloud/types/pipeline_file_resource_info_value.py,sha256=s3uFGQNwlUEr-X4TJZkW_kMBvX3h1sXRJoYlJRvHSDc,209
199
245
  llama_cloud/types/pipeline_transform_config.py,sha256=zMr-ePLKGjbaScxbAHaSwYBL7rrNibVlnn0cbgElDfU,824
200
246
  llama_cloud/types/pipeline_type.py,sha256=tTqrhxHP5xd7W2dQGD0e5FOv886nwJssyaVlXpWrtRo,551
201
247
  llama_cloud/types/plan.py,sha256=rkyET7zaeWxAVHgceVsadTW3w3ZjnSsoPeoSbGM1GIE,1486
202
- llama_cloud/types/playground_session.py,sha256=vDebFzSvw0TyhOFMa5VFY8S7rZvedl6GNVmOFJd5kZo,1816
248
+ llama_cloud/types/playground_session.py,sha256=F8u2KZL2YaOrsT-o1n4zbhyPxSsoduc3ZCzQB8AecFA,1858
203
249
  llama_cloud/types/pooling.py,sha256=5Fr6c8rx9SDWwWzEvD78suob2d79ktodUtLUAUHMbP8,651
204
- llama_cloud/types/preset_retrieval_params.py,sha256=1VQbPNgxpefJL9KayIqk1uFf3fvrONBjPDviz0rDWA4,1730
250
+ llama_cloud/types/preset_retrieval_params.py,sha256=gEkjXr4202ebLtPL6pYX5hj5NSwANpAdhZbEHCbE2RA,1782
205
251
  llama_cloud/types/presigned_url.py,sha256=-DOQo7XKvUsl-9Gz7fX6VOHdQLzGH2XRau24ASvG92E,1275
252
+ llama_cloud/types/progress_event.py,sha256=Bk73A8geTVaq0ze5pMnbkAmx7FSOHQIixYCpCas_dcY,1684
253
+ llama_cloud/types/progress_event_status.py,sha256=yb4RAXwOKU6Bi7iyYy-3lwhF6_mLz0ZFyGjxIdaByoE,893
206
254
  llama_cloud/types/project.py,sha256=4NNh_ZAjEkoWl5st6b1jsPVf_SYKtUTB6rS1701G4IQ,1441
207
255
  llama_cloud/types/project_create.py,sha256=GxGmsXGJM-cHrvPFLktEkj9JtNsSdFae7-HPZFB4er0,1014
208
256
  llama_cloud/types/prompt_mixin_prompts.py,sha256=_ipiIFWmWSuaJ5VFI5rXa_C7lHaIL3Yv5izh7__xTxI,1323
209
- llama_cloud/types/prompt_spec.py,sha256=lpq9m4lK47FUfbFEzUDbLoZtSGX4EDthJ4u5Xd3SWKQ,1368
257
+ llama_cloud/types/prompt_spec.py,sha256=tPJTIzN9pYmiZD-HcPHFuhh4n1ak9FI5f7xFNV31djQ,1410
210
258
  llama_cloud/types/pydantic_program_mode.py,sha256=QfvpqR7TqyNuOxo78Sr58VOu7KDSBrHJM4XXBB0F5z0,1202
211
- llama_cloud/types/related_node_info.py,sha256=Ikm76x9hXs20uV_n_2MIG6bWh_ugPoehjyA-ZrR6J6o,1174
259
+ llama_cloud/types/related_node_info.py,sha256=frQg_RqrSBc62ooJ4QOF5QRKymHcNot5WVFAB_g1sMg,1216
260
+ llama_cloud/types/related_node_info_node_type.py,sha256=lH95d8G-EnKCllV_igJsBfYt49y162PoNxWtrCo_Kgk,173
261
+ llama_cloud/types/report.py,sha256=9M_WkIxi5ilmtXrLKo5XxWzJ_qV8FFf5j8bAlQRmaks,1155
262
+ llama_cloud/types/report_block.py,sha256=h11qkKbd5fdNWILjLTiz4alQCSqITTq9DlGya8OuTVU,1260
263
+ llama_cloud/types/report_block_dependency.py,sha256=TGtLpcJG2xwTKr3GU8Err53T0BR_zNTiT-2JILvPbSg,785
264
+ llama_cloud/types/report_create_response.py,sha256=tmnVkyAMVf0HNQy186DFVV1oZQzYGY9wxNk84cwQLKA,1020
265
+ llama_cloud/types/report_event_item.py,sha256=_-0wgI96Ama2qKqUODTmI_fEcrnW5eAAjL1AoFEr4cQ,1451
266
+ llama_cloud/types/report_event_item_event_data.py,sha256=_v_2wZVGuNgXpitYNcKlA9hJVMLECOKf8A-pUuLron8,1171
267
+ llama_cloud/types/report_event_type.py,sha256=cPqKDVI8STX5BLndiGEovV4baa2it5fbfvcbiKyxAY8,1230
268
+ llama_cloud/types/report_metadata.py,sha256=dJ6JjJYKr7sydi4Dj4SaNR94xaftpaVpBHTh6DfaaFs,1372
269
+ llama_cloud/types/report_plan.py,sha256=UvtYQaSNUTWbmC-rP0c57rbGpDRPUQgou0c2r96FVUo,1332
270
+ llama_cloud/types/report_plan_block.py,sha256=YlZ4fp4J3rduNKUknm0LfpHES_pgtQGFA9ZzErHoR40,1320
271
+ llama_cloud/types/report_query.py,sha256=IwZNM37fgwD2CrHkQ3LtdKwUCyL2r4SrZc0xwfaTa_I,1216
272
+ llama_cloud/types/report_response.py,sha256=20jVA79m3DBNHp3W6zbmD_yq9-64pNh4lk427bfCnqI,1252
273
+ llama_cloud/types/report_state.py,sha256=gjexexoT8GaCamGKvfwivKrfRtvdhEtwSLkAt-j9EMw,1127
274
+ llama_cloud/types/report_state_event.py,sha256=_wf-Cl_skJdrag-7h11tz-HIy1jed_GIG3c-ksuAjT4,1270
275
+ llama_cloud/types/report_update_event.py,sha256=uLRC79U3pvZ5-kY6pOseQyX1MNH-0m80GUtzpjd6mkI,1270
212
276
  llama_cloud/types/retrieval_mode.py,sha256=wV9q3OdHTuyDWbJCGdxq9Hw6U95WFlJcaMq6KWSTzyw,910
213
- llama_cloud/types/retrieve_results.py,sha256=rbvPk-WylPzUFLgKUGXtmqrf7DL_hHd37UFznvlZ814,1928
277
+ llama_cloud/types/retrieve_results.py,sha256=TBUXK5fT3m9oIzktRyDieXNY_1GHWene23flHX9aH_Y,1945
278
+ llama_cloud/types/retriever.py,sha256=ZItPsorL8x1XjtJT49ZodaMqU8h2GfwlB4U4cgnfZkM,1626
279
+ llama_cloud/types/retriever_create.py,sha256=WyUR9DRzu3Q9tzKEeXCdQuzCY6WKi9ADJkZea9rqvxU,1286
280
+ llama_cloud/types/retriever_pipeline.py,sha256=F1pZDxg8JdQXRHE6ciFezd7a-Wv5bHplPcGDED-J4b0,1330
214
281
  llama_cloud/types/role.py,sha256=SCi2TyFbc68RJuNB-OdcP8ut03Uv5zPZk84QMmf17w8,1384
215
282
  llama_cloud/types/semantic_chunking_config.py,sha256=dFDniTVWpRc7UcmVFvljUoyL5Ztd-l-YrHII7U-yM-k,1053
216
283
  llama_cloud/types/sentence_chunking_config.py,sha256=NA9xidK5ICxJPkEMQZWNcsV0Hw9Co_bzRWeYe4uSh9I,1116
217
284
  llama_cloud/types/sentence_splitter.py,sha256=GbC3KE20Nd85uzO4bqJttjqJhQ_1co2gKnSQxzfOAiM,2140
218
- llama_cloud/types/status_enum.py,sha256=2kQLDa8PdvK45yJDSV2i53rBA3wCR1PJj-IdK0Dcr2E,868
285
+ llama_cloud/types/status_enum.py,sha256=cUBIlys89E8PUzmVqqawu7qTDF0aRqBwiijOmRDPvx0,1018
219
286
  llama_cloud/types/supported_llm_model.py,sha256=0v-g01LyZB7TeN0zwAeSJejRoT95SVaXOJhNz7boJwM,1461
220
- llama_cloud/types/supported_llm_model_names.py,sha256=lmIA6ilGHc8rkU5B1j3irbwZW3_VCZyZWZRY2RXM9Dc,1227
221
- llama_cloud/types/text_node.py,sha256=9IVlMJ-HvvJJ4j-Lsy5fd0Hl6m5ut99juffHf4A1K9E,2670
287
+ llama_cloud/types/supported_llm_model_names.py,sha256=UpOGVGss6uxm5gpQvQMizUDYtnmY6FuKeKRUoQ5YeJs,1429
288
+ llama_cloud/types/text_block.py,sha256=X154sQkSyposXuRcEWNp_tWcDQ-AI6q_-MfJUN5exP8,958
289
+ llama_cloud/types/text_node.py,sha256=Tq3QmuKC5cIHvC9wAtvhsXl1g2sACs2yJwQ0Uko8GSU,2846
222
290
  llama_cloud/types/text_node_relationships_value.py,sha256=qmXURTk1Xg7ZDzRSSV1uDEel0AXRLohND5ioezibHY0,217
223
291
  llama_cloud/types/text_node_with_score.py,sha256=k-KYWO_mgJBvO6xUfOD5W6v1Ku9E586_HsvDoQbLfuQ,1229
224
292
  llama_cloud/types/token_chunking_config.py,sha256=XNvnTsNd--YOMQ_Ad8hoqhYgQftqkBHKVn6i7nJnMqs,1067
225
293
  llama_cloud/types/token_text_splitter.py,sha256=iTT3x9yO021v757B2r-0Z-WFQiIESLqEJUCmUUwPQ_o,1899
226
294
  llama_cloud/types/transformation_category_names.py,sha256=Wb7NBB0f-tEtfEZQis-iKy71SUKmmHFcXf6XLn6g0XU,545
227
295
  llama_cloud/types/usage.py,sha256=HK8l0FNkyphy4ibqL5Kmj5yYSTzLo8-GU7Yeg9MDLEg,1284
296
+ llama_cloud/types/usage_metric_response.py,sha256=ukvtNZLeLacv-5F0-GQ5wTBZOPUPEjAeurgYPc4s7nA,1047
297
+ llama_cloud/types/user_job_record.py,sha256=mJHdokJsemXJOwM2l7fsW3X0SlwSNcy7yHbcXZHh3I4,1098
228
298
  llama_cloud/types/user_organization.py,sha256=Ydel7grMnKiPMWJmSWhCFCm3v_n286Gk36ANtDLNLd4,1770
229
299
  llama_cloud/types/user_organization_create.py,sha256=Zj57s9xuYVnLW2p8i4j2QORL-G1y7Ab3avXE1baERQY,1189
230
300
  llama_cloud/types/user_organization_delete.py,sha256=IDYLKfFAXfcJfkEpA0ARbaA0JDcEBe7fTLv833DZXHs,1104
@@ -234,7 +304,7 @@ llama_cloud/types/validation_error_loc_item.py,sha256=LAtjCHIllWRBFXvAZ5QZpp7CPX
234
304
  llama_cloud/types/vertex_ai_embedding_config.py,sha256=DvQk2xMJFmo54MEXTzoM4KSADyhGm_ygmFyx6wIcQdw,1159
235
305
  llama_cloud/types/vertex_embedding_mode.py,sha256=yY23FjuWU_DkXjBb3JoKV4SCMqel2BaIMltDqGnIowU,1217
236
306
  llama_cloud/types/vertex_text_embedding.py,sha256=-C4fNCYfFl36ATdBMGFVPpiHIKxjk0KB1ERA2Ec20aU,1932
237
- llama_cloud-0.1.5.dist-info/LICENSE,sha256=_iNqtPcw1Ue7dZKwOwgPtbegMUkWVy15hC7bffAdNmY,1067
238
- llama_cloud-0.1.5.dist-info/METADATA,sha256=LUbLwhglZei6TLPO0yJJUmAFa-cZNI6193iqy5eoBA8,763
239
- llama_cloud-0.1.5.dist-info/WHEEL,sha256=d2fvjOD7sXsVzChCqf0Ty0JbHKBaLYwDbGQDwQTnJ50,88
240
- llama_cloud-0.1.5.dist-info/RECORD,,
307
+ llama_cloud-0.1.7a1.dist-info/LICENSE,sha256=_iNqtPcw1Ue7dZKwOwgPtbegMUkWVy15hC7bffAdNmY,1067
308
+ llama_cloud-0.1.7a1.dist-info/METADATA,sha256=yUaiFJe2cFLDkXPChBrj6XdI72ErwURF3Wsxj1h39zw,862
309
+ llama_cloud-0.1.7a1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
310
+ llama_cloud-0.1.7a1.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 1.7.0
2
+ Generator: poetry-core 1.9.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any