llama-cloud 0.0.17__py3-none-any.whl → 0.1.1__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 (136) hide show
  1. llama_cloud/__init__.py +8 -36
  2. llama_cloud/client.py +0 -3
  3. llama_cloud/resources/__init__.py +2 -10
  4. llama_cloud/resources/data_sinks/__init__.py +2 -2
  5. llama_cloud/resources/data_sinks/client.py +8 -8
  6. llama_cloud/resources/data_sinks/types/__init__.py +1 -2
  7. llama_cloud/resources/data_sinks/types/data_sink_update_component.py +15 -2
  8. llama_cloud/resources/data_sources/__init__.py +2 -2
  9. llama_cloud/resources/data_sources/client.py +6 -6
  10. llama_cloud/resources/data_sources/types/__init__.py +1 -2
  11. llama_cloud/resources/data_sources/types/data_source_update_component.py +23 -2
  12. llama_cloud/resources/extraction/client.py +14 -14
  13. llama_cloud/resources/files/client.py +10 -10
  14. llama_cloud/resources/organizations/client.py +2 -2
  15. llama_cloud/resources/parsing/client.py +100 -60
  16. llama_cloud/resources/pipelines/__init__.py +0 -4
  17. llama_cloud/resources/pipelines/client.py +50 -340
  18. llama_cloud/resources/pipelines/types/__init__.py +1 -7
  19. llama_cloud/resources/pipelines/types/pipeline_update_embedding_config.py +15 -15
  20. llama_cloud/resources/pipelines/types/pipeline_update_transform_config.py +1 -24
  21. llama_cloud/types/__init__.py +9 -29
  22. llama_cloud/types/azure_open_ai_embedding.py +7 -39
  23. llama_cloud/types/base_prompt_template.py +3 -14
  24. llama_cloud/types/bedrock_embedding.py +7 -20
  25. llama_cloud/types/box_auth_mechanism.py +0 -4
  26. llama_cloud/types/character_splitter.py +3 -4
  27. llama_cloud/types/chat_data.py +0 -5
  28. llama_cloud/types/chat_message.py +1 -6
  29. llama_cloud/types/cloud_az_storage_blob_data_source.py +7 -18
  30. llama_cloud/types/cloud_box_data_source.py +6 -16
  31. llama_cloud/types/cloud_confluence_data_source.py +6 -10
  32. llama_cloud/types/cloud_document.py +1 -3
  33. llama_cloud/types/cloud_document_create.py +1 -3
  34. llama_cloud/types/cloud_google_drive_data_source.py +0 -4
  35. llama_cloud/types/cloud_jira_data_source.py +4 -6
  36. llama_cloud/types/cloud_notion_page_data_source.py +2 -6
  37. llama_cloud/types/cloud_one_drive_data_source.py +2 -6
  38. llama_cloud/types/cloud_pinecone_vector_store.py +1 -1
  39. llama_cloud/types/cloud_postgres_vector_store.py +0 -4
  40. llama_cloud/types/cloud_s_3_data_source.py +4 -12
  41. llama_cloud/types/cloud_sharepoint_data_source.py +5 -9
  42. llama_cloud/types/cloud_slack_data_source.py +6 -10
  43. llama_cloud/types/code_splitter.py +2 -1
  44. llama_cloud/types/cohere_embedding.py +6 -15
  45. llama_cloud/types/configurable_data_sink_names.py +0 -12
  46. llama_cloud/types/configurable_data_source_names.py +0 -4
  47. llama_cloud/types/configurable_transformation_names.py +0 -32
  48. llama_cloud/types/configured_transformation_item_component.py +15 -2
  49. llama_cloud/types/data_sink.py +2 -2
  50. llama_cloud/types/data_sink_component.py +15 -2
  51. llama_cloud/types/data_sink_create_component.py +15 -2
  52. llama_cloud/types/data_source.py +3 -5
  53. llama_cloud/types/data_source_component.py +23 -2
  54. llama_cloud/types/data_source_create.py +1 -3
  55. llama_cloud/types/data_source_create_component.py +23 -2
  56. llama_cloud/types/eval_dataset.py +2 -2
  57. llama_cloud/types/eval_dataset_job_record.py +7 -13
  58. llama_cloud/types/eval_execution_params_override.py +2 -6
  59. llama_cloud/types/eval_metric.py +17 -0
  60. llama_cloud/types/eval_question.py +2 -6
  61. llama_cloud/types/extraction_result.py +5 -3
  62. llama_cloud/types/extraction_schema.py +3 -5
  63. llama_cloud/types/file.py +7 -11
  64. llama_cloud/types/gemini_embedding.py +7 -22
  65. llama_cloud/types/hugging_face_inference_api_embedding.py +9 -34
  66. llama_cloud/types/input_message.py +2 -4
  67. llama_cloud/types/llama_parse_parameters.py +5 -0
  68. llama_cloud/types/llama_parse_supported_file_extensions.py +0 -4
  69. llama_cloud/types/llm.py +9 -8
  70. llama_cloud/types/llm_parameters.py +2 -7
  71. llama_cloud/types/local_eval.py +8 -10
  72. llama_cloud/types/local_eval_results.py +1 -1
  73. llama_cloud/types/managed_ingestion_status_response.py +3 -5
  74. llama_cloud/types/markdown_element_node_parser.py +4 -5
  75. llama_cloud/types/markdown_node_parser.py +2 -1
  76. llama_cloud/types/message_annotation.py +1 -6
  77. llama_cloud/types/metric_result.py +3 -3
  78. llama_cloud/types/node_parser.py +2 -1
  79. llama_cloud/types/node_relationship.py +44 -0
  80. llama_cloud/types/object_type.py +0 -4
  81. llama_cloud/types/open_ai_embedding.py +7 -36
  82. llama_cloud/types/organization.py +2 -2
  83. llama_cloud/types/page_splitter_node_parser.py +3 -2
  84. llama_cloud/types/parsing_job_json_result.py +2 -2
  85. llama_cloud/types/parsing_job_markdown_result.py +1 -1
  86. llama_cloud/types/parsing_job_text_result.py +1 -1
  87. llama_cloud/types/partition_names.py +45 -0
  88. llama_cloud/types/pipeline.py +7 -17
  89. llama_cloud/types/pipeline_configuration_hashes.py +3 -3
  90. llama_cloud/types/pipeline_create.py +6 -18
  91. llama_cloud/types/pipeline_create_embedding_config.py +15 -15
  92. llama_cloud/types/pipeline_create_transform_config.py +1 -24
  93. llama_cloud/types/pipeline_data_source.py +5 -11
  94. llama_cloud/types/pipeline_data_source_component.py +23 -2
  95. llama_cloud/types/pipeline_data_source_create.py +1 -3
  96. llama_cloud/types/pipeline_deployment.py +4 -8
  97. llama_cloud/types/pipeline_embedding_config.py +15 -15
  98. llama_cloud/types/pipeline_file.py +10 -18
  99. llama_cloud/types/pipeline_file_create.py +1 -3
  100. llama_cloud/types/playground_session.py +2 -2
  101. llama_cloud/types/preset_retrieval_params.py +8 -11
  102. llama_cloud/types/presigned_url.py +1 -3
  103. llama_cloud/types/project.py +2 -2
  104. llama_cloud/types/prompt_mixin_prompts.py +1 -1
  105. llama_cloud/types/prompt_spec.py +2 -4
  106. llama_cloud/types/related_node_info.py +0 -4
  107. llama_cloud/types/retrieval_mode.py +0 -4
  108. llama_cloud/types/sentence_splitter.py +3 -4
  109. llama_cloud/types/supported_llm_model_names.py +0 -4
  110. llama_cloud/types/text_node.py +3 -9
  111. llama_cloud/types/token_text_splitter.py +2 -1
  112. llama_cloud/types/transformation_category_names.py +0 -4
  113. llama_cloud/types/user_organization.py +5 -9
  114. llama_cloud/types/user_organization_create.py +2 -2
  115. llama_cloud/types/user_organization_delete.py +2 -2
  116. llama_cloud/types/vertex_ai_embedding_config.py +2 -2
  117. llama_cloud/types/{extend_vertex_text_embedding.py → vertex_text_embedding.py} +10 -23
  118. {llama_cloud-0.0.17.dist-info → llama_cloud-0.1.1.dist-info}/METADATA +1 -1
  119. llama_cloud-0.1.1.dist-info/RECORD +224 -0
  120. llama_cloud/resources/auth/__init__.py +0 -2
  121. llama_cloud/resources/auth/client.py +0 -124
  122. llama_cloud/resources/data_sinks/types/data_sink_update_component_one.py +0 -23
  123. llama_cloud/resources/data_sources/types/data_source_update_component_one.py +0 -27
  124. llama_cloud/types/cloud_chroma_vector_store.py +0 -43
  125. llama_cloud/types/cloud_weaviate_vector_store.py +0 -41
  126. llama_cloud/types/configured_transformation_item_component_one.py +0 -35
  127. llama_cloud/types/custom_claims.py +0 -58
  128. llama_cloud/types/data_sink_component_one.py +0 -23
  129. llama_cloud/types/data_sink_create_component_one.py +0 -23
  130. llama_cloud/types/data_source_component_one.py +0 -27
  131. llama_cloud/types/data_source_create_component_one.py +0 -27
  132. llama_cloud/types/pipeline_data_source_component_one.py +0 -27
  133. llama_cloud/types/user.py +0 -35
  134. llama_cloud-0.0.17.dist-info/RECORD +0 -235
  135. {llama_cloud-0.0.17.dist-info → llama_cloud-0.1.1.dist-info}/LICENSE +0 -0
  136. {llama_cloud-0.0.17.dist-info → llama_cloud-0.1.1.dist-info}/WHEEL +0 -0
