llama-cloud 0.1.36__py3-none-any.whl → 0.1.38__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 (47) hide show
  1. llama_cloud/__init__.py +20 -4
  2. llama_cloud/client.py +3 -0
  3. llama_cloud/resources/__init__.py +3 -3
  4. llama_cloud/resources/admin/client.py +57 -0
  5. llama_cloud/resources/alpha/__init__.py +2 -0
  6. llama_cloud/resources/alpha/client.py +118 -0
  7. llama_cloud/resources/beta/client.py +576 -20
  8. llama_cloud/resources/chat_apps/client.py +32 -8
  9. llama_cloud/resources/classifier/client.py +139 -11
  10. llama_cloud/resources/data_sinks/client.py +32 -8
  11. llama_cloud/resources/data_sources/client.py +32 -8
  12. llama_cloud/resources/data_sources/types/data_source_update_component.py +2 -0
  13. llama_cloud/resources/embedding_model_configs/client.py +48 -12
  14. llama_cloud/resources/files/__init__.py +2 -2
  15. llama_cloud/resources/files/client.py +189 -113
  16. llama_cloud/resources/files/types/__init__.py +1 -3
  17. llama_cloud/resources/jobs/client.py +12 -6
  18. llama_cloud/resources/llama_extract/client.py +138 -32
  19. llama_cloud/resources/organizations/client.py +18 -4
  20. llama_cloud/resources/parsing/client.py +16 -4
  21. llama_cloud/resources/pipelines/client.py +32 -8
  22. llama_cloud/resources/projects/client.py +78 -18
  23. llama_cloud/resources/reports/client.py +126 -30
  24. llama_cloud/resources/retrievers/client.py +48 -12
  25. llama_cloud/types/__init__.py +20 -2
  26. llama_cloud/types/agent_deployment_summary.py +1 -0
  27. llama_cloud/types/classify_job.py +2 -0
  28. llama_cloud/types/cloud_jira_data_source_v_2.py +52 -0
  29. llama_cloud/types/cloud_jira_data_source_v_2_api_version.py +21 -0
  30. llama_cloud/types/configurable_data_source_names.py +4 -0
  31. llama_cloud/types/data_source_component.py +2 -0
  32. llama_cloud/types/data_source_create_component.py +2 -0
  33. llama_cloud/types/data_source_reader_version_metadata_reader_version.py +9 -1
  34. llama_cloud/types/file_create.py +41 -0
  35. llama_cloud/types/{classify_job_with_status.py → file_filter.py} +8 -15
  36. llama_cloud/types/file_query_response.py +38 -0
  37. llama_cloud/types/llama_extract_mode_availability.py +37 -0
  38. llama_cloud/types/llama_extract_mode_availability_status.py +17 -0
  39. llama_cloud/types/paginated_response_classify_job.py +34 -0
  40. llama_cloud/types/pipeline_data_source_component.py +2 -0
  41. llama_cloud/types/usage_response_active_alerts_item.py +4 -0
  42. {llama_cloud-0.1.36.dist-info → llama_cloud-0.1.38.dist-info}/METADATA +2 -1
  43. {llama_cloud-0.1.36.dist-info → llama_cloud-0.1.38.dist-info}/RECORD +47 -38
  44. {llama_cloud-0.1.36.dist-info → llama_cloud-0.1.38.dist-info}/WHEEL +1 -1
  45. /llama_cloud/{resources/files/types → types}/file_create_permission_info_value.py +0 -0
  46. /llama_cloud/{resources/files/types → types}/file_create_resource_info_value.py +0 -0
  47. {llama_cloud-0.1.36.dist-info → llama_cloud-0.1.38.dist-info}/LICENSE +0 -0
@@ -0,0 +1,38 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import datetime as dt
4
+ import typing
5
+
6
+ from ..core.datetime_utils import serialize_datetime
7
+ from .file import File
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 FileQueryResponse(pydantic.BaseModel):
19
+ """
20
+ Response schema for paginated file queries.
21
+ """
22
+
23
+ items: typing.List[File] = pydantic.Field(description="The list of items.")
24
+ next_page_token: typing.Optional[str]
25
+ total_size: typing.Optional[int]
26
+
27
+ def json(self, **kwargs: typing.Any) -> str:
28
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
29
+ return super().json(**kwargs_with_defaults)
30
+
31
+ def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
32
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
33
+ return super().dict(**kwargs_with_defaults)
34
+
35
+ class Config:
36
+ frozen = True
37
+ smart_union = True
38
+ json_encoders = {dt.datetime: serialize_datetime}
@@ -0,0 +1,37 @@
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 .llama_extract_mode_availability_status import LlamaExtractModeAvailabilityStatus
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 LlamaExtractModeAvailability(pydantic.BaseModel):
19
+ mode: str
20
+ status: LlamaExtractModeAvailabilityStatus
21
+ parse_mode: str
22
+ parse_models: typing.List[str]
23
+ extract_models: typing.List[str]
24
+ missing_models: typing.Optional[typing.List[str]]
25
+
26
+ def json(self, **kwargs: typing.Any) -> str:
27
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
28
+ return super().json(**kwargs_with_defaults)
29
+
30
+ def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
31
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
32
+ return super().dict(**kwargs_with_defaults)
33
+
34
+ class Config:
35
+ frozen = True
36
+ smart_union = True
37
+ json_encoders = {dt.datetime: serialize_datetime}
@@ -0,0 +1,17 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import enum
4
+ import typing
5
+
6
+ T_Result = typing.TypeVar("T_Result")
7
+
8
+
9
+ class LlamaExtractModeAvailabilityStatus(str, enum.Enum):
10
+ AVAILABLE = "available"
11
+ UNAVAILABLE = "unavailable"
12
+
13
+ def visit(self, available: typing.Callable[[], T_Result], unavailable: typing.Callable[[], T_Result]) -> T_Result:
14
+ if self is LlamaExtractModeAvailabilityStatus.AVAILABLE:
15
+ return available()
16
+ if self is LlamaExtractModeAvailabilityStatus.UNAVAILABLE:
17
+ return unavailable()
@@ -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
+ from .classify_job import ClassifyJob
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 PaginatedResponseClassifyJob(pydantic.BaseModel):
19
+ items: typing.List[ClassifyJob] = pydantic.Field(description="The list of items.")
20
+ next_page_token: typing.Optional[str]
21
+ total_size: typing.Optional[int]
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}
@@ -6,6 +6,7 @@ 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
8
  from .cloud_jira_data_source import CloudJiraDataSource
