llama-cloud 0.1.29__py3-none-any.whl → 0.1.30__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of llama-cloud might be problematic. Click here for more details.

llama_cloud/__init__.py CHANGED
@@ -43,7 +43,6 @@ from .types import (
43
43
  CloudConfluenceDataSource,
44
44
  CloudDocument,
45
45
  CloudDocumentCreate,
46
- CloudGoogleDriveDataSource,
47
46
  CloudJiraDataSource,
48
47
  CloudMilvusVectorStore,
49
48
  CloudMongoDbAtlasVectorSearch,
@@ -436,7 +435,6 @@ __all__ = [
436
435
  "CloudConfluenceDataSource",
437
436
  "CloudDocument",
438
437
  "CloudDocumentCreate",
439
- "CloudGoogleDriveDataSource",
440
438
  "CloudJiraDataSource",
441
439
  "CloudMilvusVectorStore",
442
440
  "CloudMongoDbAtlasVectorSearch",
@@ -5,7 +5,6 @@ import typing
5
5
  from ....types.cloud_az_storage_blob_data_source import CloudAzStorageBlobDataSource
6
6
  from ....types.cloud_box_data_source import CloudBoxDataSource
7
7
  from ....types.cloud_confluence_data_source import CloudConfluenceDataSource
8
- from ....types.cloud_google_drive_data_source import CloudGoogleDriveDataSource
9
8
  from ....types.cloud_jira_data_source import CloudJiraDataSource
10
9
  from ....types.cloud_notion_page_data_source import CloudNotionPageDataSource
11
10
  from ....types.cloud_one_drive_data_source import CloudOneDriveDataSource
@@ -17,7 +16,6 @@ DataSourceUpdateComponent = typing.Union[
17
16
  typing.Dict[str, typing.Any],
18
17
  CloudS3DataSource,
19
18
  CloudAzStorageBlobDataSource,
20
- CloudGoogleDriveDataSource,
21
19
  CloudOneDriveDataSource,
22
20
  CloudSharepointDataSource,
23
21
  CloudSlackDataSource,
@@ -283,6 +283,12 @@ class ParsingClient:
283
283
  parsing_instruction: str,
284
284
  fast_mode: bool,
285
285
  formatting_instruction: str,
286
+ hide_headers: bool,
287
+ hide_footers: bool,
288
+ page_header_prefix: str,
289
+ page_header_suffix: str,
290
+ page_footer_prefix: str,
291
+ page_footer_suffix: str,
286
292
  ) -> ParsingJob:
287
293
  """
288
294
  Parameters:
@@ -463,6 +469,18 @@ class ParsingClient:
463
469
  - fast_mode: bool.
464
470
 
465
471
  - formatting_instruction: str.
472
+
473
+ - hide_headers: bool.
474
+
475
+ - hide_footers: bool.
476
+
477
+ - page_header_prefix: str.
478
+
479
+ - page_header_suffix: str.
480
+
481
+ - page_footer_prefix: str.
482
+
483
+ - page_footer_suffix: str.
466
484
  """
467
485
  _request: typing.Dict[str, typing.Any] = {
468
486
  "adaptive_long_table": adaptive_long_table,
@@ -548,6 +566,12 @@ class ParsingClient:
548
566
  "parsing_instruction": parsing_instruction,
549
567
  "fast_mode": fast_mode,
550
568
  "formatting_instruction": formatting_instruction,
569
+ "hide_headers": hide_headers,
570
+ "hide_footers": hide_footers,
571
+ "page_header_prefix": page_header_prefix,
572
+ "page_header_suffix": page_header_suffix,
573
+ "page_footer_prefix": page_footer_prefix,
574
+ "page_footer_suffix": page_footer_suffix,
551
575
  }
552
576
  if file is not OMIT:
553
577
  _request["file"] = file
@@ -1415,6 +1439,12 @@ class AsyncParsingClient:
1415
1439
  parsing_instruction: str,
1416
1440
  fast_mode: bool,
1417
1441
  formatting_instruction: str,
1442
+ hide_headers: bool,
1443
+ hide_footers: bool,
1444
+ page_header_prefix: str,
1445
+ page_header_suffix: str,
1446
+ page_footer_prefix: str,
1447
+ page_footer_suffix: str,
1418
1448
  ) -> ParsingJob:
1419
1449
  """
1420
1450
  Parameters:
@@ -1595,6 +1625,18 @@ class AsyncParsingClient:
1595
1625
  - fast_mode: bool.
1596
1626
 
1597
1627
  - formatting_instruction: str.
1628
+
1629
+ - hide_headers: bool.
1630
+
1631
+ - hide_footers: bool.
1632
+
1633
+ - page_header_prefix: str.
1634
+
1635
+ - page_header_suffix: str.
1636
+
1637
+ - page_footer_prefix: str.
1638
+
1639
+ - page_footer_suffix: str.
1598
1640
  """
1599
1641
  _request: typing.Dict[str, typing.Any] = {
1600
1642
  "adaptive_long_table": adaptive_long_table,
@@ -1680,6 +1722,12 @@ class AsyncParsingClient:
1680
1722
  "parsing_instruction": parsing_instruction,
1681
1723
  "fast_mode": fast_mode,
1682
1724
  "formatting_instruction": formatting_instruction,
1725
+ "hide_headers": hide_headers,
1726
+ "hide_footers": hide_footers,
1727
+ "page_header_prefix": page_header_prefix,
1728
+ "page_header_suffix": page_header_suffix,
1729
+ "page_footer_prefix": page_footer_prefix,
1730
+ "page_footer_suffix": page_footer_suffix,
1683
1731
  }
1684
1732
  if file is not OMIT:
1685
1733
  _request["file"] = file
@@ -46,7 +46,6 @@ from .cloud_box_data_source import CloudBoxDataSource
46
46
  from .cloud_confluence_data_source import CloudConfluenceDataSource
47
47
  from .cloud_document import CloudDocument
48
48
  from .cloud_document_create import CloudDocumentCreate
49
- from .cloud_google_drive_data_source import CloudGoogleDriveDataSource
50
49
  from .cloud_jira_data_source import CloudJiraDataSource
51
50
  from .cloud_milvus_vector_store import CloudMilvusVectorStore
52
51
  from .cloud_mongo_db_atlas_vector_search import CloudMongoDbAtlasVectorSearch
@@ -400,7 +399,6 @@ __all__ = [
400
399
  "CloudConfluenceDataSource",
401
400
  "CloudDocument",
402
401
  "CloudDocumentCreate",
403
- "CloudGoogleDriveDataSource",
404
402
  "CloudJiraDataSource",
405
403
  "CloudMilvusVectorStore",
406
404
  "CloudMongoDbAtlasVectorSearch",
@@ -5,7 +5,6 @@ import typing
5
5
  from .cloud_az_storage_blob_data_source import CloudAzStorageBlobDataSource
6
6
  from .cloud_box_data_source import CloudBoxDataSource
7
7
  from .cloud_confluence_data_source import CloudConfluenceDataSource
8
- from .cloud_google_drive_data_source import CloudGoogleDriveDataSource
9
8
  from .cloud_jira_data_source import CloudJiraDataSource
10
9
  from .cloud_notion_page_data_source import CloudNotionPageDataSource
11
10
  from .cloud_one_drive_data_source import CloudOneDriveDataSource
@@ -17,7 +16,6 @@ DataSourceComponent = typing.Union[
17
16
  typing.Dict[str, typing.Any],
18
17
  CloudS3DataSource,
19
18
  CloudAzStorageBlobDataSource,
20
- CloudGoogleDriveDataSource,
21
19
  CloudOneDriveDataSource,
22
20
  CloudSharepointDataSource,
23
21
  CloudSlackDataSource,
@@ -5,7 +5,6 @@ import typing
5
5
  from .cloud_az_storage_blob_data_source import CloudAzStorageBlobDataSource
6
6
  from .cloud_box_data_source import CloudBoxDataSource
7
7
  from .cloud_confluence_data_source import CloudConfluenceDataSource
8
- from .cloud_google_drive_data_source import CloudGoogleDriveDataSource
9
8
  from .cloud_jira_data_source import CloudJiraDataSource
10
9
  from .cloud_notion_page_data_source import CloudNotionPageDataSource
11
10
  from .cloud_one_drive_data_source import CloudOneDriveDataSource
@@ -17,7 +16,6 @@ DataSourceCreateComponent = typing.Union[
17
16
  typing.Dict[str, typing.Any],
18
17
  CloudS3DataSource,
19
18
  CloudAzStorageBlobDataSource,
20
- CloudGoogleDriveDataSource,
21
19
  CloudOneDriveDataSource,
22
20
  CloudSharepointDataSource,
23
21
  CloudSlackDataSource,
@@ -175,6 +175,16 @@ class LegacyParseJobConfig(pydantic.BaseModel):
175
175
  system_prompt: typing.Optional[str] = pydantic.Field(alias="systemPrompt")
176
176
  system_prompt_append: typing.Optional[str] = pydantic.Field(alias="systemPromptAppend")
177
177
  user_prompt: typing.Optional[str] = pydantic.Field(alias="userPrompt")
178
+ page_header_prefix: typing.Optional[str] = pydantic.Field(alias="pageHeaderPrefix")
179
+ page_header_suffix: typing.Optional[str] = pydantic.Field(alias="pageHeaderSuffix")
180
+ page_footer_prefix: typing.Optional[str] = pydantic.Field(alias="pageFooterPrefix")
181
+ page_footer_suffix: typing.Optional[str] = pydantic.Field(alias="pageFooterSuffix")
182
+ hide_headers: typing.Optional[bool] = pydantic.Field(
183
+ alias="hideHeaders", description="Whether to hide headers in the output."
184
+ )
185
+ hide_footers: typing.Optional[bool] = pydantic.Field(
186
+ alias="hideFooters", description="Whether to hide footers in the output."
187
+ )
178
188
 
179
189
  def json(self, **kwargs: typing.Any) -> str:
180
190
  kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
@@ -39,6 +39,9 @@ class LlamaExtractSettings(pydantic.BaseModel):
39
39
  extraction_agent_config: typing.Optional[typing.Dict[str, StructParseConf]] = pydantic.Field(
40
40
  description="The configuration for the extraction agent."
41
41
  )
42
+ use_multimodal_parsing: typing.Optional[bool] = pydantic.Field(
43
+ description="Whether to use experimental multimodal parsing."
44
+ )
42
45
  use_pixel_extraction: typing.Optional[bool] = pydantic.Field(
43
46
  description="Whether to use extraction over pixels for multimodal mode."
44
47
  )
@@ -101,6 +101,12 @@ class LlamaParseParameters(pydantic.BaseModel):
101
101
  strict_mode_reconstruction: typing.Optional[bool]
102
102
  strict_mode_buggy_font: typing.Optional[bool]
103
103
  save_images: typing.Optional[bool]
104
+ hide_headers: typing.Optional[bool]
105
+ hide_footers: typing.Optional[bool]
106
+ page_header_prefix: typing.Optional[str]
107
+ page_header_suffix: typing.Optional[str]
108
+ page_footer_prefix: typing.Optional[str]
109
+ page_footer_suffix: typing.Optional[str]
104
110
  ignore_document_elements_for_layout_detection: typing.Optional[bool]
105
111
  output_tables_as_html: typing.Optional[bool] = pydantic.Field(alias="output_tables_as_HTML")
106
112
  internal_is_screenshot_job: typing.Optional[bool]
@@ -103,6 +103,12 @@ class ParseJobConfig(pydantic.BaseModel):
103
103
  strict_mode_reconstruction: typing.Optional[bool]
104
104
  strict_mode_buggy_font: typing.Optional[bool]
105
105
  save_images: typing.Optional[bool]
106
+ hide_headers: typing.Optional[bool]
107
+ hide_footers: typing.Optional[bool]
108
+ page_header_prefix: typing.Optional[str]
109
+ page_header_suffix: typing.Optional[str]
110
+ page_footer_prefix: typing.Optional[str]
111
+ page_footer_suffix: typing.Optional[str]
106
112
  ignore_document_elements_for_layout_detection: typing.Optional[bool]
107
113
  output_tables_as_html: typing.Optional[bool] = pydantic.Field(alias="output_tables_as_HTML")
108
114
  internal_is_screenshot_job: typing.Optional[bool]
@@ -5,7 +5,6 @@ import typing
5
5
  from .cloud_az_storage_blob_data_source import CloudAzStorageBlobDataSource
6
6
  from .cloud_box_data_source import CloudBoxDataSource
7
7
  from .cloud_confluence_data_source import CloudConfluenceDataSource
8
- from .cloud_google_drive_data_source import CloudGoogleDriveDataSource
9
8
  from .cloud_jira_data_source import CloudJiraDataSource
10
9
  from .cloud_notion_page_data_source import CloudNotionPageDataSource
11
10
  from .cloud_one_drive_data_source import CloudOneDriveDataSource
@@ -17,7 +16,6 @@ PipelineDataSourceComponent = typing.Union[
17
16
  typing.Dict[str, typing.Any],
18
17
  CloudS3DataSource,
19
18
  CloudAzStorageBlobDataSource,
20
- CloudGoogleDriveDataSource,
21
19
  CloudOneDriveDataSource,
22
20
  CloudSharepointDataSource,
23
21
  CloudSlackDataSource,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: llama-cloud
3
- Version: 0.1.29
3
+ Version: 0.1.30
4
4
  Summary:
5
5
  License: MIT
6
6
  Author: Logan Markewich
@@ -1,4 +1,4 @@
1
- llama_cloud/__init__.py,sha256=c0hb7KN6meETe4lv8VSgTlArJ8oMq507m4k33Wy3M1Q,25281
1
+ llama_cloud/__init__.py,sha256=J8cweD7dD1ETW9wbr9TdNztTs_GP5amLcQ64J5AfFes,25215
2
2
  llama_cloud/client.py,sha256=ylV-19129KufjzRDCoH4yARObhdUxc9vLL4kV-7fIck,6132
3
3
  llama_cloud/core/__init__.py,sha256=QJS3CJ2TYP2E1Tge0CS6Z7r8LTNzJHQVX1hD3558eP0,519
4
4
  llama_cloud/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
@@ -23,7 +23,7 @@ llama_cloud/resources/data_sinks/types/data_sink_update_component.py,sha256=EWbs
23
23
  llama_cloud/resources/data_sources/__init__.py,sha256=McURkcNBGHXH1hmRDRmZI1dRzJrekCTHZsgv03r2oZI,227
24
24
  llama_cloud/resources/data_sources/client.py,sha256=SZFm8bW5nkaXringdSnmxHqvVjKM7cNNOtqVXjgTKhc,21855
25
25
  llama_cloud/resources/data_sources/types/__init__.py,sha256=Cd5xEECTzXqQSfJALfJPSjudlSLeb3RENeJVi8vwPbM,303
26
- llama_cloud/resources/data_sources/types/data_source_update_component.py,sha256=u9sYcs3A4ZDzKjWCH3W9xIXCcLkZkVZxwoFOhEluqJU,1173
26
+ llama_cloud/resources/data_sources/types/data_source_update_component.py,sha256=OjMWPLF9hKl1gUdi9d87uW7W3ITnscphTA1_NLc2PoE,1061
27
27
  llama_cloud/resources/data_sources/types/data_source_update_custom_metadata_value.py,sha256=3aFC-p8MSxjhOu2nFtqk0pixj6RqNqcFnbOYngUdZUk,215
28
28
  llama_cloud/resources/embedding_model_configs/__init__.py,sha256=cXDtKKq-gj7yjFjdQ5GrGyPs-T5tRV_0JjUMGlAbdUs,1115
29
29
  llama_cloud/resources/embedding_model_configs/client.py,sha256=2JDvZJtSger9QJ8luPct-2zvwjaJAR8VcKsTZ1wgYTE,17769
@@ -55,7 +55,7 @@ llama_cloud/resources/llama_extract/types/extract_schema_validate_request_data_s
55
55
  llama_cloud/resources/organizations/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
56
56
  llama_cloud/resources/organizations/client.py,sha256=CdrdNdB9R-bOsNqZ4Jbm1BzG1RafXMFjuCsrVYf2OrE,56567
57
57
  llama_cloud/resources/parsing/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
58
- llama_cloud/resources/parsing/client.py,sha256=qVYN7dFAXiGTrSyZPoM-aMsHtVDuRjcgR2skjhc1bTY,86271
58
+ llama_cloud/resources/parsing/client.py,sha256=tUA6jXDoUbbu4qM-VvoUDU6BFSOZTUSfD6lz7wfCqnA,87707
59
59
  llama_cloud/resources/pipelines/__init__.py,sha256=zyvVEOF_krvEZkCIj_kZoMKfhDqHo_R32a1mv9CriQc,1193
60
60
  llama_cloud/resources/pipelines/client.py,sha256=BcBqzTPu1LUsdimXvuaaKjUu6w5xjbL-ZBfWsO183Vk,132360
61
61
  llama_cloud/resources/pipelines/types/__init__.py,sha256=C68NQ5QzA0dFXf9oePFFGmV1vn96jcAp-QAznSgoRYQ,1375
@@ -73,7 +73,7 @@ llama_cloud/resources/responses/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_
73
73
  llama_cloud/resources/responses/client.py,sha256=ard4U9yZcD89pJ_hyYqeRDIfQYaX2WGl36OK7re8q3U,5481
74
74
  llama_cloud/resources/retrievers/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
75
75
  llama_cloud/resources/retrievers/client.py,sha256=z2LhmA-cZVFzr9P6loeCZYnJbvSIk0QitFeVFp-IyZk,32126
76
- llama_cloud/types/__init__.py,sha256=tXFGxcZWipC_PE9wpPgtXWvtcHbT0VnZCQSP4jNo-H8,30079
76
+ llama_cloud/types/__init__.py,sha256=AN53ky-a7dob2L_8xPRUSyS75IGy5MZqT8-7k85ASIs,29974
77
77
  llama_cloud/types/advanced_mode_transform_config.py,sha256=4xCXye0_cPmVS1F8aNTx81sIaEPjQH9kiCCAIoqUzlI,1502
78
78
  llama_cloud/types/advanced_mode_transform_config_chunking_config.py,sha256=wYbJnWLpeQDfhmDZz-wJfYzD1iGT5Jcxb9ga3mzUuvk,1983
79
79
  llama_cloud/types/advanced_mode_transform_config_segmentation_config.py,sha256=anNGq0F5-IlbIW3kpC8OilzLJnUq5tdIcWHnRnmlYsg,1303
@@ -108,7 +108,6 @@ llama_cloud/types/cloud_box_data_source.py,sha256=9bffCaKGvctSsk9OdTpzzP__O1NDpb
108
108
  llama_cloud/types/cloud_confluence_data_source.py,sha256=ok8BOv51SC4Ia9kX3DC8LuZjnP8hmdy-vqzOrTZek2A,1720
109
109
  llama_cloud/types/cloud_document.py,sha256=Rg_H8lcz2TzxEAIdU-m5mGpkM7s0j1Cn4JHkXYddmGs,1255
110
110
  llama_cloud/types/cloud_document_create.py,sha256=fQ1gZAtLCpr-a-sPbMez_5fK9JMU3uyp2tNvIzWNG3U,1278
111
- llama_cloud/types/cloud_google_drive_data_source.py,sha256=Gzr9vtw57Hl2hxa9qoWdIO6XO3DfSLvivJbABVQDJDQ,1219
112
111
  llama_cloud/types/cloud_jira_data_source.py,sha256=9R20k8Ne0Bl9X5dgSxpM_IGOFmC70Llz0pJ93rAKRvw,1458
113
112
  llama_cloud/types/cloud_milvus_vector_store.py,sha256=CHFTJSYPZKYPUU-jpB1MG8OwRvnPiT07o7cYCvQMZLA,1235
114
113
  llama_cloud/types/cloud_mongo_db_atlas_vector_search.py,sha256=CQ9euGBd3a72dvpTapRBhakme-fQbY2OaSoe0GDSHDo,1771
@@ -134,9 +133,9 @@ llama_cloud/types/data_sink_component.py,sha256=uvuxLY3MPDpv_bkT0y-tHSZVPRSHCkDB
134
133
  llama_cloud/types/data_sink_create.py,sha256=dAaFPCwZ5oX0Fbf7ij62dzSaYnrhj3EHmnLnYnw2KgI,1360
135
134
  llama_cloud/types/data_sink_create_component.py,sha256=8QfNKSTJV_sQ0nJxlpfh0fBkMTSnQD1DTJR8ZMYaesI,755
136
135
  llama_cloud/types/data_source.py,sha256=4_lTRToLO4u9LYK66VygCPycrZuyct_aiovlxG5H2sE,1768
137
- llama_cloud/types/data_source_component.py,sha256=yfXHoeHaqUMum7fIs3tZB0pOFMhDbAq7oCJtnob0gWY,1077
136
+ llama_cloud/types/data_source_component.py,sha256=QBxAneOFe8crS0z-eFo3gd1siToQ4hYsLdfB4p3ZeVU,974
138
137
  llama_cloud/types/data_source_create.py,sha256=s0bAX_GUwiRdrL-PXS9ROrvq3xpmqbqzdMa6thqL2P4,1581
139
- llama_cloud/types/data_source_create_component.py,sha256=-P4FGv9Xg951n-77_bb-2_CF-33ZXcUkw52LPQNunBY,1083
138
+ llama_cloud/types/data_source_create_component.py,sha256=6dlkvut0gyy6JA_F4--xPHYOCHi14N6oooWOnOEugzE,980
140
139
  llama_cloud/types/data_source_create_custom_metadata_value.py,sha256=ejSsQNbszYQaUWFh9r9kQpHf88qbhuRv1SI9J_MOSC0,215
141
140
  llama_cloud/types/data_source_custom_metadata_value.py,sha256=pTZn5yjZYmuOhsLABFJOKZblZUkRqo1CqLAuP5tKji4,209
142
141
  llama_cloud/types/data_source_update_dispatcher_config.py,sha256=Sh6HhXfEV2Z6PYhkYQucs2MxyKVpL3UPV-I4cbf--bA,1242
@@ -204,13 +203,13 @@ llama_cloud/types/job_record.py,sha256=Z6sF9AruZJo-kTRgNufAWS3WK1yaEqop6kox1GpBY
204
203
  llama_cloud/types/job_record_parameters.py,sha256=Oqxp5y0owPfjLc_NR7AYE8P3zM2PJo36N9olbyNl7AA,3425
205
204
  llama_cloud/types/job_record_with_usage_metrics.py,sha256=iNV2do5TB_0e3PoOz_DJyAaM6Cn9G8KG-dGPGgEs5SY,1198
206
205
  llama_cloud/types/l_lama_parse_transform_config.py,sha256=YQRJZvKh1Ee2FUyW_N0nqYJoW599qBgH3JCH9SH6YLo,1249
207
- llama_cloud/types/legacy_parse_job_config.py,sha256=9NdRkGkUhDkJBMDBvBDmhq_Mkf6bSROrtECVpttlD8k,11878
206
+ llama_cloud/types/legacy_parse_job_config.py,sha256=5l1ZT0n2UTX5t45ePjZZ07RkQNUg5E6n0Xb1gz_CzxE,12522
208
207
  llama_cloud/types/license_info_response.py,sha256=fE9vcWO8k92SBqb_wOyBu_16C61s72utA-SifEi9iBc,1192
209
- llama_cloud/types/llama_extract_settings.py,sha256=bHtF5AD0r896-248e7WKthcbbvrAUdptZrENP2Ed4LM,2388
208
+ llama_cloud/types/llama_extract_settings.py,sha256=Y60XxsxVHUtX-ZjC0tyNzsaDIj_ojxYC1iy2w4vti54,2532
210
209
  llama_cloud/types/llama_index_core_base_llms_types_chat_message.py,sha256=tF54vcCwjArHWozzC81bCZfI4gJBmhnx6s592VoQ5UM,1452
211
210
  llama_cloud/types/llama_index_core_base_llms_types_chat_message_blocks_item.py,sha256=-aL8fh-w2Xf4uQs_LHzb3q6LL_onLAcVzCR5yMI4qJw,1571
212
211
  llama_cloud/types/llama_index_core_base_llms_types_message_role.py,sha256=i8G2QGRrEUmb1P9BrKW3frfTOQ9RlJvMU0FMCRNpE5c,1602
213
- llama_cloud/types/llama_parse_parameters.py,sha256=-U3T_hM--Le35YU6b4lwv_1QG5agy8-Ib9N1DuSnQYs,6000
212
+ llama_cloud/types/llama_parse_parameters.py,sha256=SiSqreBFW5hGf7gVuXdITwW1ugxv03L5VpNQqoeI6Pk,6260
214
213
  llama_cloud/types/llama_parse_parameters_priority.py,sha256=EFRudtaID_s8rLKlfW8O8O9TDbpZdniIidK-xchhfRI,830
215
214
  llama_cloud/types/llama_parse_supported_file_extensions.py,sha256=B_0N3f8Aq59W9FbsH50mGBUiyWTIXQjHFl739uAyaQw,11207
216
215
  llama_cloud/types/llm_model_data.py,sha256=6rrycqGwlK3LZ2S-WtgmeomithdLhDCgwBBZQ5KLaso,1300
@@ -243,7 +242,7 @@ llama_cloud/types/paginated_jobs_history_with_metrics.py,sha256=Bxy6N0x0FARJhgwN
243
242
  llama_cloud/types/paginated_list_cloud_documents_response.py,sha256=MsjS0SWlT0syELDck4x2sxxR3_NC1e6QTdepgVmK9aY,1341
244
243
  llama_cloud/types/paginated_list_pipeline_files_response.py,sha256=2TKR2oHSQRyLMqWz1qQBSIvz-ZJb8U_94367lwOJ2S4,1317
245
244
  llama_cloud/types/paginated_report_response.py,sha256=o79QhQi9r0HZZrhvRlA6WGjxtyPuxN0xONhwXSwxtcs,1104
246
- llama_cloud/types/parse_job_config.py,sha256=sTgkLHhV-FMcf6pfhFpOEHOUQQqw-g8PDNcekDQ86Fo,6463
245
+ llama_cloud/types/parse_job_config.py,sha256=MuP202tVYpLxtHvobcCzMog348ACahqGdD4z1PHjd6o,6723
247
246
  llama_cloud/types/parse_job_config_priority.py,sha256=__-gVv1GzktVCYZVyl6zeDt0pAZwYl-mxM0xkIHPEro,800
248
247
  llama_cloud/types/parse_plan_level.py,sha256=GBkDS19qfHseBa17EXfuTPNT4GNv5alyPrWEvWji3GY,528
249
248
  llama_cloud/types/parser_languages.py,sha256=Ps3IlaSt6tyxEI657N3-vZL96r2puk8wsf31cWnO-SI,10840
@@ -265,7 +264,7 @@ llama_cloud/types/pipeline_create.py,sha256=PKchM5cxkidXVFv2qON0uVh5lv8aqsy5OrZv
265
264
  llama_cloud/types/pipeline_create_embedding_config.py,sha256=PQqmVBFUyZXYKKBmVQF2zPsGp1L6rje6g3RtXEcdfc8,2811
266
265
  llama_cloud/types/pipeline_create_transform_config.py,sha256=HP6tzLsw_pomK1Ye2PYCS_XDZK_TMgg22mz17_zYKFg,303
267
266
  llama_cloud/types/pipeline_data_source.py,sha256=g8coq6ohp09TtqzvB3_A8Nzery3J5knIfxGWzUtozmg,2381
268
- llama_cloud/types/pipeline_data_source_component.py,sha256=c_R2aBl7XXsfJ_ZuK_-PXzzL2nDI4jrbJ0BStlzp87Y,1085
267
+ llama_cloud/types/pipeline_data_source_component.py,sha256=pcAIb6xuRJajDVBF_a4_2USPLtZ8ve-WQvSdKKQu50Q,982
269
268
  llama_cloud/types/pipeline_data_source_create.py,sha256=wMsymqB-YGyf3jdQr-N5ODVG6v0w68EMxGBNdQXeJe0,1178
270
269
  llama_cloud/types/pipeline_data_source_custom_metadata_value.py,sha256=8n3r60sxMx4_udW0yzJZxzyWeK6L3cc2-jLGZFW4EDs,217
271
270
  llama_cloud/types/pipeline_data_source_status.py,sha256=BD4xoftwp9lWC8EjJTnf3boIG_AyzjLPuP4qJxGhmcc,1039
@@ -354,7 +353,7 @@ llama_cloud/types/vertex_embedding_mode.py,sha256=yY23FjuWU_DkXjBb3JoKV4SCMqel2B
354
353
  llama_cloud/types/vertex_text_embedding.py,sha256=-C4fNCYfFl36ATdBMGFVPpiHIKxjk0KB1ERA2Ec20aU,1932
355
354
  llama_cloud/types/webhook_configuration.py,sha256=_Xm15whrWoKNBuCoO5y_NunA-ByhCAYK87LnC4W-Pzg,1350
356
355
  llama_cloud/types/webhook_configuration_webhook_events_item.py,sha256=LTfOwphnoYUQYwsHGTlCxoVU_PseIRAbmQJRBdyXnbg,1519
357
- llama_cloud-0.1.29.dist-info/LICENSE,sha256=_iNqtPcw1Ue7dZKwOwgPtbegMUkWVy15hC7bffAdNmY,1067
358
- llama_cloud-0.1.29.dist-info/METADATA,sha256=6yOwKuEn6gMPGcWviE_L-LI5gY4g5n4bAB0PUZQINLc,1194
359
- llama_cloud-0.1.29.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
360
- llama_cloud-0.1.29.dist-info/RECORD,,
356
+ llama_cloud-0.1.30.dist-info/LICENSE,sha256=_iNqtPcw1Ue7dZKwOwgPtbegMUkWVy15hC7bffAdNmY,1067
357
+ llama_cloud-0.1.30.dist-info/METADATA,sha256=uHG2_pSkr7dmrXGGSTKO11eIshFPn2ke4kEW2aq0Kgc,1194
358
+ llama_cloud-0.1.30.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
359
+ llama_cloud-0.1.30.dist-info/RECORD,,
@@ -1,34 +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 CloudGoogleDriveDataSource(pydantic.BaseModel):
18
- supports_access_control: typing.Optional[bool]
19
- folder_id: str = pydantic.Field(description="The ID of the Google Drive folder to read from.")
20
- service_account_key: typing.Optional[typing.Dict[str, typing.Any]]
21
- class_name: typing.Optional[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}