@@ -15,33 +15,20 @@ except ImportError:
15
15
  import pydantic # type: ignore
16
16
 
17
17
 
18
- class ExtendVertexTextEmbedding(pydantic.BaseModel):
19
- """
20
- Base class for embeddings.
21
- """
22
-
23
- model_name: typing.Optional[str] = pydantic.Field(description="The name of the embedding model.")
18
+ class VertexTextEmbedding(pydantic.BaseModel):
19
+ model_name: typing.Optional[str] = pydantic.Field(description="The modelId of the VertexAI model to use.")
24
20
  embed_batch_size: typing.Optional[int] = pydantic.Field(description="The batch size for embedding calls.")
25
- callback_manager: typing.Optional[typing.Dict[str, typing.Any]]
26
- num_workers: typing.Optional[int] = pydantic.Field(
27
- description="The number of workers to use for async embedding calls."
28
- )
29
- embed_mode: VertexEmbeddingMode = pydantic.Field(description="The embedding mode to use.")
21
+ num_workers: typing.Optional[int]
22
+ location: str = pydantic.Field(description="The default location to use when making API calls.")
23
+ project: str = pydantic.Field(description="The default GCP project to use when making Vertex API calls.")
24
+ embed_mode: typing.Optional[VertexEmbeddingMode] = pydantic.Field(description="The embedding mode to use.")
30
25
  additional_kwargs: typing.Optional[typing.Dict[str, typing.Any]] = pydantic.Field(
31
26
  description="Additional kwargs for the Vertex."
32
27
  )
33
- client_email: typing.Optional[str] = pydantic.Field(
34
- description="The client email to use when making Vertex API calls."
35
- )
36
- token_uri: typing.Optional[str] = pydantic.Field(description="The token uri to use when making Vertex API calls.")
37
- private_key_id: typing.Optional[str] = pydantic.Field(
38
- description="The private key id to use when making Vertex API calls."
39
- )
40
- private_key: typing.Optional[str] = pydantic.Field(
41
- description="The private key to use when making Vertex API calls."
42
- )
43
- project: str = pydantic.Field(description="The default GCP project to use when making Vertex API calls.")
44
- location: str = pydantic.Field(description="The default location to use when making API calls.")
28
+ client_email: typing.Optional[str]
29
+ token_uri: typing.Optional[str]
30
+ private_key_id: typing.Optional[str]
31
+ private_key: typing.Optional[str]
45
32
  class_name: typing.Optional[str]
46
33
 
47
34
  def json(self, **kwargs: typing.Any) -> str:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: llama-cloud
3
- Version: 0.0.17
3
+ Version: 0.1.1
4
4
  Summary:
5
5
  Author: Logan Markewich
6
6
  Author-email: logan@runllama.ai