9
+ from .cloud_jira_data_source_v_2 import CloudJiraDataSourceV2
9
10
  from .cloud_notion_page_data_source import CloudNotionPageDataSource
10
11
  from .cloud_one_drive_data_source import CloudOneDriveDataSource
11
12
  from .cloud_s_3_data_source import CloudS3DataSource
@@ -22,5 +23,6 @@ PipelineDataSourceComponent = typing.Union[
22
23
  CloudNotionPageDataSource,
23
24
  CloudConfluenceDataSource,
24
25
  CloudJiraDataSource,
26
+ CloudJiraDataSourceV2,
25
27
  CloudBoxDataSource,
26
28
  ]
@@ -12,6 +12,7 @@ class UsageResponseActiveAlertsItem(str, enum.Enum):
12
12
  CONFIGURED_SPEND_LIMIT_EXCEEDED = "configured_spend_limit_exceeded"
13
13
  FREE_CREDITS_EXHAUSTED = "free_credits_exhausted"
14
14
  INTERNAL_SPENDING_ALERT = "internal_spending_alert"
15
+ HAS_SPENDING_ALERT = "has_spending_alert"
15
16
 
16
17
  def visit(
17
18
  self,
@@ -20,6 +21,7 @@ class UsageResponseActiveAlertsItem(str, enum.Enum):
20
21
  configured_spend_limit_exceeded: typing.Callable[[], T_Result],
21
22
  free_credits_exhausted: typing.Callable[[], T_Result],
22
23
  internal_spending_alert: typing.Callable[[], T_Result],
24
+ has_spending_alert: typing.Callable[[], T_Result],
23
25
  ) -> T_Result:
24
26
  if self is UsageResponseActiveAlertsItem.PLAN_SPEND_LIMIT_EXCEEDED:
25
27
  return plan_spend_limit_exceeded()
@@ -31,3 +33,5 @@ class UsageResponseActiveAlertsItem(str, enum.Enum):
31
33
  return free_credits_exhausted()
32
34
  if self is UsageResponseActiveAlertsItem.INTERNAL_SPENDING_ALERT:
33
35
  return internal_spending_alert()
36
+ if self is UsageResponseActiveAlertsItem.HAS_SPENDING_ALERT:
37
+ return has_spending_alert()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: llama-cloud
3
- Version: 0.1.36
3
+ Version: 0.1.38
4
4
  Summary:
5
5
  License: MIT
6
6
  Author: Logan Markewich
@@ -12,6 +12,7 @@ Classifier: Programming Language :: Python :: 3.8
12
12
  Classifier: Programming Language :: Python :: 3.9
13
13
  Classifier: Programming Language :: Python :: 3.10
14
14
  Classifier: Programming Language :: Python :: 3.11
15
+ Classifier: Programming Language :: Python :: 3.12
15
16
  Requires-Dist: certifi (>=2024.7.4)
16
17
  Requires-Dist: httpx (>=0.20.0)
17
18
  Requires-Dist: pydantic (>=1.10)
@@ -1,5 +1,5 @@
1
- llama_cloud/__init__.py,sha256=ZE5Y7UEItg2hbjMAjjLgdoMaEYCnc478iEHSGwS4HAo,27419
2
- llama_cloud/client.py,sha256=xIC_pTNYLA3AfLE8esqhrzam93LLo7oc6Vrog64Bwzw,6399
1
+ llama_cloud/__init__.py,sha256=WQVQipnD9bxfJRVkSNYKy_S3Mf8Z1COj5HL__5a9Wz0,27857
2
+ llama_cloud/client.py,sha256=u8yj_cznQCKssfheWFugUUUtsM8oVrlWbOyQBFlq5zA,6610
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,42 +9,42 @@ llama_cloud/core/remove_none_from_dict.py,sha256=8m91FC3YuVem0Gm9_sXhJ2tGvP33owJ
9
9
  llama_cloud/environment.py,sha256=feTjOebeFZMrBdnHat4RE5aHlpt-sJm4NhK4ntV1htI,167
10
10
  llama_cloud/errors/__init__.py,sha256=pbbVUFtB9LCocA1RMWMMF_RKjsy5YkOKX5BAuE49w6g,170
11
11
  llama_cloud/errors/unprocessable_entity_error.py,sha256=FvR7XPlV3Xx5nu8HNlmLhBRdk4so_gCHjYT5PyZe6sM,313
12
- llama_cloud/resources/__init__.py,sha256=YEJrxAIFcQ6-d8qKlUYidwJqWFVWLKUw4B3gQrn1nKI,4429
12
+ llama_cloud/resources/__init__.py,sha256=axi8rRsGi4mjyG88TshNydTRZFYmXqWGwCIya6YIHI0,4321
13
13
  llama_cloud/resources/admin/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
14
- llama_cloud/resources/admin/client.py,sha256=2eXQ7OVBgxT2c_EX3mFxKyoAwuuZ6aDSkLJ7Yf8AOKw,5956
14
+ llama_cloud/resources/admin/client.py,sha256=YIYy9kU1_xaE0gkpmZZbCgLzZj6XSrAUplS7S2uWmwM,8536
15
15
  llama_cloud/resources/agent_deployments/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
