llama-cloud 0.0.10__py3-none-any.whl → 0.0.12__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 (57) hide show
  1. llama_cloud/__init__.py +82 -6
  2. llama_cloud/client.py +3 -0
  3. llama_cloud/resources/__init__.py +13 -2
  4. llama_cloud/resources/auth/__init__.py +2 -0
  5. llama_cloud/resources/auth/client.py +124 -0
  6. llama_cloud/resources/data_sinks/types/data_sink_update_component_one.py +4 -0
  7. llama_cloud/resources/extraction/__init__.py +2 -2
  8. llama_cloud/resources/extraction/client.py +139 -48
  9. llama_cloud/resources/extraction/types/__init__.py +2 -1
  10. llama_cloud/resources/extraction/types/extraction_schema_create_data_schema_value.py +7 -0
  11. llama_cloud/resources/pipelines/__init__.py +12 -2
  12. llama_cloud/resources/pipelines/client.py +58 -2
  13. llama_cloud/resources/pipelines/types/__init__.py +11 -1
  14. llama_cloud/resources/pipelines/types/pipeline_update_transform_config.py +31 -0
  15. llama_cloud/types/__init__.py +78 -6
  16. llama_cloud/types/advanced_mode_transform_config.py +38 -0
  17. llama_cloud/types/advanced_mode_transform_config_chunking_config.py +67 -0
  18. llama_cloud/types/advanced_mode_transform_config_segmentation_config.py +45 -0
  19. llama_cloud/types/auto_transform_config.py +32 -0
  20. llama_cloud/types/character_chunking_config.py +32 -0
  21. llama_cloud/types/{html_node_parser.py → character_splitter.py} +9 -9
  22. llama_cloud/types/chat_data.py +2 -0
  23. llama_cloud/types/cloud_az_storage_blob_data_source.py +11 -2
  24. llama_cloud/types/{simple_file_node_parser.py → cloud_milvus_vector_store.py} +7 -14
  25. llama_cloud/types/cloud_mongo_db_atlas_vector_search.py +51 -0
  26. llama_cloud/types/configurable_data_sink_names.py +8 -0
  27. llama_cloud/types/configurable_transformation_names.py +8 -12
  28. llama_cloud/types/configured_transformation_item_component_one.py +4 -6
  29. llama_cloud/types/custom_claims.py +61 -0
  30. llama_cloud/types/data_sink_component_one.py +4 -0
  31. llama_cloud/types/data_sink_create_component_one.py +4 -0
  32. llama_cloud/types/element_segmentation_config.py +29 -0
  33. llama_cloud/types/embedding_config.py +36 -0
  34. llama_cloud/types/embedding_config_component.py +7 -0
  35. llama_cloud/types/embedding_config_component_one.py +19 -0
  36. llama_cloud/types/embedding_config_type.py +41 -0
  37. llama_cloud/types/eval_dataset_job_record.py +1 -0
  38. llama_cloud/types/ingestion_error_response.py +34 -0
  39. llama_cloud/types/job_name_mapping.py +45 -0
  40. llama_cloud/types/llama_parse_supported_file_extensions.py +32 -0
  41. llama_cloud/types/llm_parameters.py +39 -0
  42. llama_cloud/types/managed_ingestion_status_response.py +6 -0
  43. llama_cloud/types/none_chunking_config.py +29 -0
  44. llama_cloud/types/none_segmentation_config.py +29 -0
  45. llama_cloud/types/page_segmentation_config.py +29 -0
  46. llama_cloud/types/{json_node_parser.py → page_splitter_node_parser.py} +3 -8
  47. llama_cloud/types/parsing_job.py +2 -0
  48. llama_cloud/types/pipeline_create.py +8 -0
  49. llama_cloud/types/pipeline_create_transform_config.py +31 -0
  50. llama_cloud/types/semantic_chunking_config.py +32 -0
  51. llama_cloud/types/sentence_chunking_config.py +34 -0
  52. llama_cloud/types/token_chunking_config.py +33 -0
  53. llama_cloud/types/user.py +35 -0
  54. {llama_cloud-0.0.10.dist-info → llama_cloud-0.0.12.dist-info}/METADATA +1 -1
  55. {llama_cloud-0.0.10.dist-info → llama_cloud-0.0.12.dist-info}/RECORD +57 -30
  56. {llama_cloud-0.0.10.dist-info → llama_cloud-0.0.12.dist-info}/LICENSE +0 -0
  57. {llama_cloud-0.0.10.dist-info → llama_cloud-0.0.12.dist-info}/WHEEL +0 -0
@@ -6,8 +6,10 @@ import typing
6
6
  from ..core.datetime_utils import serialize_datetime
7
7
  from .configured_transformation_item import ConfiguredTransformationItem
8
8
  from .data_sink_create import DataSinkCreate
9
+ from .embedding_config import EmbeddingConfig
9
10
  from .eval_execution_params import EvalExecutionParams
10
11
  from .llama_parse_parameters import LlamaParseParameters
12
+ from .pipeline_create_transform_config import PipelineCreateTransformConfig
11
13
  from .pipeline_type import PipelineType
12
14
  from .preset_retrieval_params import PresetRetrievalParams
13
15
 
@@ -25,6 +27,12 @@ class PipelineCreate(pydantic.BaseModel):
25
27
  Schema for creating a pipeline.