@@ -0,0 +1,224 @@
1
+ llama_cloud/__init__.py,sha256=KlJJ33jmA3Tq3FxZu1a04nSK_NeydK9qsu21-YYXL-c,13781
2
+ llama_cloud/client.py,sha256=bhZPiYd1TQSn3PRgHZ66MgMnBneG4Skc9g6UsT0wQnE,4299
3
+ llama_cloud/core/__init__.py,sha256=QJS3CJ2TYP2E1Tge0CS6Z7r8LTNzJHQVX1hD3558eP0,519
4
+ llama_cloud/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
5
+ llama_cloud/core/client_wrapper.py,sha256=xmj0jCdQ0ySzbSqHUWOkpRRy069y74I_HuXkWltcsVM,1507
6
+ llama_cloud/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
7
+ llama_cloud/core/jsonable_encoder.py,sha256=OewL6HcVqdSMCYDWwN0tsh7BZasBeOJZytrAxkH977k,3891
8
+ llama_cloud/core/remove_none_from_dict.py,sha256=8m91FC3YuVem0Gm9_sXhJ2tGvP33owJJdrqCLEdowGw,330
9
+ llama_cloud/environment.py,sha256=q4q-uY5WgcSlzfHwEANOqFQPu0lstqvMnVOsSfifMKo,168
10
+ llama_cloud/errors/__init__.py,sha256=pbbVUFtB9LCocA1RMWMMF_RKjsy5YkOKX5BAuE49w6g,170
11
+ llama_cloud/errors/unprocessable_entity_error.py,sha256=FvR7XPlV3Xx5nu8HNlmLhBRdk4so_gCHjYT5PyZe6sM,313
12
+ llama_cloud/resources/__init__.py,sha256=kAoOhKnSzhvnTDvehUjRUDYi3MS0FfFdyt3qKodVmwc,1962
13
+ llama_cloud/resources/component_definitions/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
14
+ llama_cloud/resources/component_definitions/client.py,sha256=YYfoXNa1qim2OdD5y4N5mvoBZKtrCuXS560mtqH_-1c,7569
15
+ llama_cloud/resources/data_sinks/__init__.py,sha256=ZHUjn3HbKhq_7QS1q74r2m5RGKF5lxcvF2P6pGvpcis,147
16
+ llama_cloud/resources/data_sinks/client.py,sha256=5IrtmBAugPEnHwRA3kpEXZi4Vf-1xjipWoyaaoFLhcQ,20389
17
+ llama_cloud/resources/data_sinks/types/__init__.py,sha256=M1aTcufJwiEZo9B0KmYj9PfkSd6I1ooFt9tpIRGwgg8,168
18
+ llama_cloud/resources/data_sinks/types/data_sink_update_component.py,sha256=EWbsPt3k_w_vySf01iiFanyN7UVNzSOM3weHzx-Y_rk,809
19
+ llama_cloud/resources/data_sources/__init__.py,sha256=McURkcNBGHXH1hmRDRmZI1dRzJrekCTHZsgv03r2oZI,227
20
+ llama_cloud/resources/data_sources/client.py,sha256=kBU8-LhYVXI1OzlTbHgw_mOrr-WQDC7OTyVOf90s7f0,21771
21
+ llama_cloud/resources/data_sources/types/__init__.py,sha256=Cd5xEECTzXqQSfJALfJPSjudlSLeb3RENeJVi8vwPbM,303
22
+ llama_cloud/resources/data_sources/types/data_source_update_component.py,sha256=u9sYcs3A4ZDzKjWCH3W9xIXCcLkZkVZxwoFOhEluqJU,1173
23
+ llama_cloud/resources/data_sources/types/data_source_update_custom_metadata_value.py,sha256=3aFC-p8MSxjhOu2nFtqk0pixj6RqNqcFnbOYngUdZUk,215
24
+ llama_cloud/resources/evals/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
25
+ llama_cloud/resources/evals/client.py,sha256=JyPHP9MsJ-15XHUVu-UjCcINo2IDPr2OageAqLBGlmw,27578
26
+ llama_cloud/resources/extraction/__init__.py,sha256=trseRsayeGiyGThI4s_Folw5AHmdTSEP3KPrlvNhfVw,255
27
+ llama_cloud/resources/extraction/client.py,sha256=i-oud3LOZgkfzQ8JcuKaSnLNwpWFL8y6xP7X4bnq8Ok,30764
28
+ llama_cloud/resources/extraction/types/__init__.py,sha256=ePJKSJ6hGIsPnfpe0Sp5w4mBZgnZes4cdtZ8Gfw81Gc,347
29
+ llama_cloud/resources/extraction/types/extraction_schema_create_data_schema_value.py,sha256=igTdUjMeB-PI5xKrloRKHY-EvL6_V8OLshABu6Dyx4A,217
30
+ llama_cloud/resources/extraction/types/extraction_schema_update_data_schema_value.py,sha256=z_4tkLkWnHnd3Xa9uUctk9hG9Mo7GKU4dK4s2pm8qow,217
31
+ llama_cloud/resources/files/__init__.py,sha256=aZpyTj6KpZvA5XVwmuo1sIlRs7ba98btxVBZ6j5vIsI,155
32
+ llama_cloud/resources/files/client.py,sha256=Tmi3E1lnAYT2BwYeCH9Ch7W8xqqqPdHMtwikms-F13g,28099
33
+ llama_cloud/resources/files/types/__init__.py,sha256=ZWnnYWuDYZSfUJc7Jv3HyovzijdB--DTK4YB-uPcDsA,181
34
+ llama_cloud/resources/files/types/file_create_resource_info_value.py,sha256=R7Y-CJf7fnbvIqE3xOI5XOrmPwLbVJLC7zpxMu8Zopk,201
35
+ llama_cloud/resources/organizations/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
36
+ llama_cloud/resources/organizations/client.py,sha256=P2u7AhSDXSpHOHe-tnyWqJAcKLLfLNxcc4-mfUqr7zs,34109
37
+ llama_cloud/resources/parsing/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
38
+ llama_cloud/resources/parsing/client.py,sha256=W5lpAvLdtJNgCyTu9jZD_nxbDE9dSLuid9BoA3GxYkY,43128
39
+ llama_cloud/resources/pipelines/__init__.py,sha256=Mx7p3jDZRLMltsfywSufam_4AnHvmAfsxtMHVI72e-8,1083
40
+ llama_cloud/resources/pipelines/client.py,sha256=wGmcHdHXojUtZURaXLKeJEB0v4J6ImKbygvMUp8W-ic,125954
41
+ llama_cloud/resources/pipelines/types/__init__.py,sha256=jjaMc0V3K1HZLMYZ6WT4ydMtBCVy-oF5koqTCovbDws,1202
42
+ llama_cloud/resources/pipelines/types/pipeline_file_update_custom_metadata_value.py,sha256=trI48WLxPcAqV9207Q6-3cj1nl4EGlZpw7En56ZsPgg,217
43
+ llama_cloud/resources/pipelines/types/pipeline_update_embedding_config.py,sha256=c8FF64fDrBMX_2RX4uY3CjbNc0Ss_AUJ4Eqs-KeV4Wc,2874
44
+ llama_cloud/resources/pipelines/types/pipeline_update_transform_config.py,sha256=KbkyULMv-qeS3qRd31ia6pd5rOdypS0o2UL42NRcA7E,321
45
+ llama_cloud/resources/projects/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
46
+ llama_cloud/resources/projects/client.py,sha256=nK81HdhGbWY1rh8rSEsKzRuvyvCQ-IkhLHIPDqEqVFU,47754
47
+ llama_cloud/types/__init__.py,sha256=_BhNDO3MaagDL3Zr0zlJySmXYWbBmtBbTP7l_C3ElIo,17204
48
+ llama_cloud/types/advanced_mode_transform_config.py,sha256=4xCXye0_cPmVS1F8aNTx81sIaEPjQH9kiCCAIoqUzlI,1502
49
+ llama_cloud/types/advanced_mode_transform_config_chunking_config.py,sha256=wYbJnWLpeQDfhmDZz-wJfYzD1iGT5Jcxb9ga3mzUuvk,1983
50
+ llama_cloud/types/advanced_mode_transform_config_segmentation_config.py,sha256=anNGq0F5-IlbIW3kpC8OilzLJnUq5tdIcWHnRnmlYsg,1303
51
+ llama_cloud/types/auto_transform_config.py,sha256=HVeHZM75DMRznScqLTfrMwcZwIdyWPuaEYbPewnHqwc,1168
52
+ llama_cloud/types/azure_open_ai_embedding.py,sha256=MeDqZoPYFN7Nv_imY9cfqDU9SPlEyAY4HcQZ4PF5X3g,2264
53
+ llama_cloud/types/azure_open_ai_embedding_config.py,sha256=o1zZhzcGElH3SeixFErrm7P_WFHQ6LvrLem_nKJWunw,1170
54
+ llama_cloud/types/base.py,sha256=cn_Zn61yLMDCMm1iZTPvKILSRlqRzOqZtSYyYBY5dIE,938
55
+ llama_cloud/types/base_prompt_template.py,sha256=Cw3887tnytHZ5bJBSlniyU9k5ASidv9VYR86--IbNqo,1248
56
+ llama_cloud/types/bedrock_embedding.py,sha256=qrUoVW9Q2DLg-3nBRfGsZqUWGszfzc6ZHR8LJiXTZk4,1908
57
+ llama_cloud/types/bedrock_embedding_config.py,sha256=32dMhoA2cLx1jeogDnCl9WPVb83Hn99nAALnt5BM208,1147
58
+ llama_cloud/types/box_auth_mechanism.py,sha256=EwEdpWYytw_dRtSElfSMPhh5dxalYH8mGW3UAUpkUfY,502
59
+ llama_cloud/types/character_chunking_config.py,sha256=2ooAnrlVVbKj4nDi_lR66x5E6nWOmj5YDWhSMQD0ubc,1035
60
+ llama_cloud/types/character_splitter.py,sha256=Jm6ie7c9JmMqIqLfAN-96sYvNUaIyLzCPBjNUx29VUw,1896
61
+ llama_cloud/types/chat_data.py,sha256=ZYqVtjXF6qPGajU4IWZu3InpU54TXJwBFiqxBepylP0,1197
62
+ llama_cloud/types/chat_message.py,sha256=Yl53CTyGf7uZEez-FxHeD_IL69pF2WL6tZHUUUb1y3c,1523
63
+ llama_cloud/types/cloud_az_storage_blob_data_source.py,sha256=SH--TXe-bHHMmZI5kBdFFucHqDrTwebOIrEuxpO9nBE,1483
64
+ llama_cloud/types/cloud_azure_ai_search_vector_store.py,sha256=9GTaft7BaKsR9RJQp5dlpbslXUlTMA1AcDdKV1ApfqI,1513
65
+ llama_cloud/types/cloud_box_data_source.py,sha256=2hkAIwQ97rLk5Pjq2_I-2nGT-kwMD8H9Npw3gh6XJGg,1419
66
+ llama_cloud/types/cloud_confluence_data_source.py,sha256=H1afuJGkM75y5QJPcMo_yXdQruks5FBT_c1oOI3nuHI,1435
67
+ llama_cloud/types/cloud_document.py,sha256=Rg_H8lcz2TzxEAIdU-m5mGpkM7s0j1Cn4JHkXYddmGs,1255
68
+ llama_cloud/types/cloud_document_create.py,sha256=fQ1gZAtLCpr-a-sPbMez_5fK9JMU3uyp2tNvIzWNG3U,1278
69
+ llama_cloud/types/cloud_google_drive_data_source.py,sha256=3zVmo8YH5GUHEwigylKCaZbQ6HTXIoFl8WudQOCVoB8,1253
70
+ llama_cloud/types/cloud_jira_data_source.py,sha256=4fq0Ac1zxyqw3eVJV38JJsN_3xG0yrUvDxb54Vw6s9I,1407
71
+ llama_cloud/types/cloud_milvus_vector_store.py,sha256=CHFTJSYPZKYPUU-jpB1MG8OwRvnPiT07o7cYCvQMZLA,1235
72
+ llama_cloud/types/cloud_mongo_db_atlas_vector_search.py,sha256=R-3zF5aH1PvkhXpGLGCFdfgS6Ehey8iYQFX6N0GZNA8,1725
73
+ llama_cloud/types/cloud_notion_page_data_source.py,sha256=-BC28uhoWX0IzmgyEluGR9OCJQj2UbcWV3DxJswM8E0,1179
74
+ llama_cloud/types/cloud_one_drive_data_source.py,sha256=q1FGDiaZCIrdPcKjCE-G3FEBvr6hHm00pBghOiXl-os,1465
75
+ llama_cloud/types/cloud_pinecone_vector_store.py,sha256=d1jEezwE6ndNG-2izgoO_m9tG3N1ZFvmeCXI2r3miFc,1724
76
+ llama_cloud/types/cloud_postgres_vector_store.py,sha256=Q0pH880w2JEAYaUso5prmMurAbSzgL_N-XxtHVPD3UQ,1235
77
+ llama_cloud/types/cloud_qdrant_vector_store.py,sha256=F-gjNArzwLWmqgPcC-ZxRqSrhTFZbv5kqmIXmnLPB5o,1718
78
+ llama_cloud/types/cloud_s_3_data_source.py,sha256=8UazWcol_fg7jJ7vQiGjEeYO-1io39M_kZXtSDdJeq8,1325
79
+ llama_cloud/types/cloud_sharepoint_data_source.py,sha256=HiPYU189GBdqCEfYKGRU-43z0eYRl5a6DffxKEi9bHI,1462
80
+ llama_cloud/types/cloud_slack_data_source.py,sha256=dDsYcBLchGrd9xMGJqIqNBAazDwc5OJvD-07a5U0G5I,1323
81
+ llama_cloud/types/code_splitter.py,sha256=8MJScSxk9LzByufokcWG3AHAnOjUt13VlV2w0SCXTLc,1987
82
+ llama_cloud/types/cohere_embedding.py,sha256=wkv_fVCA1WEroGawzPFExwmiJ75gPfzeeemty7NBlsM,1579
83
+ llama_cloud/types/cohere_embedding_config.py,sha256=c0Kj1wuSsBX9TQ2AondKv5ZtX5PmkivsHj6P0M7tVB4,1142
84
+ llama_cloud/types/configurable_data_sink_names.py,sha256=0Yk9i8hcNXKCcSKpa5KwsCwy_EDeodqbny7qmF86_lM,1225
85
+ llama_cloud/types/configurable_data_source_names.py,sha256=mNW71sSgcVhU3kePAOUgRxeqK1Vo7F_J1xIzmYKPRq0,1971
86
+ llama_cloud/types/configurable_transformation_definition.py,sha256=LDOhI5IDxlLDWM_p_xwCFM7qq1y-aGA8UxN7dnplDlU,1886
87
+ llama_cloud/types/configurable_transformation_names.py,sha256=N_YhY8IuQxsqBteCibaQwEaY0zd6Ncb6jW69d9mjrdU,1898
88
+ llama_cloud/types/configured_transformation_item.py,sha256=9caK5ZOKgGCZc6ynJJIWwpxpScKHOHkZwHFlsBy-Fog,1826
89
+ llama_cloud/types/configured_transformation_item_component.py,sha256=VEwtkbnImKGtzaSaIb9q46xu7ZPZliqK7oMh_-ftiq8,712
90
+ llama_cloud/types/data_sink.py,sha256=-4RIM1U5wjXm1Jfl6GmAnVLIRVKcd_j-AFigvQcXliA,1426
91
+ llama_cloud/types/data_sink_component.py,sha256=uvuxLY3MPDpv_bkT0y-tHSZVPRSHCkDBDHVff-036Dg,749
92
+ llama_cloud/types/data_sink_create.py,sha256=7hFoMZwd9YoP6pUjmXnzKsS1Ey5OeEQ-mIlNoh8tYAE,1288
93
+ llama_cloud/types/data_sink_create_component.py,sha256=8QfNKSTJV_sQ0nJxlpfh0fBkMTSnQD1DTJR8ZMYaesI,755
94
+ llama_cloud/types/data_sink_definition.py,sha256=5ve_pq02s8szc34-wWobMe6BAPj_c7e9n9FFsfDqEQ0,1561
95
+ llama_cloud/types/data_source.py,sha256=Qo6BZI8W2yIR6NWN1JdjBPPNbQxeUHy57nWmCBhSJe4,1626
96
+ llama_cloud/types/data_source_component.py,sha256=yfXHoeHaqUMum7fIs3tZB0pOFMhDbAq7oCJtnob0gWY,1077
97
+ llama_cloud/types/data_source_create.py,sha256=XUPQYTi2mty888cIQAiilj-NQhOGNaIlwGITWPRYhD4,1507
98
+ llama_cloud/types/data_source_create_component.py,sha256=-P4FGv9Xg951n-77_bb-2_CF-33ZXcUkw52LPQNunBY,1083
99
+ llama_cloud/types/data_source_create_custom_metadata_value.py,sha256=ejSsQNbszYQaUWFh9r9kQpHf88qbhuRv1SI9J_MOSC0,215
100
+ llama_cloud/types/data_source_custom_metadata_value.py,sha256=pTZn5yjZYmuOhsLABFJOKZblZUkRqo1CqLAuP5tKji4,209
101
+ llama_cloud/types/data_source_definition.py,sha256=HlSlTxzYcQJOSo_2OSroAE8vAr-otDvTNBSEkA54vL8,1575
102
+ llama_cloud/types/element_segmentation_config.py,sha256=QOBk8YFrgK0I2m3caqV5bpYaGXbk0fMSjZ4hUPZXZDI,959
103
+ llama_cloud/types/eval_dataset.py,sha256=FIP4uHqUXg0LxGPaq-LmW2aTcEdQk-i5AYLbGqsQSV0,1310
104
+ llama_cloud/types/eval_dataset_job_params.py,sha256=vcXLJWO581uigNvGAurPDgMeEFtQURWucLF5pemdeS0,1343
105
+ llama_cloud/types/eval_dataset_job_record.py,sha256=nqTvrus89MEn0m3mYP6PxUWlnLDKfvvJtOL2V0km0v8,2148
106
+ llama_cloud/types/eval_execution_params.py,sha256=ntVaJh5SMZMPL4QLUiihVjUlg2SKbrezvbMKGlrF66Q,1369
107
+ llama_cloud/types/eval_execution_params_override.py,sha256=ihEFbMRYmFJ5mWmFW24JjV6D0qqeDM4p829mSxMGtOQ,1195
108
+ llama_cloud/types/eval_metric.py,sha256=vhO_teMLiyzBdzKpOBW8Bm9qCw2h6m3unp2XotB7pDQ,499
109
+ llama_cloud/types/eval_question.py,sha256=UG042gXLw1uIW9hQOffCzIoGHVSve8Wk9ZeYGzwhHDU,1432
110
+ llama_cloud/types/eval_question_create.py,sha256=oOwxkE5gPj8RAwgr3uuTHfTvLSXmYkkxNHqsT7oUHjI,1031
111
+ llama_cloud/types/eval_question_result.py,sha256=Y4RFXnA4YJTlzM6_NtLOi0rt6hRZoQbToiVJqm41ArY,2168
112
+ llama_cloud/types/extraction_job.py,sha256=Y8Vp8zmWEl3m9-hy0v2EIbwfm9c2b6oGTUWw3eip_II,1260
113
+ llama_cloud/types/extraction_result.py,sha256=A-BMKdbkObQRcKr_wxB9FoEMGhZuEvYzdp_r7bFp_48,1562
114
+ llama_cloud/types/extraction_result_data_value.py,sha256=YwtoAi0U511CVX4L91Nx0udAT4ejV6wn0AfJOyETt-o,199
115
+ llama_cloud/types/extraction_schema.py,sha256=bVTuJavuRtFsP31AVDyK2k14GYePxfNflI7oncQiZEQ,1528
116
+ llama_cloud/types/extraction_schema_data_schema_value.py,sha256=AYyfwqWIr6PrJsQKudzGYGmxC6yjUmBjxcUZpQyEc54,211
117
+ llama_cloud/types/file.py,sha256=p-9C2FIrZU1u2jB9F1v05EI3S_X0rRp0YpYWf7yWFzQ,1561
118
+ llama_cloud/types/file_resource_info_value.py,sha256=g6T6ELeLK9jgcvX6r-EuAl_4JkwnyqdS0RRoabMReSU,195
119
+ llama_cloud/types/filter_condition.py,sha256=in8L0rP6KO3kd8rRakDjrxBZTWZen6VWVojQnZELORc,520
120
+ llama_cloud/types/filter_operator.py,sha256=DPS9ZziC7HYNHVtaTLqWLmur6sKSSybFFEUiTpVCOgk,2220
121
+ llama_cloud/types/gemini_embedding.py,sha256=n9vuxFbXt_VNuaZvp7BlkFWmGMgehpJz_ICacIafdYw,1418
122
+ llama_cloud/types/gemini_embedding_config.py,sha256=ycLaAkl9TQgUkvdbFyrz1cYXg1Wxmf0C-THNk4LWg1s,1142
123
+ llama_cloud/types/http_validation_error.py,sha256=iOSKYv0dJGjyIq8DAeLVKNJY-GiM1b6yiXGpXrm4QS4,1058
124
+ llama_cloud/types/hugging_face_inference_api_embedding.py,sha256=c-O87QJZHaBWl0RobjD4tMsmtJCeUOc_oTl6oHZHDYU,1887
125
+ llama_cloud/types/hugging_face_inference_api_embedding_config.py,sha256=EFHhuPCxU0g3Jcc3k-8X-uH_OLCoRfWNbOCUpZ3Ygd4,1232
126
+ llama_cloud/types/hugging_face_inference_api_embedding_token.py,sha256=A7-_YryBcsP4G5uRyJ9acao3XwX5-YC3NRndTeDAPj4,144
127
+ llama_cloud/types/ingestion_error_response.py,sha256=8u0cyT44dnpkNeUKemTvJMUqi_WyPcYQKP_DMTqaFPY,1259
128
+ llama_cloud/types/input_message.py,sha256=H0vsGsIo_J71d3NnHGzs7WytjEhNPzhOEDY9e_9Y_w0,1329
129
+ llama_cloud/types/job_name_mapping.py,sha256=scAbHrxvowCE3jHRZyYr2bBE5wvMMdBw7zpQ-lp5dY0,1433
130
+ llama_cloud/types/llama_parse_parameters.py,sha256=DoG4u2ZOemavuCMNWxwryGDFfAk-6z-y0Afr_0B19Yo,2595
131
+ llama_cloud/types/llama_parse_supported_file_extensions.py,sha256=B_0N3f8Aq59W9FbsH50mGBUiyWTIXQjHFl739uAyaQw,11207
132
+ llama_cloud/types/llm.py,sha256=v5a7Cq4oSUh3LYYIpECOpV0llDVP7XbFvdlxsIXnmhI,2197
133
+ llama_cloud/types/llm_model_data.py,sha256=QgyFe03psw5Aon3w1LC6ovCa1o9MVNcaGcmpapw-4D0,1263
134
+ llama_cloud/types/llm_parameters.py,sha256=fQTUCBFBezR1pF8-9cq3vy2CE0Rma-EsjGhUdiN_U8E,1279
135
+ llama_cloud/types/local_eval.py,sha256=aJ8jRG0b5EL9cLjx281bzAzPw7Ar004Jfp6mBmyjuTA,1491
136
+ llama_cloud/types/local_eval_results.py,sha256=YfK6AhfD0gr5apQBfrfzrTHDXvrk7ynAUUjNSKu9NVk,1380
137
+ llama_cloud/types/local_eval_sets.py,sha256=XJSSriwRvkma889pPiBQrpRakKejKOX3tWPu1TGb1ug,1181
138
+ llama_cloud/types/managed_ingestion_status.py,sha256=IW5WpBSofGlJfypFrl3mp4yx9Lq4eHFs-1IOl1R33dI,1128
139
+ llama_cloud/types/managed_ingestion_status_response.py,sha256=36XBDaAyrqDeHRvinJSYcNcq3aPZ9zMe6aMz_hW2OIw,1326
140
+ llama_cloud/types/markdown_element_node_parser.py,sha256=NUqdU8BmyfSFK2rV6hCrvP6U1iB6aqZCVsvHWJQ49xU,1964
141
+ llama_cloud/types/markdown_node_parser.py,sha256=SIF3H12xf0HGpdMZ2-6ScFEo138-QxsWiQv0ft5vDWA,1605
142
+ llama_cloud/types/message_annotation.py,sha256=n4F9w4LxwmGvgXDk6E8YPTMu_g0yEjZhZ_eNFXdS_bc,1017
143
+ llama_cloud/types/message_role.py,sha256=38ES71HMWfKesfFqSkTBxDcqdNqJHlNYQr1pPKlxSXs,1208
144
+ llama_cloud/types/metadata_filter.py,sha256=dVdXY6i0aCkvJrs7ncQt4-S8jmBF9bBSp2VuWrmAVfI,1440
145
+ llama_cloud/types/metadata_filter_value.py,sha256=ij721gXNI7zbgsuDl9-AqBcXg2WDuVZhYS5F5YqekEs,188
146
+ llama_cloud/types/metadata_filters.py,sha256=uSf6sB4oQu6WzMPNFG6Tc4euqEiYcj_X14Y5JWt9xVE,1315
147
+ llama_cloud/types/metadata_filters_filters_item.py,sha256=e8KhD2q6Qc2_aK6r5CvyxC0oWVYO4F4vBIcB9eMEPPM,246
148
+ llama_cloud/types/metric_result.py,sha256=gCVyu9usPip30igCLKS0oTYU6V3CvY8QIk1gwaXB7ik,1051
149
+ llama_cloud/types/node_parser.py,sha256=rqZTQ_9GnCHOvSpXuAZoezxQCOgxHo-hmQv0s7pnEFc,1380
150
+ llama_cloud/types/node_relationship.py,sha256=2e2PqWm0LOTiImvtsyiuaAPNIl0BItjSrQZTJv65GRA,1209
151
+ llama_cloud/types/none_chunking_config.py,sha256=D062t314Vp-s4n9h8wNgsYfElI4PonPKmihvjEmaqdA,952
152
+ llama_cloud/types/none_segmentation_config.py,sha256=j3jUA6E8uFtwDMEu4TFG3Q4ZGCGiuUfUW9AMO1NNqXU,956
153
+ llama_cloud/types/object_type.py,sha256=oYzizJl4Z5IS5lyhG5UHEAQMmjN9ZYEp27nS7uJwLuE,699
154
+ llama_cloud/types/open_ai_embedding.py,sha256=RQijkvKyzbISy92LnBSEpjmIU8p7kMpdc4sdx5-btrM,2042
155
+ llama_cloud/types/open_ai_embedding_config.py,sha256=Mquc0JrtCo8lVYA2WW7q0ZikS3HRkiMtzDFu5XA-20o,1143
156
+ llama_cloud/types/organization.py,sha256=WI37HYVLsqf8ljT5ZcWUBIex7br6ZSzHUMpqCIHdSNA,1223
157
+ llama_cloud/types/organization_create.py,sha256=hUXRwArIx_0D_lilpL7z-B0oJJ5yEX8Sbu2xqfH_9so,1086
158
+ llama_cloud/types/page_screenshot_metadata.py,sha256=dXwWNDS7670xvIIuB1C_gLlsvAzQH4BRR3jLOojRvGs,1268
159
+ llama_cloud/types/page_screenshot_node_with_score.py,sha256=EdqoXbmARCz1DV14E2saCPshIeII709uM4cLwxw_mkM,1232
160
+ llama_cloud/types/page_segmentation_config.py,sha256=VH8uuxnubnJak1gSpS64OoMueHidhsDB-2eq2tVHbag,998
161
+ llama_cloud/types/page_splitter_node_parser.py,sha256=rQgS1CDk18UKA0r9OPvjdtM570jzFArdLCTxYAtZny8,1424
162
+ llama_cloud/types/parser_languages.py,sha256=Ps3IlaSt6tyxEI657N3-vZL96r2puk8wsf31cWnO-SI,10840
163
+ llama_cloud/types/parsing_history_item.py,sha256=_MVzf43t84PbmjOzsMLZ_NBoyiisigLWz-fr0ZxU63g,1183
164
+ llama_cloud/types/parsing_job.py,sha256=9hoKN4h-t0fka4-fX-79VbvcK2EEZRk2bDDZvCjaYZo,1093
165
+ llama_cloud/types/parsing_job_json_result.py,sha256=BA3_u-ChHpE5wm08WmOvgPUsMsClkTHTIHjePAk-wuI,1006
166
+ llama_cloud/types/parsing_job_markdown_result.py,sha256=gPIUO0JwtKwvSHcRYEr995DNl7VN3EaaSaj4aPHCP4o,1077
167
+ llama_cloud/types/parsing_job_text_result.py,sha256=TP-7IRTWZLAZz7NYLkzi4PsGnaRJuPTt40p56Mk6Rhw,1065
168
+ llama_cloud/types/parsing_usage.py,sha256=JLlozu-vIkcRKqWaOVJ9Z2TrY7peJRTzOpYjOThGKGQ,1012
169
+ llama_cloud/types/partition_names.py,sha256=zZZn-sn59gwch2fa7fGMwFWUEuu5Dfen3ZqKtcPnBEM,1877
170
+ llama_cloud/types/pipeline.py,sha256=7yyjgxY3echp-8jEIKiUOUsGbR1UFeqJF67SM9OBkUc,2737
171
+ llama_cloud/types/pipeline_configuration_hashes.py,sha256=7_MbOcPWV6iyMflJeXoo9vLzD04E5WM7YxYp4ls0jQs,1169
172
+ llama_cloud/types/pipeline_create.py,sha256=EY9Esd5QHjQeyBBzGAQvfO6HORWlfYSpH7aTvjOBkD0,2453
173
+ llama_cloud/types/pipeline_create_embedding_config.py,sha256=PQqmVBFUyZXYKKBmVQF2zPsGp1L6rje6g3RtXEcdfc8,2811
174
+ llama_cloud/types/pipeline_create_transform_config.py,sha256=HP6tzLsw_pomK1Ye2PYCS_XDZK_TMgg22mz17_zYKFg,303
175
+ llama_cloud/types/pipeline_data_source.py,sha256=zDSUzBCRCUdpbfMRtprGw1TKy4v9_rj789Lz31QMaTk,2067
176
+ llama_cloud/types/pipeline_data_source_component.py,sha256=c_R2aBl7XXsfJ_ZuK_-PXzzL2nDI4jrbJ0BStlzp87Y,1085
177
+ llama_cloud/types/pipeline_data_source_create.py,sha256=wMsymqB-YGyf3jdQr-N5ODVG6v0w68EMxGBNdQXeJe0,1178
178
+ llama_cloud/types/pipeline_data_source_custom_metadata_value.py,sha256=8n3r60sxMx4_udW0yzJZxzyWeK6L3cc2-jLGZFW4EDs,217
179
+ llama_cloud/types/pipeline_deployment.py,sha256=eVBrz032aPb2cqtIIVYT5MTHQvBNm89XazoNrRWVugo,1356
180
+ llama_cloud/types/pipeline_embedding_config.py,sha256=mpeJ6bOMvRUO12VTYbcHmgJ3ssHNKAUQMrF06j2t7Lc,2721
181
+ llama_cloud/types/pipeline_file.py,sha256=zHNu0ghtUkusS4LftJm_hnIFCR2KDm3JHv6EbCHj0RQ,2145
182
+ llama_cloud/types/pipeline_file_config_hash_value.py,sha256=4lvLnDpzNAHdiMkGJTTNDTu3p3H7Nxw5MR1Mzte7-_M,201
183
+ llama_cloud/types/pipeline_file_create.py,sha256=yoMIzWED0ktKerE48kgzInBa3d0aNGO5JjTtDTDAn4A,1310
184
+ llama_cloud/types/pipeline_file_create_custom_metadata_value.py,sha256=olVj5yhQFx1QqWO1Wv9d6AtL-YyYO9_OYtOfcD2ZeGY,217
185
+ llama_cloud/types/pipeline_file_custom_metadata_value.py,sha256=ClFphYDNlHxeyLF5BWxIUhs2rooS0Xtqxr_Ae8dn8zE,211
186
+ llama_cloud/types/pipeline_file_resource_info_value.py,sha256=s3uFGQNwlUEr-X4TJZkW_kMBvX3h1sXRJoYlJRvHSDc,209
187
+ llama_cloud/types/pipeline_transform_config.py,sha256=zMr-ePLKGjbaScxbAHaSwYBL7rrNibVlnn0cbgElDfU,824
188
+ llama_cloud/types/pipeline_type.py,sha256=tTqrhxHP5xd7W2dQGD0e5FOv886nwJssyaVlXpWrtRo,551
189
+ llama_cloud/types/playground_session.py,sha256=vDebFzSvw0TyhOFMa5VFY8S7rZvedl6GNVmOFJd5kZo,1816
190
+ llama_cloud/types/pooling.py,sha256=5Fr6c8rx9SDWwWzEvD78suob2d79ktodUtLUAUHMbP8,651
191
+ llama_cloud/types/preset_retrieval_params.py,sha256=1VQbPNgxpefJL9KayIqk1uFf3fvrONBjPDviz0rDWA4,1730
192
+ llama_cloud/types/presigned_url.py,sha256=-DOQo7XKvUsl-9Gz7fX6VOHdQLzGH2XRau24ASvG92E,1275
193
+ llama_cloud/types/project.py,sha256=4NNh_ZAjEkoWl5st6b1jsPVf_SYKtUTB6rS1701G4IQ,1441
194
+ llama_cloud/types/project_create.py,sha256=GxGmsXGJM-cHrvPFLktEkj9JtNsSdFae7-HPZFB4er0,1014
195
+ llama_cloud/types/prompt_mixin_prompts.py,sha256=_ipiIFWmWSuaJ5VFI5rXa_C7lHaIL3Yv5izh7__xTxI,1323
196
+ llama_cloud/types/prompt_spec.py,sha256=lpq9m4lK47FUfbFEzUDbLoZtSGX4EDthJ4u5Xd3SWKQ,1368
197
+ llama_cloud/types/pydantic_program_mode.py,sha256=QfvpqR7TqyNuOxo78Sr58VOu7KDSBrHJM4XXBB0F5z0,1202
198
+ llama_cloud/types/related_node_info.py,sha256=Ikm76x9hXs20uV_n_2MIG6bWh_ugPoehjyA-ZrR6J6o,1174
199
+ llama_cloud/types/retrieval_mode.py,sha256=LTKT4y7zEGanZJ_mtlGSRSyosnGWPG90T3_lkA9l4Zc,747
200
+ llama_cloud/types/retrieve_results.py,sha256=ZHBoNOO3Ta2vg8579XM0oEI18BUr656hk17F0_e9gbE,1780
201
+ llama_cloud/types/semantic_chunking_config.py,sha256=dFDniTVWpRc7UcmVFvljUoyL5Ztd-l-YrHII7U-yM-k,1053
202
+ llama_cloud/types/sentence_chunking_config.py,sha256=NA9xidK5ICxJPkEMQZWNcsV0Hw9Co_bzRWeYe4uSh9I,1116
203
+ llama_cloud/types/sentence_splitter.py,sha256=GbC3KE20Nd85uzO4bqJttjqJhQ_1co2gKnSQxzfOAiM,2140
204
+ llama_cloud/types/status_enum.py,sha256=2kQLDa8PdvK45yJDSV2i53rBA3wCR1PJj-IdK0Dcr2E,868
205
+ llama_cloud/types/supported_llm_model.py,sha256=0v-g01LyZB7TeN0zwAeSJejRoT95SVaXOJhNz7boJwM,1461
206
+ llama_cloud/types/supported_llm_model_names.py,sha256=lmIA6ilGHc8rkU5B1j3irbwZW3_VCZyZWZRY2RXM9Dc,1227
207
+ llama_cloud/types/text_node.py,sha256=9IVlMJ-HvvJJ4j-Lsy5fd0Hl6m5ut99juffHf4A1K9E,2670
208
+ llama_cloud/types/text_node_relationships_value.py,sha256=qmXURTk1Xg7ZDzRSSV1uDEel0AXRLohND5ioezibHY0,217
209
+ llama_cloud/types/text_node_with_score.py,sha256=k-KYWO_mgJBvO6xUfOD5W6v1Ku9E586_HsvDoQbLfuQ,1229
210
+ llama_cloud/types/token_chunking_config.py,sha256=XNvnTsNd--YOMQ_Ad8hoqhYgQftqkBHKVn6i7nJnMqs,1067
211
+ llama_cloud/types/token_text_splitter.py,sha256=iTT3x9yO021v757B2r-0Z-WFQiIESLqEJUCmUUwPQ_o,1899
212
+ llama_cloud/types/transformation_category_names.py,sha256=Wb7NBB0f-tEtfEZQis-iKy71SUKmmHFcXf6XLn6g0XU,545
213
+ llama_cloud/types/user_organization.py,sha256=wLL-bV2g17VVpusFAFXeVBYbUQ2oodHUiDaDz8z7jpM,1593
214
+ llama_cloud/types/user_organization_create.py,sha256=bxm6mLTu-gOgiw4L_o-fwZYz27qVVU5fjhZudK-_q3I,1104
215
+ llama_cloud/types/user_organization_delete.py,sha256=IDYLKfFAXfcJfkEpA0ARbaA0JDcEBe7fTLv833DZXHs,1104
216
+ llama_cloud/types/validation_error.py,sha256=yZDLtjUHDY5w82Ra6CW0H9sLAr18R0RY1UNgJKR72DQ,1084
217
+ llama_cloud/types/validation_error_loc_item.py,sha256=LAtjCHIllWRBFXvAZ5QZpp7CPXjdtN9EB7HrLVo6EP0,128
218
+ llama_cloud/types/vertex_ai_embedding_config.py,sha256=DvQk2xMJFmo54MEXTzoM4KSADyhGm_ygmFyx6wIcQdw,1159
219
+ llama_cloud/types/vertex_embedding_mode.py,sha256=AkoY7nzOF5MHb4bCnEy-FJol7WxFNBLcQ8PHHtBWH_o,1605
220
+ llama_cloud/types/vertex_text_embedding.py,sha256=-C4fNCYfFl36ATdBMGFVPpiHIKxjk0KB1ERA2Ec20aU,1932
221
+ llama_cloud-0.1.1.dist-info/LICENSE,sha256=_iNqtPcw1Ue7dZKwOwgPtbegMUkWVy15hC7bffAdNmY,1067
222
+ llama_cloud-0.1.1.dist-info/METADATA,sha256=YB7klRrfxoZYnluP2wVXhhMIt28M0jcP4mkMpB9QaHo,750
223
+ llama_cloud-0.1.1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
224
+ llama_cloud-0.1.1.dist-info/RECORD,,
@@ -1,2 +0,0 @@
1
- # This file was auto-generated by Fern from our API Definition.
2
-
@@ -1,124 +0,0 @@
1
- # This file was auto-generated by Fern from our API Definition.
2
-
3
- import urllib.parse
4
- from json.decoder import JSONDecodeError
5
-
6
- from ...core.api_error import ApiError
7
- from ...core.client_wrapper import AsyncClientWrapper, SyncClientWrapper
8
- from ...errors.unprocessable_entity_error import UnprocessableEntityError
9
- from ...types.http_validation_error import HttpValidationError
10
- from ...types.user import User
11
-
12
- try:
13
- import pydantic
14
- if pydantic.__version__.startswith("1."):
15
- raise ImportError
16
- import pydantic.v1 as pydantic # type: ignore
17
- except ImportError:
18
- import pydantic # type: ignore
19
-
20
-
21
- class AuthClient:
22
- def __init__(self, *, client_wrapper: SyncClientWrapper):
23
- self._client_wrapper = client_wrapper
24
-
25
- def login(self) -> None:
26
- """
27
- from llama_cloud.client import LlamaCloud
28
-
29
- client = LlamaCloud(
30
- token="YOUR_TOKEN",
31
- )
32
- client.auth.login()
33
- """
34
- _response = self._client_wrapper.httpx_client.request(
35
- "GET",
36
- urllib.parse.urljoin(f"{self._client_wrapper.get_base_url()}/", "api/v1/auth/login"),
37
- headers=self._client_wrapper.get_headers(),
38
- timeout=60,
39
- )
40
- if 200 <= _response.status_code < 300:
41
- return
42
- try:
43
- _response_json = _response.json()
44
- except JSONDecodeError:
45
- raise ApiError(status_code=_response.status_code, body=_response.text)
46
- raise ApiError(status_code=_response.status_code, body=_response_json)
47
-
48
- def read_self(self) -> User:
49
- """
50
- from llama_cloud.client import LlamaCloud
51
-
52
- client = LlamaCloud(
53
- token="YOUR_TOKEN",
54
- )
55
- client.auth.read_self()
56
- """
57
- _response = self._client_wrapper.httpx_client.request(
58
- "GET",
59
- urllib.parse.urljoin(f"{self._client_wrapper.get_base_url()}/", "api/v1/auth/me"),
60
- headers=self._client_wrapper.get_headers(),
61
- timeout=60,
62
- )
63
- if 200 <= _response.status_code < 300:
64
- return pydantic.parse_obj_as(User, _response.json()) # type: ignore
65
- if _response.status_code == 422:
66
- raise UnprocessableEntityError(pydantic.parse_obj_as(HttpValidationError, _response.json())) # type: ignore
67
- try:
68
- _response_json = _response.json()
69
- except JSONDecodeError:
70
- raise ApiError(status_code=_response.status_code, body=_response.text)
71
- raise ApiError(status_code=_response.status_code, body=_response_json)
72
-
73
-
74
- class AsyncAuthClient:
75
- def __init__(self, *, client_wrapper: AsyncClientWrapper):
76
- self._client_wrapper = client_wrapper
77
-
78
- async def login(self) -> None:
79
- """
80
- from llama_cloud.client import AsyncLlamaCloud
81
-
82
- client = AsyncLlamaCloud(
83
- token="YOUR_TOKEN",
84
- )
85
- await client.auth.login()
86
- """
87
- _response = await self._client_wrapper.httpx_client.request(
88
- "GET",
89
- urllib.parse.urljoin(f"{self._client_wrapper.get_base_url()}/", "api/v1/auth/login"),
90
- headers=self._client_wrapper.get_headers(),
91
- timeout=60,
92
- )
93
- if 200 <= _response.status_code < 300:
94
- return
95
- try:
96
- _response_json = _response.json()
97
- except JSONDecodeError:
98
- raise ApiError(status_code=_response.status_code, body=_response.text)
99
- raise ApiError(status_code=_response.status_code, body=_response_json)
100
-
101
- async def read_self(self) -> User:
102
- """
103
- from llama_cloud.client import AsyncLlamaCloud
104
-
105
- client = AsyncLlamaCloud(
106
- token="YOUR_TOKEN",
107
- )
108
- await client.auth.read_self()
109
- """
110
- _response = await self._client_wrapper.httpx_client.request(
111
- "GET",
112
- urllib.parse.urljoin(f"{self._client_wrapper.get_base_url()}/", "api/v1/auth/me"),
113
- headers=self._client_wrapper.get_headers(),
114
- timeout=60,
115
- )
116
- if 200 <= _response.status_code < 300:
117
- return pydantic.parse_obj_as(User, _response.json()) # type: ignore
118
- if _response.status_code == 422:
119
- raise UnprocessableEntityError(pydantic.parse_obj_as(HttpValidationError, _response.json())) # type: ignore
120
- try:
121
- _response_json = _response.json()
122
- except JSONDecodeError:
123
- raise ApiError(status_code=_response.status_code, body=_response.text)
124
- raise ApiError(status_code=_response.status_code, body=_response_json)
@@ -1,23 +0,0 @@
1
- # This file was auto-generated by Fern from our API Definition.
2
-
3
- import typing
4
-
5
- from ....types.cloud_azure_ai_search_vector_store import CloudAzureAiSearchVectorStore
6
- from ....types.cloud_chroma_vector_store import CloudChromaVectorStore
7
- from ....types.cloud_milvus_vector_store import CloudMilvusVectorStore
8
- from ....types.cloud_mongo_db_atlas_vector_search import CloudMongoDbAtlasVectorSearch
9
- from ....types.cloud_pinecone_vector_store import CloudPineconeVectorStore
10
- from ....types.cloud_postgres_vector_store import CloudPostgresVectorStore
11
- from ....types.cloud_qdrant_vector_store import CloudQdrantVectorStore
12
- from ....types.cloud_weaviate_vector_store import CloudWeaviateVectorStore
13
-
14
- DataSinkUpdateComponentOne = typing.Union[
15
- CloudChromaVectorStore,
16
- CloudPineconeVectorStore,
17
- CloudPostgresVectorStore,
18
- CloudQdrantVectorStore,
19
- CloudWeaviateVectorStore,
20
- CloudAzureAiSearchVectorStore,
21
- CloudMongoDbAtlasVectorSearch,
22
- CloudMilvusVectorStore,
23
- ]
@@ -1,27 +0,0 @@
1
- # This file was auto-generated by Fern from our API Definition.
2
-
3
- import typing
4
-
5
- from ....types.cloud_az_storage_blob_data_source import CloudAzStorageBlobDataSource
6
- from ....types.cloud_box_data_source import CloudBoxDataSource
7
- from ....types.cloud_confluence_data_source import CloudConfluenceDataSource
8
- from ....types.cloud_google_drive_data_source import CloudGoogleDriveDataSource
9
- from ....types.cloud_jira_data_source import CloudJiraDataSource
10
- from ....types.cloud_notion_page_data_source import CloudNotionPageDataSource
11
- from ....types.cloud_one_drive_data_source import CloudOneDriveDataSource
12
- from ....types.cloud_s_3_data_source import CloudS3DataSource
13
- from ....types.cloud_sharepoint_data_source import CloudSharepointDataSource
14
- from ....types.cloud_slack_data_source import CloudSlackDataSource
15
-
16
- DataSourceUpdateComponentOne = typing.Union[
17
- CloudS3DataSource,
18
- CloudAzStorageBlobDataSource,
19
- CloudGoogleDriveDataSource,
20
- CloudOneDriveDataSource,
21
- CloudSharepointDataSource,
22
- CloudSlackDataSource,
23
- CloudNotionPageDataSource,
24
- CloudConfluenceDataSource,
25
- CloudJiraDataSource,
26
- CloudBoxDataSource,
27
- ]
@@ -1,43 +0,0 @@
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 CloudChromaVectorStore(pydantic.BaseModel):
18
- """
19
- Base class for cloud vector stores.
20
- """
21
-
22
- supports_nested_metadata_filters: typing.Optional[bool]
23
- collection_name: typing.Optional[str]
24
- host: typing.Optional[str]
25
- port: typing.Optional[str]
26
- ssl: bool
27
- headers: typing.Optional[typing.Dict[str, str]]
28
- persist_dir: typing.Optional[str]
29
- collection_kwargs: typing.Optional[typing.Dict[str, typing.Any]]
30
- class_name: typing.Optional[str]
31
-
32
- def json(self, **kwargs: typing.Any) -> str:
33
- kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
34
- return super().json(**kwargs_with_defaults)
35
-
36
- def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
37
- kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
38
- return super().dict(**kwargs_with_defaults)
39
-
40
- class Config:
41
- frozen = True
42
- smart_union = True
43
- json_encoders = {dt.datetime: serialize_datetime}
@@ -1,41 +0,0 @@
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 CloudWeaviateVectorStore(pydantic.BaseModel):
18
- """
19
- Base class for cloud vector stores.
20
- """
21
-
22
- supports_nested_metadata_filters: typing.Optional[bool]
23
- index_name: str
24
- url: typing.Optional[str]
25
- text_key: str
26
- auth_config: typing.Optional[typing.Dict[str, typing.Any]]
27
- client_kwargs: typing.Optional[typing.Dict[str, typing.Any]]
28
- class_name: typing.Optional[str]
29
-
30
- def json(self, **kwargs: typing.Any) -> str:
31
- kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
32
- return super().json(**kwargs_with_defaults)
33
-
34
- def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
35
- kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
36
- return super().dict(**kwargs_with_defaults)
37
-
38
- class Config:
39
- frozen = True
40
- smart_union = True
41
- json_encoders = {dt.datetime: serialize_datetime}
@@ -1,35 +0,0 @@
1
- # This file was auto-generated by Fern from our API Definition.
2
-
3
- import typing
4
-
5
- from .azure_open_ai_embedding import AzureOpenAiEmbedding
6
- from .bedrock_embedding import BedrockEmbedding
7
- from .character_splitter import CharacterSplitter
8
- from .code_splitter import CodeSplitter
9
- from .cohere_embedding import CohereEmbedding
10
- from .extend_vertex_text_embedding import ExtendVertexTextEmbedding
11
- from .gemini_embedding import GeminiEmbedding
12
- from .hugging_face_inference_api_embedding import HuggingFaceInferenceApiEmbedding
13
- from .markdown_element_node_parser import MarkdownElementNodeParser
14
- from .markdown_node_parser import MarkdownNodeParser
15
- from .open_ai_embedding import OpenAiEmbedding
16
- from .page_splitter_node_parser import PageSplitterNodeParser
17
- from .sentence_splitter import SentenceSplitter
18
- from .token_text_splitter import TokenTextSplitter
19
-
20
- ConfiguredTransformationItemComponentOne = typing.Union[
21
- CharacterSplitter,
22
- PageSplitterNodeParser,
23
- CodeSplitter,
24
- SentenceSplitter,
25
- TokenTextSplitter,
26
- MarkdownNodeParser,
27
- MarkdownElementNodeParser,
28
- OpenAiEmbedding,
29
- AzureOpenAiEmbedding,
30
- CohereEmbedding,
31
- BedrockEmbedding,
32
- HuggingFaceInferenceApiEmbedding,
33
- GeminiEmbedding,
34
- ExtendVertexTextEmbedding,
35
- ]
@@ -1,58 +0,0 @@
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 CustomClaims(pydantic.BaseModel):
18
- """
19
- Custom claims that dictate various limits or allowed behaviors.
20
- Currently these claims reside at a per user level. Claims may expand to a per organization level or project in the future.
21
- """
22
-
23
- allowed_index: typing.Optional[bool] = pydantic.Field(
24
- description="Whether the user is allowed to access the index."
25
- )
26
- allowed_playground: typing.Optional[bool] = pydantic.Field(description="Deprecated. Use allowed_index instead")
27
- usage_pdf_max_pages_per_day: typing.Optional[int] = pydantic.Field(
28
- description="The maximum number of PDF pages the user can generate per day."
29
- )
30
- parse_premium: typing.Optional[bool] = pydantic.Field(
31
- description="Whether the user has a LlamaParse premium claim."
32
- )
33
- usage_index_max_files_per_pipeline: typing.Optional[int] = pydantic.Field(
34
- description="The maximum number of files per pipeline the user can index without LlamaParse premium."
35
- )
36
- max_jobs_in_execution_per_job_type: typing.Optional[int] = pydantic.Field(
37
- description="The maximum number of jobs the user can have in execution per job type."
38
- )
39
- max_document_ingestion_jobs_in_execution: typing.Optional[int] = pydantic.Field(
40
- description="The maximum number of document ingestion jobs the user can have in execution."
41
- )
42
- allowed_extraction: typing.Optional[bool] = pydantic.Field(
43
- description="Whether the user is allowed to use structured data extraction features."
44
- )
45
- allowed_eval: typing.Optional[bool] = pydantic.Field(description="Whether the user is allowed to run evals.")
46
-
47
- def json(self, **kwargs: typing.Any) -> str:
48
- kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
49
- return super().json(**kwargs_with_defaults)
50
-
51
- def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
52
- kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
53
- return super().dict(**kwargs_with_defaults)
54
-
55
- class Config:
56
- frozen = True
57
- smart_union = True
58
- json_encoders = {dt.datetime: serialize_datetime}