16
16
  llama_cloud/resources/agent_deployments/client.py,sha256=3EOzOjmRs4KISgJ566enq3FCuN3YtskjO0OHqQGtkQ0,6122
17
+ llama_cloud/resources/alpha/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
18
+ llama_cloud/resources/alpha/client.py,sha256=9n--BGk6HStU79xHPsmAIgWUMj3m8m8l3jAG9fDUK4E,4624
17
19
  llama_cloud/resources/beta/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
18
- llama_cloud/resources/beta/client.py,sha256=KMveY6Uj_lurX9DcY198GoOW7rhww_emrvHFHHD4W7o,46846
20
+ llama_cloud/resources/beta/client.py,sha256=ItS2GfQe7EcchBq8uhJavBTetxDRYHDiyC_D5AwqCpY,66950
19
21
  llama_cloud/resources/chat_apps/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
20
- llama_cloud/resources/chat_apps/client.py,sha256=orSI8rpQbUwVEToolEeiEi5Qe--suXFvfu6D9JDii5I,23595
22
+ llama_cloud/resources/chat_apps/client.py,sha256=UMQFuJ1Ia-p8URR_eSUa18heK8jQ3j2pUJB_ply4P-E,24551
21
23
  llama_cloud/resources/classifier/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
22
- llama_cloud/resources/classifier/client.py,sha256=4oiCJVFPl1reWlXk_wEoX_r5_FeSc2dH_MKQyX8Xzro,13650
24
+ llama_cloud/resources/classifier/client.py,sha256=XUK4JIMszQcRpPgxzavvCWr-4zQeoyaJLIK5ABSEHug,18826
23
25
  llama_cloud/resources/data_sinks/__init__.py,sha256=ZHUjn3HbKhq_7QS1q74r2m5RGKF5lxcvF2P6pGvpcis,147
24
- llama_cloud/resources/data_sinks/client.py,sha256=GpD6FhbGqkg2oUToyMG6J8hPxG_iG7W5ZJRo0qg3yzk,20639
26
+ llama_cloud/resources/data_sinks/client.py,sha256=6CEYttEJI3FtJ_OBOYvk5mYwAqYzRAKctJzjNrMS5Is,21595
25
27
  llama_cloud/resources/data_sinks/types/__init__.py,sha256=M1aTcufJwiEZo9B0KmYj9PfkSd6I1ooFt9tpIRGwgg8,168
26
28
  llama_cloud/resources/data_sinks/types/data_sink_update_component.py,sha256=ynPdEg844hZaD6EcAK0jrMY_vogtvmLTZ7FZSwWcor8,912
27
29
  llama_cloud/resources/data_sources/__init__.py,sha256=McURkcNBGHXH1hmRDRmZI1dRzJrekCTHZsgv03r2oZI,227
28
- llama_cloud/resources/data_sources/client.py,sha256=SZFm8bW5nkaXringdSnmxHqvVjKM7cNNOtqVXjgTKhc,21855
30
+ llama_cloud/resources/data_sources/client.py,sha256=BB0jIbfprU23rejGs8OZDO6G-E6A0RVck7v_IKENa_A,22811
29
31
  llama_cloud/resources/data_sources/types/__init__.py,sha256=Cd5xEECTzXqQSfJALfJPSjudlSLeb3RENeJVi8vwPbM,303
30
- llama_cloud/resources/data_sources/types/data_source_update_component.py,sha256=OjMWPLF9hKl1gUdi9d87uW7W3ITnscphTA1_NLc2PoE,1061
32
+ llama_cloud/resources/data_sources/types/data_source_update_component.py,sha256=_jQY6FhcvenWdzi27SK1bSY8muXKLRkXlVrTqEWgKKc,1159
31
33
  llama_cloud/resources/data_sources/types/data_source_update_custom_metadata_value.py,sha256=3aFC-p8MSxjhOu2nFtqk0pixj6RqNqcFnbOYngUdZUk,215
32
34
  llama_cloud/resources/embedding_model_configs/__init__.py,sha256=cXDtKKq-gj7yjFjdQ5GrGyPs-T5tRV_0JjUMGlAbdUs,1115
33
- llama_cloud/resources/embedding_model_configs/client.py,sha256=2JDvZJtSger9QJ8luPct-2zvwjaJAR8VcKsTZ1wgYTE,17769
35
+ llama_cloud/resources/embedding_model_configs/client.py,sha256=Sy6B8clDN7eByYC7AP4hnX1Pt5StkHC0swznDBTT11k,19329
34
36
  llama_cloud/resources/embedding_model_configs/types/__init__.py,sha256=6-rcDwJhw_0shz3CjrPvlYBYXJJ1bLn-PpplhOsQ79w,1156
35
37
  llama_cloud/resources/embedding_model_configs/types/embedding_model_config_create_embedding_config.py,sha256=SQCHJk0AmBbKS5XKdcEJxhDhIMLQCmCI13IHC28v7vQ,3054
36
38
  llama_cloud/resources/evals/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
37
39
  llama_cloud/resources/evals/client.py,sha256=v2AyeQV0hVgC6xoP2gJNgneJMaeXALV1hIeirYGxlPw,3242
38
- llama_cloud/resources/files/__init__.py,sha256=3B0SNM8EE6PddD5LpxYllci9vflEXy1xjPzhEEd-OUk,293
39
- llama_cloud/resources/files/client.py,sha256=41iMAtvSIz019jGFJ5aBVG-Haxho_bUYKBavBdFYV2I,59400
40
- llama_cloud/resources/files/types/__init__.py,sha256=EPYENAwkjBWv1MLf8s7R5-RO-cxZ_8NPrqfR4ZoR7jY,418
40
+ llama_cloud/resources/files/__init__.py,sha256=Ws53l-S3kyAGFinYPOb9WpN84DtbFn6gLYZtI2akBLQ,169
41
+ llama_cloud/resources/files/client.py,sha256=jSeVm7WCI5fPeLW8xlLKfqw2H5WyQvezgOjlTiDY-rc,61136
42
+ llama_cloud/resources/files/types/__init__.py,sha256=ZZuDQsYsxmQ9VwpfN7oqftzGRnFTR2EMYdCa7zARo4g,204
41
43
  llama_cloud/resources/files/types/file_create_from_url_resource_info_value.py,sha256=Wc8wFgujOO5pZvbbh2TMMzpa37GKZd14GYNJ9bdq7BE,214