26
28
  """
27
29
 
30
+ embedding_config: typing.Optional[EmbeddingConfig] = pydantic.Field(
31
+ description="Configuration for the embedding model."
32
+ )
33
+ transform_config: typing.Optional[PipelineCreateTransformConfig] = pydantic.Field(
34
+ description="Configuration for the transformation."
35
+ )
28
36
  configured_transformations: typing.Optional[typing.List[ConfiguredTransformationItem]] = pydantic.Field(
29
37
  description="List of configured transformations."
30
38
  )
@@ -0,0 +1,31 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ from __future__ import annotations
4
+
5
+ import typing
6
+
7
+ import typing_extensions
8
+
9
+ from .advanced_mode_transform_config import AdvancedModeTransformConfig
10
+ from .auto_transform_config import AutoTransformConfig
11
+
12
+
13
+ class PipelineCreateTransformConfig_Auto(AutoTransformConfig):
14
+ mode: typing_extensions.Literal["auto"]
15
+
16
+ class Config:
17
+ frozen = True
18
+ smart_union = True
19
+ allow_population_by_field_name = True
20
+
21
+
22
+ class PipelineCreateTransformConfig_Advanced(AdvancedModeTransformConfig):
23
+ mode: typing_extensions.Literal["advanced"]
24
+
25
+ class Config:
26
+ frozen = True
27
+ smart_union = True
28
+ allow_population_by_field_name = True
29
+
30
+
31
+ PipelineCreateTransformConfig = typing.Union[PipelineCreateTransformConfig_Auto, PipelineCreateTransformConfig_Advanced]
@@ -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 SemanticChunkingConfig(pydantic.BaseModel):
18
+ buffer_size: typing.Optional[int]
19
+ breakpoint_percentile_threshold: typing.Optional[int]
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}
@@ -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 SentenceChunkingConfig(pydantic.BaseModel):
18
+ chunk_size: typing.Optional[int]
19
+ chunk_overlap: typing.Optional[int]
20
+ separator: typing.Optional[str]
21
+ paragraph_separator: 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}
@@ -0,0 +1,33 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import datetime as dt
4
+ import typing
5
+
6
+ from ..core.datetime_utils import serialize_datetime
7
+
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 TokenChunkingConfig(pydantic.BaseModel):
18
+ chunk_size: typing.Optional[int]
19
+ chunk_overlap: typing.Optional[int]
20
+ separator: typing.Optional[str]
21
+
22
+ def json(self, **kwargs: typing.Any) -> str:
23
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
24
+ return super().json(**kwargs_with_defaults)
25
+
26
+ def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
27
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
28
+ return super().dict(**kwargs_with_defaults)
29
+
30
+ class Config:
31
+ frozen = True
32
+ smart_union = True
33
+ json_encoders = {dt.datetime: serialize_datetime}
@@ -0,0 +1,35 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import datetime as dt
4
+ import typing
5
+
6
+ from ..core.datetime_utils import serialize_datetime
7
+ from .custom_claims import CustomClaims
8
+
9
+ try:
10
+ import pydantic
11
+ if pydantic.__version__.startswith("1."):
12
+ raise ImportError
13
+ import pydantic.v1 as pydantic # type: ignore
14
+ except ImportError:
15
+ import pydantic # type: ignore
16
+
17
+
18
+ class User(pydantic.BaseModel):
19
+ id: str
20
+ email: str
21
+ name: typing.Optional[str] = pydantic.Field(description="The user's name.")
22
+ claims: typing.Optional[CustomClaims] = pydantic.Field(description="The user's custom claims.")
23
+
24
+ def json(self, **kwargs: typing.Any) -> str:
25
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
26
+ return super().json(**kwargs_with_defaults)
27
+
28
+ def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
29
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
30
+ return super().dict(**kwargs_with_defaults)
31
+
32
+ class Config:
33
+ frozen = True
34
+ smart_union = True
35
+ json_encoders = {dt.datetime: serialize_datetime}
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: llama-cloud
3
- Version: 0.0.10
3
+ Version: 0.0.12
4
4
  Summary:
5
5
  Author: Logan Markewich
6
6
  Author-email: logan@runllama.ai
@@ -1,5 +1,5 @@
1
- llama_cloud/__init__.py,sha256=iwA_KYHvKDW9C5OqOs1DW4UOBpV2sG2Jqfgf2ihV8wc,8525
2
- llama_cloud/client.py,sha256=bhZPiYd1TQSn3PRgHZ66MgMnBneG4Skc9g6UsT0wQnE,4299
1
+ llama_cloud/__init__.py,sha256=nCOIz8gk2isrjwjdbu_xvYjuGsUyAwCRPvWVii6Qeo8,11331
2
+ llama_cloud/client.py,sha256=kITbWAZl-xw19xv9ouSiT1wQ1i7yWHhNG5XDTjb-EVc,4503
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,14 +9,16 @@ 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=DCmiYR81K2DZKpNUZDPG5Tb2DcDNNZf2NbOcoB1_Ndw,1105
12
+ llama_cloud/resources/__init__.py,sha256=NSJNbk10uOIEVT6mgZts5OxyrvK2KJli-hqALbJ_VvQ,1464
13
+ llama_cloud/resources/auth/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
14
+ llama_cloud/resources/auth/client.py,sha256=kUfPUIXNS95MBKsknEvdqsDojlVJfVnxmHkAaiYVxCY,4560
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=nsMEyxkVilxvQGSdJi0Z0yKZoTaTWewZIGJNoMwNDsw,205
16
18
  llama_cloud/resources/data_sinks/client.py,sha256=upViKGrwZfRM-BZqMjfWEaEeI8YxThVgr4P9SCH065E,20431
17
19
  llama_cloud/resources/data_sinks/types/__init__.py,sha256=M9AO57_TUUgjUcGOhxcROql5U7UbJDbEm7aQj3YqU2I,269
18
20
  llama_cloud/resources/data_sinks/types/data_sink_update_component.py,sha256=TjBOpvPvUIyi-NT1Gv1vShMoe-jzDKc8UYaFfo7XOO8,249
19
- llama_cloud/resources/data_sinks/types/data_sink_update_component_one.py,sha256=oKhxFbWP2ag1HYWf2xlp-b8b65_3q7EDj_dpvieUb58,761
21
+ llama_cloud/resources/data_sinks/types/data_sink_update_component_one.py,sha256=4O7ffz4LiffnqVnddb15r7xuYt7G9kUn67NZdWdwizc,982
20
22
  llama_cloud/resources/data_sources/__init__.py,sha256=CCs8ur4fvszPjy0GpTWmMjUAx0WykNgKDKFDNbkYLeM,289
21
23
  llama_cloud/resources/data_sources/client.py,sha256=uxM67CtKYSexXeKxuHojlbLR7YkqQueRYIrhSLc6Pqs,21915
22
24
  llama_cloud/resources/data_sources/types/__init__.py,sha256=iOdDXvAM6w80PR62JCscsTOwzDIXHHcG_Ypv18DEdic,410
@@ -25,9 +27,10 @@ llama_cloud/resources/data_sources/types/data_source_update_component_one.py,sha
25
27
  llama_cloud/resources/data_sources/types/data_source_update_custom_metadata_value.py,sha256=3aFC-p8MSxjhOu2nFtqk0pixj6RqNqcFnbOYngUdZUk,215
26
28
  llama_cloud/resources/evals/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
27
29
  llama_cloud/resources/evals/client.py,sha256=P0NmQPRu606DZ2U-RKZRgh25BMriWyKGB77X0Dfe4q0,27603
28
- llama_cloud/resources/extraction/__init__.py,sha256=Q4-qd3ywXqa_GOSxstVJJccHnJGAfKxz2FYLXYeiyWs,175
29
- llama_cloud/resources/extraction/client.py,sha256=VQXFKLI5NalLpYui8REgqhN0_xLezrKbrTSjaCAxZ3A,27212
30
- llama_cloud/resources/extraction/types/__init__.py,sha256=GgKhbek1WvvnoXgiB0XeSOAX3W94honf5HzL3gvtAEc,212
30
+ llama_cloud/resources/extraction/__init__.py,sha256=trseRsayeGiyGThI4s_Folw5AHmdTSEP3KPrlvNhfVw,255
31
+ llama_cloud/resources/extraction/client.py,sha256=iYYBliMeMtExllJXV0FLeGz46Gc88Ksmk_8vk1TrAzg,31012
32
+ llama_cloud/resources/extraction/types/__init__.py,sha256=ePJKSJ6hGIsPnfpe0Sp5w4mBZgnZes4cdtZ8Gfw81Gc,347
33
+ llama_cloud/resources/extraction/types/extraction_schema_create_data_schema_value.py,sha256=igTdUjMeB-PI5xKrloRKHY-EvL6_V8OLshABu6Dyx4A,217
31
34
  llama_cloud/resources/extraction/types/extraction_schema_update_data_schema_value.py,sha256=z_4tkLkWnHnd3Xa9uUctk9hG9Mo7GKU4dK4s2pm8qow,217
32
35
  llama_cloud/resources/files/__init__.py,sha256=aZpyTj6KpZvA5XVwmuo1sIlRs7ba98btxVBZ6j5vIsI,155
33
36
  llama_cloud/resources/files/client.py,sha256=pU7ugpqW4dAXJycVg3KxUI82ixiH6vZtcwAaHyPdsDA,22186
@@ -37,26 +40,35 @@ llama_cloud/resources/organizations/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRY
37
40
  llama_cloud/resources/organizations/client.py,sha256=akn_3sytJW_VhuLVBbP0TKiKKbBGuuAPDtGVIbW4kdA,34167
38
41
  llama_cloud/resources/parsing/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
39
42
  llama_cloud/resources/parsing/client.py,sha256=fLNVNa945yP76sTf6NdSm5ikifSFFrjxxHXy0vwNBUc,40450
40
- llama_cloud/resources/pipelines/__init__.py,sha256=H7yaFIN62vjuhU3TOKzzuf8qpxZRgw1xVa-eyig-2YU,175
41
- llama_cloud/resources/pipelines/client.py,sha256=HlWhqcZUKosmkhBuDgj-ocRKGpsN4tJRHa3KnKbaZZY,125040
42
- llama_cloud/resources/pipelines/types/__init__.py,sha256=xuT4OBPLrRfEe-E3UVdJvRjl9jTp7tNBK_YzZBb6Kj8,212
43
+ llama_cloud/resources/pipelines/__init__.py,sha256=qhTSfZXEvZ1UZWqRiwqVk3Dq541mvzV93R9jdbQilGw,435
44
+ llama_cloud/resources/pipelines/client.py,sha256=q44JF3VC7C__tM7stWqWcIlQ9IWOijRAjiNjL9cBHhk,127688
45
+ llama_cloud/resources/pipelines/types/__init__.py,sha256=phHeTm9cC0tWi4fgrfrjsLAt-UBl1GwcThcSo26vTac,513
43
46
  llama_cloud/resources/pipelines/types/pipeline_file_update_custom_metadata_value.py,sha256=trI48WLxPcAqV9207Q6-3cj1nl4EGlZpw7En56ZsPgg,217
47
+ llama_cloud/resources/pipelines/types/pipeline_update_transform_config.py,sha256=QhoTMm88VYbc9EktYuA8qhbUFqwIpHmO5LhML7Z4Sjk,872
44
48
  llama_cloud/resources/projects/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
45
49
  llama_cloud/resources/projects/client.py,sha256=nK81HdhGbWY1rh8rSEsKzRuvyvCQ-IkhLHIPDqEqVFU,47754
46
- llama_cloud/types/__init__.py,sha256=LXj40Rz1FVHxAyWgl2Wp7FcleeQq_sHeaz1vYlto4AQ,11634
50
+ llama_cloud/types/__init__.py,sha256=xSVdNFtS5JrUR-YkA1sCMfxAPsWqwjCh0v66foyyvA8,14899
51
+ llama_cloud/types/advanced_mode_transform_config.py,sha256=4xCXye0_cPmVS1F8aNTx81sIaEPjQH9kiCCAIoqUzlI,1502
52
+ llama_cloud/types/advanced_mode_transform_config_chunking_config.py,sha256=wYbJnWLpeQDfhmDZz-wJfYzD1iGT5Jcxb9ga3mzUuvk,1983
53
+ llama_cloud/types/advanced_mode_transform_config_segmentation_config.py,sha256=anNGq0F5-IlbIW3kpC8OilzLJnUq5tdIcWHnRnmlYsg,1303
54
+ llama_cloud/types/auto_transform_config.py,sha256=HVeHZM75DMRznScqLTfrMwcZwIdyWPuaEYbPewnHqwc,1168
47
55
  llama_cloud/types/azure_open_ai_embedding.py,sha256=-9LzRDNcxhRvEshA8SaI9zFMTpHLXJ34iMnpIVk88Cc,3590
48
56
  llama_cloud/types/base.py,sha256=cn_Zn61yLMDCMm1iZTPvKILSRlqRzOqZtSYyYBY5dIE,938
49
57
  llama_cloud/types/base_prompt_template.py,sha256=GO9k4EDVMf3gRQIA4bVfXqgIMKnKTXhi1JlGvhqXDRY,1576
50
58
  llama_cloud/types/bedrock_embedding.py,sha256=RbECq-DxfbizAWpgUN4QIandJ-bGmgFug2EQH6LPHP0,2627
51
- llama_cloud/types/chat_data.py,sha256=J4a86csaMxg_TB6VhioW9d41b2j0Pha_Iq82im-hDfA,1263
59
+ llama_cloud/types/character_chunking_config.py,sha256=2ooAnrlVVbKj4nDi_lR66x5E6nWOmj5YDWhSMQD0ubc,1035
60
+ llama_cloud/types/character_splitter.py,sha256=tA8Eob62cs3geVMVkFvDp17nxijYVUQyjpvV0wGyLpQ,1969
61
+ llama_cloud/types/chat_data.py,sha256=tCZAqgfF5IAElLD9hDRrSzG5-nh_gnJkDm2B-gIg8bg,1356
52
62
  llama_cloud/types/chat_message.py,sha256=DNzACxFUJxIHHo74j0e0DSz_1BBgykqfMPekiGCheFo,1168
53
- llama_cloud/types/cloud_az_storage_blob_data_source.py,sha256=SzwYuN3evb6VxW6uHjPeTZFHXYg_3iq3TS-BK6BLdog,1758
63
+ llama_cloud/types/cloud_az_storage_blob_data_source.py,sha256=T4zqGF2KUoJ3g9sQbVcmJI2Rae5tvsUm0ML0Lvh8JMU,2196
54
64
  llama_cloud/types/cloud_azure_ai_search_vector_store.py,sha256=PlkvzRM7WFNQBxsrhC81Rmm5kVK3rNaOLAYe14L8BzE,1401
55
65
  llama_cloud/types/cloud_chroma_vector_store.py,sha256=-PKWkXWRpypeVy6nSbFDDkypdBgHgeqsXtfjGKygjXM,1388
56
66
  llama_cloud/types/cloud_confluence_data_source.py,sha256=jLV9bytO2u-Nhn9-HG95TI3xz1934jzPyPOGE_j0h9A,1926
57
67
  llama_cloud/types/cloud_document.py,sha256=VJBsYh0OLThzUYfQQE2DZjaMLoyjxCWda8o_ePfGj5Y,1201
58
68
  llama_cloud/types/cloud_document_create.py,sha256=F_Zy1Au9Ta1D19Zy1DBmnKIyqqE2TUpzuakHSKn0C-M,1224
59
69
  llama_cloud/types/cloud_jira_data_source.py,sha256=chvMhR253mgLAslxvCsS7T7UBM97i0XFjjtx6pfv8Ts,1732
70
+ llama_cloud/types/cloud_milvus_vector_store.py,sha256=CHFTJSYPZKYPUU-jpB1MG8OwRvnPiT07o7cYCvQMZLA,1235
71
+ llama_cloud/types/cloud_mongo_db_atlas_vector_search.py,sha256=R-3zF5aH1PvkhXpGLGCFdfgS6Ehey8iYQFX6N0GZNA8,1725
60
72
  llama_cloud/types/cloud_notion_page_data_source.py,sha256=XMbp5dbcR3uTwamV8JlXYk_2UteNJUbvH43caVE0A48,1397
61
73
  llama_cloud/types/cloud_one_drive_data_source.py,sha256=anI5y6si0PtrEiN9kTxF0UplDFHr-_yhL373fToUkdg,1686
62
74
  llama_cloud/types/cloud_pinecone_vector_store.py,sha256=UyCFAawIDnmPAmTcWjrFCKatypqc4cC4LpuAUOsyzUc,1647
@@ -68,19 +80,20 @@ llama_cloud/types/cloud_slack_data_source.py,sha256=nj6atJkUYfHauWDBXol3WcDxPhDq
68
80
  llama_cloud/types/cloud_weaviate_vector_store.py,sha256=D9ZKG9kpZyoncNCxD49e3RURYrI5tieZroPcTaJGE20,1309
69
81
  llama_cloud/types/code_splitter.py,sha256=TMfGeunLMJagX3lvxr76nhosD48Reu4CexVzpU_03Rg,1971
70
82
  llama_cloud/types/cohere_embedding.py,sha256=qpF6fMm5z5YGc47RfLUM9XPsHbYNRlhSlrBe-9OotHA,1969
71
- llama_cloud/types/configurable_data_sink_names.py,sha256=fBTSuuVsKdxguFI03_aA8CDQxV0NERsse6fiw8Dq7A4,1237
83
+ llama_cloud/types/configurable_data_sink_names.py,sha256=Cue3CIK0jXSOlbQ2Z44tyDW1fpObzbXiCe0zilxt7Xk,1572
72
84
  llama_cloud/types/configurable_data_source_names.py,sha256=NrkTdTVUEjb4nrLlmZP2Piko70jToGRAxR2MPs3kEzA,1689
73
85
  llama_cloud/types/configurable_transformation_definition.py,sha256=LDOhI5IDxlLDWM_p_xwCFM7qq1y-aGA8UxN7dnplDlU,1886
74
- llama_cloud/types/configurable_transformation_names.py,sha256=-cF3wGNtTM6RCoOnm9YDBgUGnHHLXw_eyq6GSSB2Tpk,3402
86
+ llama_cloud/types/configurable_transformation_names.py,sha256=tQ8x9-NVisUd-I5vkY1Y_edNHM9pRjQ5cw0POjXUS2E,3216
75
87
  llama_cloud/types/configured_transformation_item.py,sha256=9caK5ZOKgGCZc6ynJJIWwpxpScKHOHkZwHFlsBy-Fog,1826
76
88
  llama_cloud/types/configured_transformation_item_component.py,sha256=RXQ1Ed2HlqQ-V7RSDA9sndPBbJUhwfczVpCWHRKQigY,311
77
- llama_cloud/types/configured_transformation_item_component_one.py,sha256=FpyNHnw1wxruvL7GSKmT6cDEbO_L9nxx93XA_OQM7zA,1209
89
+ llama_cloud/types/configured_transformation_item_component_one.py,sha256=yO_3dv2u0i0RQI_ODrEpPx9aJpMTuqrUKhmDJUbfehU,1158
90
+ llama_cloud/types/custom_claims.py,sha256=BxiBjlyUrJE_WhWrC9U1itsQnXSy4KGFyguVLlkhYLE,2706
78
91
  llama_cloud/types/data_sink.py,sha256=11LlzUEMkgT-20OsMlvZYgbOnOvtxD4Y0NGyiVpP1_M,1524
79
92
  llama_cloud/types/data_sink_component.py,sha256=AMOlCar00ApJarc4sEVqYGoPWqjuiV19suOUvpIQtlg,224
80
- llama_cloud/types/data_sink_component_one.py,sha256=YelKYKqMMjb7ktWeRYfL3dU0DK3K4oHqvQYqNwAi_mQ,701
93
+ llama_cloud/types/data_sink_component_one.py,sha256=FVa5lyfY4kgGYRvM5qb18nM5uz9DL2Sjfe1yRB5jAF4,904
81
94
  llama_cloud/types/data_sink_create.py,sha256=7hFoMZwd9YoP6pUjmXnzKsS1Ey5OeEQ-mIlNoh8tYAE,1288
82
95
  llama_cloud/types/data_sink_create_component.py,sha256=u7UQVzTKLABtjIuk-CWE0MU5s90EXaAhWfBEuMI5Q54,249
83
- llama_cloud/types/data_sink_create_component_one.py,sha256=edXXfp3kt8puD0ChIW7wm9dcW6xVdO-yvqDC4QgU1e8,707
96
+ llama_cloud/types/data_sink_create_component_one.py,sha256=jt9qk-OSS_YI0cvnaeiMxtE8NDdme8ZXXxtUEbaoEfM,910
84
97
  llama_cloud/types/data_sink_definition.py,sha256=5ve_pq02s8szc34-wWobMe6BAPj_c7e9n9FFsfDqEQ0,1561
85
98
  llama_cloud/types/data_source.py,sha256=H98i0VlmB_eUczmUuhbAVG7uP1wcLLlE2gSKQWLTy7w,1830
86
99
  llama_cloud/types/data_source_component.py,sha256=xx1-6EJUtfr2A6BgkOtFM4w5I_3zSHqO1qnRRHSNcTc,232
@@ -91,9 +104,14 @@ llama_cloud/types/data_source_create_component_one.py,sha256=rkVjFBxh1wA1BcsDWsJ
91
104
  llama_cloud/types/data_source_create_custom_metadata_value.py,sha256=ejSsQNbszYQaUWFh9r9kQpHf88qbhuRv1SI9J_MOSC0,215
92
105
  llama_cloud/types/data_source_custom_metadata_value.py,sha256=pTZn5yjZYmuOhsLABFJOKZblZUkRqo1CqLAuP5tKji4,209
93
106
  llama_cloud/types/data_source_definition.py,sha256=HlSlTxzYcQJOSo_2OSroAE8vAr-otDvTNBSEkA54vL8,1575
107
+ llama_cloud/types/element_segmentation_config.py,sha256=QOBk8YFrgK0I2m3caqV5bpYaGXbk0fMSjZ4hUPZXZDI,959
108
+ llama_cloud/types/embedding_config.py,sha256=eqW7xg1IHZcXIEsqVzAn1thxcWGTeBwhpDuqpS6EYKw,1319
109
+ llama_cloud/types/embedding_config_component.py,sha256=glBnixqC6GkDSMitbVs5aiAw566XFMkKrHgiNM1hEBU,252
110
+ llama_cloud/types/embedding_config_component_one.py,sha256=vFoDX7Cf_Qw9uGDZsIXsH72A2eFoiksMMhCfob1dFFQ,604
111
+ llama_cloud/types/embedding_config_type.py,sha256=iLK2npXhXa0E1FjsZvCC1JTzwJ1ItHYkNgDJvTkofyc,1470
94
112
  llama_cloud/types/eval_dataset.py,sha256=Uav-YJqAvyzCp1j2XavzzVLV975uki71beIBLkCt8LY,1408
95
113
  llama_cloud/types/eval_dataset_job_params.py,sha256=vcXLJWO581uigNvGAurPDgMeEFtQURWucLF5pemdeS0,1343
96
- llama_cloud/types/eval_dataset_job_record.py,sha256=mUBpT2CI1IYYxwvC7S3mKu5GhBKXzVR5btDLoGcXqSg,2763
114
+ llama_cloud/types/eval_dataset_job_record.py,sha256=YcTXMBLNQaFw1jAvoQ6CnOsfm8XTDtgBumPr9--o380,2800
97
115
  llama_cloud/types/eval_execution_params.py,sha256=TkdGGLfBIS2AeeUZtQBqC-Ln7_xPsU44JbN0yOBuP3Q,1382
98
116
  llama_cloud/types/eval_execution_params_override.py,sha256=yhYHQvtk50FW_3oOFpOU-Swuh0MhBTY2-GNsXVWZJNY,1399
99
117
  llama_cloud/types/eval_llm_model_data.py,sha256=H56AfhYsPA3eMKj1418_67tJ-5PsCDW36-6Zyif-f3M,1162
@@ -110,19 +128,20 @@ llama_cloud/types/file_resource_info_value.py,sha256=g6T6ELeLK9jgcvX6r-EuAl_4Jkw
110
128
  llama_cloud/types/filter_condition.py,sha256=in8L0rP6KO3kd8rRakDjrxBZTWZen6VWVojQnZELORc,520
111
129
  llama_cloud/types/filter_operator.py,sha256=nfd5LFzH46ZhUiCzT8poPf1NGibx4v833tLXu06dDE8,2071
112
130
  llama_cloud/types/gemini_embedding.py,sha256=BR8A9feVz1c7EoaUQKzOMP3PgZq-mw-n6Di-vOI-0ww,2209
113
- llama_cloud/types/html_node_parser.py,sha256=xjoKAejLrwhsK10ubEZh3OPuyus8f5XZYdl5SC__Kyw,1685
114
131
  llama_cloud/types/http_validation_error.py,sha256=iOSKYv0dJGjyIq8DAeLVKNJY-GiM1b6yiXGpXrm4QS4,1058
115
132
  llama_cloud/types/hugging_face_inference_api_embedding.py,sha256=_nXn3KkPnnQiuspEUsBASHJOjeGYHuDUq1eBfXr6xwg,3315
116
133
  llama_cloud/types/hugging_face_inference_api_embedding_token.py,sha256=A7-_YryBcsP4G5uRyJ9acao3XwX5-YC3NRndTeDAPj4,144
117
- llama_cloud/types/json_node_parser.py,sha256=w7U_HbyxIDTEyJCdrk4j_8IUaqVsqEkpOJ6cq-0xz0A,1577
134
+ llama_cloud/types/ingestion_error_response.py,sha256=8u0cyT44dnpkNeUKemTvJMUqi_WyPcYQKP_DMTqaFPY,1259
135
+ llama_cloud/types/job_name_mapping.py,sha256=scAbHrxvowCE3jHRZyYr2bBE5wvMMdBw7zpQ-lp5dY0,1433
118
136
  llama_cloud/types/llama_parse_parameters.py,sha256=0oiflzEbTRwxnAYZ3iaQdawFSys5BdhhA7YDzlg7IAs,2047
119
- llama_cloud/types/llama_parse_supported_file_extensions.py,sha256=EAaw2iWIf08gY1JTg-t-VtZsuHIpNwpwCZPG1xXc2RA,10077
137
+ llama_cloud/types/llama_parse_supported_file_extensions.py,sha256=0IurzDxhIwdxCuTh1J9NXA_bU9VnKagDCs3853iREWY,11244
120
138
  llama_cloud/types/llm.py,sha256=T-Uv5OO0E6Rscpn841302jx3c7G1uo9LJkdrGlNGk30,2238
139
+ llama_cloud/types/llm_parameters.py,sha256=K3OsG76rKzOrVwjO7EiJxEf0QMpg_5mfGKd51XdEE4w,1495
121
140
  llama_cloud/types/local_eval.py,sha256=77NY_rq4zr0V3iB-PXE7Om6LcjRrytLbQ55f_ovAF-M,2050
122
141
  llama_cloud/types/local_eval_results.py,sha256=G1rLE6vO2lEziHQ6bAbZvpJMTrkSYWFvsS1iyZZ44Jw,1449
123
142
  llama_cloud/types/local_eval_sets.py,sha256=XJSSriwRvkma889pPiBQrpRakKejKOX3tWPu1TGb1ug,1181
124
143
  llama_cloud/types/managed_ingestion_status.py,sha256=IW5WpBSofGlJfypFrl3mp4yx9Lq4eHFs-1IOl1R33dI,1128
125
- llama_cloud/types/managed_ingestion_status_response.py,sha256=oqpY5Iw08offH-0xlEj-F4YN7BUJgP3gSw0EBWmjFGg,1118
144
+ llama_cloud/types/managed_ingestion_status_response.py,sha256=1DRxebcZlCKFqA9iwhyfhXlFQfKUjE-SsCzmIJnoobM,1529
126
145
  llama_cloud/types/markdown_element_node_parser.py,sha256=N3HKe8ZVVzJvley9UxATSbXhNkgVafhJgtnyMePjMBU,2121
127
146
  llama_cloud/types/markdown_node_parser.py,sha256=T4VNqkKmwQtItpdIC2uwfBnIGEfGQ8s6F9vR9ChW64M,1589
128
147
  llama_cloud/types/message_role.py,sha256=38ES71HMWfKesfFqSkTBxDcqdNqJHlNYQr1pPKlxSXs,1208
@@ -132,19 +151,24 @@ llama_cloud/types/metadata_filters.py,sha256=uSf6sB4oQu6WzMPNFG6Tc4euqEiYcj_X14Y
132
151
  llama_cloud/types/metadata_filters_filters_item.py,sha256=e8KhD2q6Qc2_aK6r5CvyxC0oWVYO4F4vBIcB9eMEPPM,246
133
152
  llama_cloud/types/metric_result.py,sha256=jLHgHnU3Gj1rPqwYSzBZd2bnF-yGiHJj4Gi6uRf8BaA,1237
134
153
  llama_cloud/types/node_parser.py,sha256=LlM3qsrLbFlAd4SkhAGJjkEJXk04D0faKhQNXWfLQ00,1364
154
+ llama_cloud/types/none_chunking_config.py,sha256=D062t314Vp-s4n9h8wNgsYfElI4PonPKmihvjEmaqdA,952
155
+ llama_cloud/types/none_segmentation_config.py,sha256=j3jUA6E8uFtwDMEu4TFG3Q4ZGCGiuUfUW9AMO1NNqXU,956
135
156
  llama_cloud/types/object_type.py,sha256=-7wzQjscpmpUdM8vOIzq1EfAMhY9pS3wIaYIo6GndHQ,736
136
157
  llama_cloud/types/open_ai_embedding.py,sha256=vAiDcIV129M7YT5hI99A2kheN42793m4kEJDu7fUKQg,3217
137
158
  llama_cloud/types/organization.py,sha256=6mVWJDaDxrnMHuufnpQEhgWTPZW9bhsjGFtgtf4VyJg,1321
138
159
  llama_cloud/types/organization_create.py,sha256=hUXRwArIx_0D_lilpL7z-B0oJJ5yEX8Sbu2xqfH_9so,1086
160
+ llama_cloud/types/page_segmentation_config.py,sha256=WE97h8QrwsFqnzQ8EX8P5Db8pn6nZaC0VD1o9C3KAGQ,956
161
+ llama_cloud/types/page_splitter_node_parser.py,sha256=AwdDkxX-WgJEMOc8Jvz_IByfYULNdVIM9CoD6gEcnhU,1476
139
162
  llama_cloud/types/parser_languages.py,sha256=Ps3IlaSt6tyxEI657N3-vZL96r2puk8wsf31cWnO-SI,10840
140
163
  llama_cloud/types/parsing_history_item.py,sha256=_MVzf43t84PbmjOzsMLZ_NBoyiisigLWz-fr0ZxU63g,1183
141
- llama_cloud/types/parsing_job.py,sha256=Kay6QocdUSdg3ShMKD8jEuLdtAdZbmaiPf4LTml4Wxc,1016
164
+ llama_cloud/types/parsing_job.py,sha256=9hoKN4h-t0fka4-fX-79VbvcK2EEZRk2bDDZvCjaYZo,1093
142
165
  llama_cloud/types/parsing_job_json_result.py,sha256=vC0FNMklitCgcB0esthMfv_RbbyFOzvwzvQsh58Im8o,1040
143
166
  llama_cloud/types/parsing_job_markdown_result.py,sha256=E3-CVNFH1IMyuGs_xzYfYdNgq9AdnDshA_CxOTXz_dQ,1094
144
167
  llama_cloud/types/parsing_job_text_result.py,sha256=1QZielAWXuzPFOgr_DWshXPjmbExAAgAHKAEYVQVtJ8,1082
145
168
  llama_cloud/types/parsing_usage.py,sha256=Wy_c-kAFADDBZgDwqNglsJv_t7vcjOm-8EY32oZEYzU,995
146
169
  llama_cloud/types/pipeline.py,sha256=h-Xo7HirFCvgiu7NaqSrUTM2wJKd9WXzcqnZ_j_kRkU,2661
147
- llama_cloud/types/pipeline_create.py,sha256=PIa51SI_kvS5V0OGlumz_fabktiAC0z7L1qmRNH-sbE,2687
170
+ llama_cloud/types/pipeline_create.py,sha256=usFxjKpz4PpzcAs66iqNDMxMPZRyT6Ezyyr4aRhJnE4,3102
171
+ llama_cloud/types/pipeline_create_transform_config.py,sha256=CiMil0NrwvxR34CAzrSWw9Uo0117tz409sptH1k_r48,854
148
172
  llama_cloud/types/pipeline_data_source.py,sha256=A3AlRzTD7zr1y-u5O5LFESqIupbbG-fqUndQgeYj77w,2062
149
173
  llama_cloud/types/pipeline_data_source_component.py,sha256=Pk_K0Gv7xSWe5BKCdxz82EFd6AQDvZGN-6t3zg9h8NY,265
150
174
  llama_cloud/types/pipeline_data_source_component_one.py,sha256=sYaNaVl2gk-Clq2BCOKT2fUOGa_B7kcsw1P7aVdn-jA,873
@@ -168,22 +192,25 @@ llama_cloud/types/pydantic_program_mode.py,sha256=QfvpqR7TqyNuOxo78Sr58VOu7KDSBr
168
192
  llama_cloud/types/related_node_info.py,sha256=YqdYiBxtj8njp-UiLMaTBqoYKTTCEu0-DBta4ZnFVo4,1241
169
193
  llama_cloud/types/retrieval_mode.py,sha256=lVfSVelJCKMK1Da4yx7B9m9y6Rj35SGKTx-3Z2UOAPE,784
170
194
  llama_cloud/types/retrieve_results.py,sha256=ysSEHTHKBmASTZchcfmD42YAAOoB0KJOyqsYokfTAmE,1523
195
+ llama_cloud/types/semantic_chunking_config.py,sha256=dFDniTVWpRc7UcmVFvljUoyL5Ztd-l-YrHII7U-yM-k,1053
196
+ llama_cloud/types/sentence_chunking_config.py,sha256=NA9xidK5ICxJPkEMQZWNcsV0Hw9Co_bzRWeYe4uSh9I,1116
171
197
  llama_cloud/types/sentence_splitter.py,sha256=mkP5vQsXnLhn6iZZN4MrAfVoFdBYhZTIHoA5AewXwZY,2213
172
- llama_cloud/types/simple_file_node_parser.py,sha256=C0B0eVB7TOKpmX_lMvUvCRzk4Be3R_gh5eOtQvLOnVY,1676
173
198
  llama_cloud/types/status_enum.py,sha256=2kQLDa8PdvK45yJDSV2i53rBA3wCR1PJj-IdK0Dcr2E,868
174
199
  llama_cloud/types/supported_eval_llm_model.py,sha256=CKWBCKPNa_NjjlmenTDLbc9tt113qzwjq2Xi3WJ6wq8,1364
175
200
  llama_cloud/types/supported_eval_llm_model_names.py,sha256=S1yMXFzbkoUExrVKWMWZfYQsZ0FsA_-mzkxRDB-lojM,776
176
201
  llama_cloud/types/text_node.py,sha256=ANT9oPqBs9IJFPhtq-6PC4l44FA3ZYjz_9nOE8h0RAM,2940
177
202
  llama_cloud/types/text_node_relationships_value.py,sha256=qmXURTk1Xg7ZDzRSSV1uDEel0AXRLohND5ioezibHY0,217
178
203
  llama_cloud/types/text_node_with_score.py,sha256=k-KYWO_mgJBvO6xUfOD5W6v1Ku9E586_HsvDoQbLfuQ,1229
204
+ llama_cloud/types/token_chunking_config.py,sha256=XNvnTsNd--YOMQ_Ad8hoqhYgQftqkBHKVn6i7nJnMqs,1067
179
205
  llama_cloud/types/token_text_splitter.py,sha256=Mv8xBCvMXyYuQq1KInPe65O0YYCLWxs61pIbkBRfxG0,1883
180
206
  llama_cloud/types/transformation_category_names.py,sha256=0xjYe-mDW9OKbTGqL5fSbTvqsfrG4LDu_stW_ubVLl4,582
207
+ llama_cloud/types/user.py,sha256=QOICcqETXK1z1gORIJEm10-UH2ZjJbtSMCM9VsVGCmU,1186
181
208
  llama_cloud/types/user_organization.py,sha256=fLgTKr1phJ4EdhTXmr5086bRy9RTAUy4km6mQz_jgRI,1964
182
209
  llama_cloud/types/user_organization_create.py,sha256=YESlfcI64710OFdQzgGD4a7aItgBwcIKdM1xFPs1Szw,1209
183
210
  llama_cloud/types/user_organization_delete.py,sha256=Z8RSRXc0AGAuGxv6eQPC2S1XIdRfNCXBggfEefgPseM,1209
184
211
  llama_cloud/types/validation_error.py,sha256=yZDLtjUHDY5w82Ra6CW0H9sLAr18R0RY1UNgJKR72DQ,1084
185
212
  llama_cloud/types/validation_error_loc_item.py,sha256=LAtjCHIllWRBFXvAZ5QZpp7CPXjdtN9EB7HrLVo6EP0,128
186
- llama_cloud-0.0.10.dist-info/LICENSE,sha256=_iNqtPcw1Ue7dZKwOwgPtbegMUkWVy15hC7bffAdNmY,1067
187
- llama_cloud-0.0.10.dist-info/METADATA,sha256=Lir2q2uYKl_qOx9F3F66PJT2dUOpNz1T_QKT4-MOC_g,751
188
- llama_cloud-0.0.10.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
189
- llama_cloud-0.0.10.dist-info/RECORD,,
213
+ llama_cloud-0.0.12.dist-info/LICENSE,sha256=_iNqtPcw1Ue7dZKwOwgPtbegMUkWVy15hC7bffAdNmY,1067
214
+ llama_cloud-0.0.12.dist-info/METADATA,sha256=0Z7k4dgE3rnjIf0um3oMhp1WuQaGYRc3uJDoC4M9q1A,751
215
+ llama_cloud-0.0.12.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
216
+ llama_cloud-0.0.12.dist-info/RECORD,,