42
- llama_cloud/resources/files/types/file_create_permission_info_value.py,sha256=KPCFuEaa8NiB85A5MfdXRAQ0poAUTl7Feg6BTfmdWas,209
43
- llama_cloud/resources/files/types/file_create_resource_info_value.py,sha256=R7Y-CJf7fnbvIqE3xOI5XOrmPwLbVJLC7zpxMu8Zopk,201
44
44
  llama_cloud/resources/jobs/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
45
- llama_cloud/resources/jobs/client.py,sha256=gv_N8e0lay7cjt6MCwx-Cj4FiCXKhbyCDaWbadaJpgY,6270
45
+ llama_cloud/resources/jobs/client.py,sha256=imoGq17ICMxdJ1cfiNGSkkHqYMmBTjYJ_4uNSa_Q8AQ,6504
46
46
  llama_cloud/resources/llama_extract/__init__.py,sha256=V6VZ8hQXwAuvOOZyk43nnbINoDQqEr03AjKQPhYKluk,997
47
- llama_cloud/resources/llama_extract/client.py,sha256=B_qhVsk-Qs81qrFOVgWqcvelSB3TLWFJCibnn--3BjE,83096
47
+ llama_cloud/resources/llama_extract/client.py,sha256=CT5_Nv6Z3aLejsr6yX2Ic9FlZZ55zjjrt8mp2R9v4k8,86496
48
48
  llama_cloud/resources/llama_extract/types/__init__.py,sha256=2Iu4w5LXZY2Govr1RzahIfY0b84y658SQjMDtj7rH_0,1497
49
49
  llama_cloud/resources/llama_extract/types/extract_agent_create_data_schema.py,sha256=zB31hJQ8hKaIsPkfTWiX5hqsPVFMyyeWEDZ_Aq237jo,305
50
50
  llama_cloud/resources/llama_extract/types/extract_agent_create_data_schema_zero_value.py,sha256=xoyXH3f0Y5beMWBxmtXSz6QoB_df_-0QBsYdjBhZnGw,217
@@ -57,33 +57,33 @@ llama_cloud/resources/llama_extract/types/extract_schema_validate_request_data_s
57
57
  llama_cloud/resources/llama_extract/types/extract_stateless_request_data_schema.py,sha256=lBblR9zgjJsbWL-2bDisCj7EQiX6aky6GQ4tuMr3LtU,325
58
58
  llama_cloud/resources/llama_extract/types/extract_stateless_request_data_schema_zero_value.py,sha256=4-ONLmkrEP36ZH0qRXp3sbXCtLVNQQX4dLXFeF4u47g,222
59
59
  llama_cloud/resources/organizations/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
60
- llama_cloud/resources/organizations/client.py,sha256=RoN-nkN7VeRZnrrElXhaPrgQFzGMHgNY41_XpbCXP0g,56623
60
+ llama_cloud/resources/organizations/client.py,sha256=57FNu1BQOmps5VXA_YZuYax3XZcbDcIAo1f0jXKzwWA,56991
61
61
  llama_cloud/resources/parsing/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
62
- llama_cloud/resources/parsing/client.py,sha256=K9qYu5v99OqbMmeeeCioQDUnT085A5keCencSwES-gc,88995
62
+ llama_cloud/resources/parsing/client.py,sha256=mPLm3eROPEk8rLzssT0fm9rTcQJ2-ZxlXLNAOzqJ1T8,89599
63
63
  llama_cloud/resources/pipelines/__init__.py,sha256=zyvVEOF_krvEZkCIj_kZoMKfhDqHo_R32a1mv9CriQc,1193
64
- llama_cloud/resources/pipelines/client.py,sha256=VAqAm0oY_nXGkMPqXuzPEHS9kPtpuOE5sxfyqlzXuSI,134738
64
+ llama_cloud/resources/pipelines/client.py,sha256=OY9ck8_raZNrg_BumBqEyW7zBy_FRAbUvh75qG7Soos,135946
65
65
  llama_cloud/resources/pipelines/types/__init__.py,sha256=C68NQ5QzA0dFXf9oePFFGmV1vn96jcAp-QAznSgoRYQ,1375
66
66
  llama_cloud/resources/pipelines/types/pipeline_file_update_custom_metadata_value.py,sha256=trI48WLxPcAqV9207Q6-3cj1nl4EGlZpw7En56ZsPgg,217
67
67
  llama_cloud/resources/pipelines/types/pipeline_update_embedding_config.py,sha256=c8FF64fDrBMX_2RX4uY3CjbNc0Ss_AUJ4Eqs-KeV4Wc,2874
68
68
  llama_cloud/resources/pipelines/types/pipeline_update_transform_config.py,sha256=KbkyULMv-qeS3qRd31ia6pd5rOdypS0o2UL42NRcA7E,321
69
69
  llama_cloud/resources/pipelines/types/retrieval_params_search_filters_inference_schema_value.py,sha256=hZWXYlTib0af85ECcerC4xD-bUQe8rG3Q6G1jFTMQcI,228
70
70
  llama_cloud/resources/projects/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
71
- llama_cloud/resources/projects/client.py,sha256=PF36iWtSa5amUt3q56YwLypOZjclIXSubCRv9NttpLs,25404
71
+ llama_cloud/resources/projects/client.py,sha256=nRwK-d56jBHMWsc0QtERnaHNlaIZi7ppbTwLjSc_A08,27158
72
72
  llama_cloud/resources/reports/__init__.py,sha256=cruYbQ1bIuJbRpkfaQY7ajUEslffjd7KzvzMzbtPH94,217
73
- llama_cloud/resources/reports/client.py,sha256=kHjtXVVc1Xi3T1GyBvSW5K4mTdr6xQwZA3vw-liRKBg,46736
73
+ llama_cloud/resources/reports/client.py,sha256=2YjrKgOoCs75Tw4y-JbN7OOL5yMsiybrtDzi1Upc3IE,50558
74
74
  llama_cloud/resources/reports/types/__init__.py,sha256=LfwDYrI4RcQu-o42iAe7HkcwHww2YU90lOonBPTmZIk,291
75
75
  llama_cloud/resources/reports/types/update_report_plan_api_v_1_reports_report_id_plan_patch_request_action.py,sha256=Qh-MSeRvDBfNb5hoLELivv1pLtrYVf52WVoP7G8V34A,807
76
76
  llama_cloud/resources/retrievers/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
77
- llama_cloud/resources/retrievers/client.py,sha256=z2LhmA-cZVFzr9P6loeCZYnJbvSIk0QitFeVFp-IyZk,32126
77
+ llama_cloud/resources/retrievers/client.py,sha256=pG9G6tgcohh0xHviaaZoNuQ6JJUhWq2uwrTK0-d3p_4,33938
78
78
  llama_cloud/resources/users/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
79
79
  llama_cloud/resources/users/client.py,sha256=A2s8e2syQHkkSwPz-Lrt_Zxp1K-8nqJqj5EafE6NWYs,5545
80
- llama_cloud/types/__init__.py,sha256=zPg9ZvyXe6PcaPTS519YoNDtKLjfGdUeoXH0Hr_wGMc,33040
80
+ llama_cloud/types/__init__.py,sha256=HSHS4fNorQ2l79VYOegTeh4KG7LnIzpSvUOhTELh3pQ,33920
81
81
  llama_cloud/types/advanced_mode_transform_config.py,sha256=4xCXye0_cPmVS1F8aNTx81sIaEPjQH9kiCCAIoqUzlI,1502
82
82
  llama_cloud/types/advanced_mode_transform_config_chunking_config.py,sha256=wYbJnWLpeQDfhmDZz-wJfYzD1iGT5Jcxb9ga3mzUuvk,1983
83
83
  llama_cloud/types/advanced_mode_transform_config_segmentation_config.py,sha256=anNGq0F5-IlbIW3kpC8OilzLJnUq5tdIcWHnRnmlYsg,1303
84
84
  llama_cloud/types/agent_data.py,sha256=Onaoc1QeIn3Il-8r1vgEzqvef92gHclCO7AC4kucEMI,1220
85
85
  llama_cloud/types/agent_deployment_list.py,sha256=7PWm2GHumo8CfqKU8fDRTJVDV4QQh8My1dhvBPO2zaA,1120
86
- llama_cloud/types/agent_deployment_summary.py,sha256=YEZxnNvTGYHz3zV6eGldVKfcy5S_IM-KlcOzDUqTfiU,1605
86
+ llama_cloud/types/agent_deployment_summary.py,sha256=9IKjSwu5uNpGfVyilr2W5d0aMApOdWNbtTk5w8GegEY,1642
87
87
  llama_cloud/types/aggregate_group.py,sha256=LybxFl_1snA9VgG6f7sogwO7kYAwH_I88pkYc0oMOH0,1164
88
88
  llama_cloud/types/audio_block.py,sha256=9JIGjZ8GU3C7ICv6XdNVN6_gWXyF18TJPaDuM9OUoMU,1071
89
89
  llama_cloud/types/auto_transform_config.py,sha256=HVeHZM75DMRznScqLTfrMwcZwIdyWPuaEYbPewnHqwc,1168
@@ -108,9 +108,8 @@ llama_cloud/types/chat_data.py,sha256=ZYqVtjXF6qPGajU4IWZu3InpU54TXJwBFiqxBepylP
108
108
  llama_cloud/types/chunk_mode.py,sha256=J4vqAQfQG6PWsIv1Fe_99nVsAfDbv_P81_KVsJ9AkU4,790
109
109
  llama_cloud/types/classification_result.py,sha256=1faExxbtJLoYjy0h0Gl38Shk2idySEOenJBjQlcRpXs,1309
110
110
  llama_cloud/types/classifier_rule.py,sha256=-64iBABkQ_IXN8rA77xA6L4xSsj8epTVT9Z1C7ypGx0,1533
111
- llama_cloud/types/classify_job.py,sha256=tT1_9g_PkBqTkq7xMpsfT4nMICwXXcqyl4ldsfCHICc,1654
111
+ llama_cloud/types/classify_job.py,sha256=adYCoiUbHNUFfr_FalvhULikeGmWp4I0P1vziVYrycM,1776
112
112
  llama_cloud/types/classify_job_results.py,sha256=gasxmGX4D1cJuAY0z8Sm7PuZ1TIeEPYzp6VggWeelko,1279
113
- llama_cloud/types/classify_job_with_status.py,sha256=DwJIfzuaUoLZ0KAA2dGj6DhZ9FtrUFtZRRrkH0BmekM,1798
114
113
  llama_cloud/types/classify_parsing_configuration.py,sha256=FMbDCtz9gGu557WRtiKkMsKfzPWuDF-XKW8Z2DeOL9g,1270
115
114
  llama_cloud/types/cloud_astra_db_vector_store.py,sha256=uvPZcMk0QISyMee0n2Z6QapCIejvibY94XWn5gmieO8,2065
116
115
  llama_cloud/types/cloud_az_storage_blob_data_source.py,sha256=NT4cYsD1M868_bSJxKM9cvTMtjQtQxKloE4vRv8_lwg,1534
@@ -120,6 +119,8 @@ llama_cloud/types/cloud_confluence_data_source.py,sha256=q-bBwkG5L2QZqZdPDlvgzdz
120
119
  llama_cloud/types/cloud_document.py,sha256=Rg_H8lcz2TzxEAIdU-m5mGpkM7s0j1Cn4JHkXYddmGs,1255
121
120
  llama_cloud/types/cloud_document_create.py,sha256=fQ1gZAtLCpr-a-sPbMez_5fK9JMU3uyp2tNvIzWNG3U,1278
122
121
  llama_cloud/types/cloud_jira_data_source.py,sha256=9R20k8Ne0Bl9X5dgSxpM_IGOFmC70Llz0pJ93rAKRvw,1458
122
+ llama_cloud/types/cloud_jira_data_source_v_2.py,sha256=t9P9ljuYRA-KY1umvjnbYdLQ0POV2E9lghTgYNCUQHI,2068
123
+ llama_cloud/types/cloud_jira_data_source_v_2_api_version.py,sha256=Ri2fRbVdTZaZK6bmROw5Hgl4q4FPqq_0IHjfHd263aA,595
123
124
  llama_cloud/types/cloud_milvus_vector_store.py,sha256=CHFTJSYPZKYPUU-jpB1MG8OwRvnPiT07o7cYCvQMZLA,1235
124
125
  llama_cloud/types/cloud_mongo_db_atlas_vector_search.py,sha256=CQ9euGBd3a72dvpTapRBhakme-fQbY2OaSoe0GDSHDo,1771
125
126
  llama_cloud/types/cloud_notion_page_data_source.py,sha256=DxYullFctkpd0A75lfTmPzf-9EjBlusMTtNs3RbmIag,1230
@@ -137,20 +138,20 @@ llama_cloud/types/composite_retrieval_result.py,sha256=EulVseVvpK50kto4wQweLO7jJ
137
138
  llama_cloud/types/composite_retrieved_text_node.py,sha256=eTQ99cdZ2PASff5n4oVV1oaNiS9Ie3AtY_E55kBYpBs,1702
138
139
  llama_cloud/types/composite_retrieved_text_node_with_score.py,sha256=o-HvmyjqODc68zYuobtj10_62FMBAKRLfRoTHGDdmxw,1148
139
140
  llama_cloud/types/configurable_data_sink_names.py,sha256=eGSnwk5yWffBBc0C3Iuh8RlynGTmRC1hqVv0JlUfbNE,1385
140
- llama_cloud/types/configurable_data_source_names.py,sha256=mNW71sSgcVhU3kePAOUgRxeqK1Vo7F_J1xIzmYKPRq0,1971
141
+ llama_cloud/types/configurable_data_source_names.py,sha256=43Dq5fzqrnJekj3PuxTj7Kb0cXM9TyzHmM7PjXS15Js,2132
141
142
  llama_cloud/types/credit_type.py,sha256=nwSRKDWgHk_msdWitctqtyeZwj5EFd6VLto6NF2yCd4,971
142
143
  llama_cloud/types/data_sink.py,sha256=PeexYHHoD8WkVp9WsFtfC-AIWszcgeJUprG1bwC8WsQ,1498
143
144
  llama_cloud/types/data_sink_component.py,sha256=yNX2YbevUd6RIbaAvkB40ttU0VSx2JBF-eCuLB_Au9Y,843
144
145
  llama_cloud/types/data_sink_create.py,sha256=dAaFPCwZ5oX0Fbf7ij62dzSaYnrhj3EHmnLnYnw2KgI,1360
145
146
  llama_cloud/types/data_sink_create_component.py,sha256=0LWeqGDeQh3cZm2h5_IrSlFoU5VKmIILaOdE1VtPtfc,849
146
147
  llama_cloud/types/data_source.py,sha256=QkJsQBlLt7cX0FxYuNF1w9yZw1BnNcGiQTTfMAuxiEM,1852
147
- llama_cloud/types/data_source_component.py,sha256=QBxAneOFe8crS0z-eFo3gd1siToQ4hYsLdfB4p3ZeVU,974
148
+ llama_cloud/types/data_source_component.py,sha256=5sqs683FAvS_yI7Jt9P3Mp3PPAo-moyLn3fvznUKcr8,1063
148
149
  llama_cloud/types/data_source_create.py,sha256=s0bAX_GUwiRdrL-PXS9ROrvq3xpmqbqzdMa6thqL2P4,1581
149
- llama_cloud/types/data_source_create_component.py,sha256=6dlkvut0gyy6JA_F4--xPHYOCHi14N6oooWOnOEugzE,980
150
+ llama_cloud/types/data_source_create_component.py,sha256=6Pvoqs1EjvH4ELO-2qiSCgt7agRhO6st954OiXnnKdI,1069
150
151
  llama_cloud/types/data_source_create_custom_metadata_value.py,sha256=ejSsQNbszYQaUWFh9r9kQpHf88qbhuRv1SI9J_MOSC0,215
151
152
  llama_cloud/types/data_source_custom_metadata_value.py,sha256=pTZn5yjZYmuOhsLABFJOKZblZUkRqo1CqLAuP5tKji4,209
152
153
  llama_cloud/types/data_source_reader_version_metadata.py,sha256=hh7Hunen9GHlvtLb8CM58ZD3V3pTYKX7FgNI7sgZHjM,1157
153
- llama_cloud/types/data_source_reader_version_metadata_reader_version.py,sha256=PLFW6lFTNtBwmGpP5ZCidZwrwndHhirjKVNfrd0CDtI,542
154
+ llama_cloud/types/data_source_reader_version_metadata_reader_version.py,sha256=qZtQtHEnpWE48CjBPdljoYSzuk2rdrw5CCpWbLtM6Ps,735
154
155
  llama_cloud/types/data_source_update_dispatcher_config.py,sha256=Sh6HhXfEV2Z6PYhkYQucs2MxyKVpL3UPV-I4cbf--bA,1242
155
156
  llama_cloud/types/delete_params.py,sha256=1snPrd3WO9C1bKf0WdMslE2HQMF0yYLI3U7N53cmurM,1285
156
157
  llama_cloud/types/document_block.py,sha256=OYKd5M3LgJ0Cz0K0YNuVRoHz9HcUdVuf2Vcqku8fck4,1116
@@ -196,10 +197,15 @@ llama_cloud/types/failure_handling_config.py,sha256=EmAQW0qm7-JTSYFwhmIWxqkVNWym
196
197
  llama_cloud/types/file.py,sha256=rQXitPRKOYw91nK5qOZ0vpOmIx_MCpRb0g78d9dQs6w,1822
197
198
  llama_cloud/types/file_classification.py,sha256=jKzAc_3rg0Usyf3TNr-bI5HZn9zGIj9vYH90RKoDtiY,1418
198
199
  llama_cloud/types/file_count_by_status_response.py,sha256=WuorbZvKjDs9Ql1hUiQu4gN5iCm8d6fr92KLyHpRvQU,1356
200
+ llama_cloud/types/file_create.py,sha256=eLUC50CzXOdAR_P2mBtX_R7kGteIVbP1V3LzuP1s0Xs,1629
201
+ llama_cloud/types/file_create_permission_info_value.py,sha256=KPCFuEaa8NiB85A5MfdXRAQ0poAUTl7Feg6BTfmdWas,209
202
+ llama_cloud/types/file_create_resource_info_value.py,sha256=R7Y-CJf7fnbvIqE3xOI5XOrmPwLbVJLC7zpxMu8Zopk,201
199
203
  llama_cloud/types/file_data.py,sha256=dH2SNK9ZM-ZH7uKFIfBsk8bVixM33rUr40BdZWFXLhU,1225
204
+ llama_cloud/types/file_filter.py,sha256=VMP_NxXhhyUKInwPTcGPXYO2r5Q17ilds_tXgy6jteo,1257
200
205
  llama_cloud/types/file_id_presigned_url.py,sha256=Yr_MGFKbuBEHK4efRSK53fHcoo5bbAKnqQGGhMycUc0,1398
201
206
  llama_cloud/types/file_parse_public.py,sha256=sshZ0BcjHMGpuz4ylSurv0K_3ejfPrUGGyDxBHCtdMg,1378
202
207
  llama_cloud/types/file_permission_info_value.py,sha256=RyQlNbhvIKS87Ywu7XUaw5jDToZX64M9Wqzu1U_q2Us,197
208
+ llama_cloud/types/file_query_response.py,sha256=e92h6xJoqGPM9VSDy7wnrkQpsaxrVH8YVHzRIgTTl-g,1199
203
209
  llama_cloud/types/file_resource_info_value.py,sha256=g6T6ELeLK9jgcvX6r-EuAl_4JkwnyqdS0RRoabMReSU,195
204
210
  llama_cloud/types/file_store_info_response.py,sha256=YztOvESSDM52urD0gyO47RPWz-kZEjIpEYSeZYfkCLk,1195
205
211
  llama_cloud/types/file_store_info_response_status.py,sha256=UiPdZDEACVuiZ6zqkLnAYJVIxa-TIVwGN6_xF9lt9Xc,778
@@ -230,6 +236,8 @@ llama_cloud/types/job_record_with_usage_metrics.py,sha256=iNV2do5TB_0e3PoOz_DJyA
230
236
  llama_cloud/types/l_lama_parse_transform_config.py,sha256=YQRJZvKh1Ee2FUyW_N0nqYJoW599qBgH3JCH9SH6YLo,1249
231
237
  llama_cloud/types/legacy_parse_job_config.py,sha256=eEPExbkUi9J7lQoY0Fuc2HK_RlhPmO30cMkfjtmmizs,12832
232
238
  llama_cloud/types/license_info_response.py,sha256=fE9vcWO8k92SBqb_wOyBu_16C61s72utA-SifEi9iBc,1192
239
+ llama_cloud/types/llama_extract_mode_availability.py,sha256=7XelUrLe9wteCeEnP_shnb485lwKo56A2EZ66bq9HQw,1257
240
+ llama_cloud/types/llama_extract_mode_availability_status.py,sha256=_ildgVCsBdqOLD__qdEjcYxqgKunXhJ_VHUeqjZJX8c,566
233
241
  llama_cloud/types/llama_extract_settings.py,sha256=YKhhyUNgqpowTdTx715Uk13GdBsxCUZLVsLi5iYQIiY,2767
234
242
  llama_cloud/types/llama_index_core_base_llms_types_chat_message.py,sha256=NelHo-T-ebVMhRKsqE_xV8AJW4c7o6lS0uEQnPsmTwg,1365
235
243
  llama_cloud/types/llama_index_core_base_llms_types_chat_message_blocks_item.py,sha256=-aL8fh-w2Xf4uQs_LHzb3q6LL_onLAcVzCR5yMI4qJw,1571
@@ -270,6 +278,7 @@ llama_cloud/types/paginated_list_pipeline_files_response.py,sha256=2TKR2oHSQRyLM
270
278
  llama_cloud/types/paginated_report_response.py,sha256=o79QhQi9r0HZZrhvRlA6WGjxtyPuxN0xONhwXSwxtcs,1104
271
279
  llama_cloud/types/paginated_response_agent_data.py,sha256=u6Y-Cq9qjGF5tskMOQChUNqyI91Tk-uQ6vQdi69cs80,1159
272
280
  llama_cloud/types/paginated_response_aggregate_group.py,sha256=1ajZLZJLU6-GuQ_PPsEVRFZ6bm9he807F_F_DmB2HlQ,1179
281
+ llama_cloud/types/paginated_response_classify_job.py,sha256=ABpHn-ryRS8erj02ncxshAFe2Enw5JvSZqqbZuy0nWA,1167
273
282
  llama_cloud/types/paginated_response_quota_configuration.py,sha256=S-miK621O7V6hBB05xcFBKCwa-gBK17iTHh29Saebz8,1123
274
283
  llama_cloud/types/parse_job_config.py,sha256=8Rm4jkXIRIwX_muj5YmpMNxXEM4_4mE2RKtuMlboOh8,6975
275
284
  llama_cloud/types/parse_job_config_priority.py,sha256=__-gVv1GzktVCYZVyl6zeDt0pAZwYl-mxM0xkIHPEro,800
@@ -293,7 +302,7 @@ llama_cloud/types/pipeline_create.py,sha256=PKchM5cxkidXVFv2qON0uVh5lv8aqsy5OrZv
293
302
  llama_cloud/types/pipeline_create_embedding_config.py,sha256=PQqmVBFUyZXYKKBmVQF2zPsGp1L6rje6g3RtXEcdfc8,2811
294
303
  llama_cloud/types/pipeline_create_transform_config.py,sha256=HP6tzLsw_pomK1Ye2PYCS_XDZK_TMgg22mz17_zYKFg,303
295
304
  llama_cloud/types/pipeline_data_source.py,sha256=iKB2NgpWQTl_rNDCvnXjNyd0gzohqwfCnupzWYT_CTE,2465
296
- llama_cloud/types/pipeline_data_source_component.py,sha256=pcAIb6xuRJajDVBF_a4_2USPLtZ8ve-WQvSdKKQu50Q,982
305
+ llama_cloud/types/pipeline_data_source_component.py,sha256=UNKwvGq0_06wdPr2th-xa306lo5BPJzhoHEZ6RfdoPQ,1071
297
306
  llama_cloud/types/pipeline_data_source_create.py,sha256=wMsymqB-YGyf3jdQr-N5ODVG6v0w68EMxGBNdQXeJe0,1178
298
307
  llama_cloud/types/pipeline_data_source_custom_metadata_value.py,sha256=8n3r60sxMx4_udW0yzJZxzyWeK6L3cc2-jLGZFW4EDs,217
299
308
  llama_cloud/types/pipeline_data_source_status.py,sha256=BD4xoftwp9lWC8EjJTnf3boIG_AyzjLPuP4qJxGhmcc,1039
@@ -375,7 +384,7 @@ llama_cloud/types/update_user_response.py,sha256=NfZSKY3nYSQPrG5pBSFQKbeYXEV1FV5
375
384
  llama_cloud/types/usage_and_plan.py,sha256=bclc7TE7CTBu7RLiTHG426dziyj--I8m5NVu86I2AV4,1065
376
385
  llama_cloud/types/usage_metric_response.py,sha256=ukvtNZLeLacv-5F0-GQ5wTBZOPUPEjAeurgYPc4s7nA,1047
377
386
  llama_cloud/types/usage_response.py,sha256=o0u15PGNQmOOie4kJFfc4Rw0jKGLckBJdH0NCAfT8_k,1499
378
- llama_cloud/types/usage_response_active_alerts_item.py,sha256=FfaimaNpddbKKrnjh1xwmHPy-5ai_1xwBc7S8bfZ1R8,1494
387
+ llama_cloud/types/usage_response_active_alerts_item.py,sha256=ti8H5yZ8X3yAmTZwM-dIWNnraTaUN3aBuhdGNM-WYcc,1708
379
388
  llama_cloud/types/user_job_record.py,sha256=mJHdokJsemXJOwM2l7fsW3X0SlwSNcy7yHbcXZHh3I4,1098
380
389
  llama_cloud/types/user_organization.py,sha256=yKewpOrMcB-CbujGNTjkX6QiWYr5HVsRIFQ-WX8kp2I,1729
381
390
  llama_cloud/types/user_organization_create.py,sha256=Zj57s9xuYVnLW2p8i4j2QORL-G1y7Ab3avXE1baERQY,1189
@@ -389,7 +398,7 @@ llama_cloud/types/vertex_embedding_mode.py,sha256=yY23FjuWU_DkXjBb3JoKV4SCMqel2B
389
398
  llama_cloud/types/vertex_text_embedding.py,sha256=-C4fNCYfFl36ATdBMGFVPpiHIKxjk0KB1ERA2Ec20aU,1932
390
399
  llama_cloud/types/webhook_configuration.py,sha256=_Xm15whrWoKNBuCoO5y_NunA-ByhCAYK87LnC4W-Pzg,1350
391
400
  llama_cloud/types/webhook_configuration_webhook_events_item.py,sha256=OL3moFO_6hsKZYSBQBsSHmWA0NgLcLJgBPZfABwT60c,2544
392
- llama_cloud-0.1.36.dist-info/LICENSE,sha256=_iNqtPcw1Ue7dZKwOwgPtbegMUkWVy15hC7bffAdNmY,1067
393
- llama_cloud-0.1.36.dist-info/METADATA,sha256=j9LO4ZreG5bdpYgvrpUvEB7wjKJQVNT0106_7aqGGU0,1092
394
- llama_cloud-0.1.36.dist-info/WHEEL,sha256=d2fvjOD7sXsVzChCqf0Ty0JbHKBaLYwDbGQDwQTnJ50,88
395
- llama_cloud-0.1.36.dist-info/RECORD,,
401
+ llama_cloud-0.1.38.dist-info/LICENSE,sha256=_iNqtPcw1Ue7dZKwOwgPtbegMUkWVy15hC7bffAdNmY,1067
402
+ llama_cloud-0.1.38.dist-info/METADATA,sha256=ptOad5pDHjoeNoQMXsprngoskyNHjb05K-Q6qgPDqx0,1143
403
+ llama_cloud-0.1.38.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
404
+ llama_cloud-0.1.38.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 1.7.0
2
+ Generator: poetry-core 1.9.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any