llama-cloud 0.1.41__py3-none-any.whl → 0.1.43__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 (43) hide show
  1. llama_cloud/__init__.py +19 -19
  2. llama_cloud/resources/__init__.py +6 -0
  3. llama_cloud/resources/alpha/client.py +14 -30
  4. llama_cloud/resources/beta/client.py +1045 -59
  5. llama_cloud/resources/jobs/client.py +0 -8
  6. llama_cloud/resources/llama_extract/__init__.py +6 -0
  7. llama_cloud/resources/llama_extract/client.py +825 -941
  8. llama_cloud/resources/llama_extract/types/__init__.py +6 -0
  9. llama_cloud/resources/organizations/client.py +18 -4
  10. llama_cloud/resources/parsing/client.py +56 -0
  11. llama_cloud/resources/pipelines/client.py +164 -0
  12. llama_cloud/types/__init__.py +16 -22
  13. llama_cloud/types/agent_data.py +1 -1
  14. llama_cloud/types/agent_deployment_summary.py +1 -2
  15. llama_cloud/types/{prompt_conf.py → api_key.py} +14 -9
  16. llama_cloud/types/{extract_job_create.py → api_key_query_response.py} +6 -14
  17. llama_cloud/types/api_key_type.py +17 -0
  18. llama_cloud/types/delete_response.py +35 -0
  19. llama_cloud/types/extract_config.py +1 -0
  20. llama_cloud/types/extract_models.py +4 -0
  21. llama_cloud/types/extracted_table.py +40 -0
  22. llama_cloud/types/legacy_parse_job_config.py +3 -0
  23. llama_cloud/types/llama_parse_parameters.py +7 -0
  24. llama_cloud/types/organization.py +1 -0
  25. llama_cloud/types/paginated_response_spreadsheet_job.py +34 -0
  26. llama_cloud/types/parse_job_config.py +7 -0
  27. llama_cloud/types/public_model_name.py +4 -0
  28. llama_cloud/types/quota_configuration_configuration_type.py +4 -0
  29. llama_cloud/types/spreadsheet_job.py +50 -0
  30. llama_cloud/types/spreadsheet_parsing_config.py +35 -0
  31. {llama_cloud-0.1.41.dist-info → llama_cloud-0.1.43.dist-info}/METADATA +1 -1
  32. {llama_cloud-0.1.41.dist-info → llama_cloud-0.1.43.dist-info}/RECORD +37 -37
  33. llama_cloud/types/chunk_mode.py +0 -29
  34. llama_cloud/types/llama_extract_settings.py +0 -67
  35. llama_cloud/types/multimodal_parse_resolution.py +0 -17
  36. llama_cloud/types/schema_relax_mode.py +0 -25
  37. llama_cloud/types/struct_mode.py +0 -33
  38. llama_cloud/types/struct_parse_conf.py +0 -63
  39. /llama_cloud/{types → resources/llama_extract/types}/extract_job_create_data_schema_override.py +0 -0
  40. /llama_cloud/{types → resources/llama_extract/types}/extract_job_create_data_schema_override_zero_value.py +0 -0
  41. /llama_cloud/{types → resources/llama_extract/types}/extract_job_create_priority.py +0 -0
  42. {llama_cloud-0.1.41.dist-info → llama_cloud-0.1.43.dist-info}/LICENSE +0 -0
  43. {llama_cloud-0.1.41.dist-info → llama_cloud-0.1.43.dist-info}/WHEEL +0 -0
@@ -4,10 +4,7 @@ import datetime as dt
4
4
  import typing
5
5
 
6
6
  from ..core.datetime_utils import serialize_datetime
7
- from .extract_config import ExtractConfig
8
- from .extract_job_create_data_schema_override import ExtractJobCreateDataSchemaOverride
9
- from .extract_job_create_priority import ExtractJobCreatePriority
10
- from .webhook_configuration import WebhookConfiguration
7
+ from .api_key import ApiKey
11
8
 
12
9
  try:
13
10
  import pydantic
@@ -18,19 +15,14 @@ except ImportError:
18
15
  import pydantic # type: ignore
19
16
 
20
17
 
21
- class ExtractJobCreate(pydantic.BaseModel):
18
+ class ApiKeyQueryResponse(pydantic.BaseModel):
22
19
  """
23
- Schema for creating an extraction job.
20
+ Response schema for paginated API key queries.
24
21
  """
25
22
 
26
- priority: typing.Optional[ExtractJobCreatePriority]
27
- webhook_configurations: typing.Optional[typing.List[WebhookConfiguration]]
28
- extraction_agent_id: str = pydantic.Field(description="The id of the extraction agent")
29
- file_id: str = pydantic.Field(description="The id of the file")
30
- data_schema_override: typing.Optional[ExtractJobCreateDataSchemaOverride] = pydantic.Field(
31
- description="The data schema to override the extraction agent's data schema with"
32
- )
33
- config_override: typing.Optional[ExtractConfig]
23
+ items: typing.List[ApiKey] = pydantic.Field(description="The list of items.")
24
+ next_page_token: typing.Optional[str]
25
+ total_size: typing.Optional[int]
34
26
 
35
27
  def json(self, **kwargs: typing.Any) -> str:
36
28
  kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
@@ -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 ApiKeyType(str, enum.Enum):
10
+ USER = "user"
11
+ AGENT = "agent"
12
+
13
+ def visit(self, user: typing.Callable[[], T_Result], agent: typing.Callable[[], T_Result]) -> T_Result:
14
+ if self is ApiKeyType.USER:
15
+ return user()
16
+ if self is ApiKeyType.AGENT:
17
+ return agent()
@@ -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
+
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 DeleteResponse(pydantic.BaseModel):
18
+ """
19
+ API response for bulk delete operation
20
+ """
21
+
22
+ deleted_count: int
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}
@@ -50,6 +50,7 @@ class ExtractConfig(pydantic.BaseModel):
50
50
  invalidate_cache: typing.Optional[bool] = pydantic.Field(
51
51
  description="Whether to invalidate the cache for the extraction."
52
52
  )
53
+ num_pages_context: typing.Optional[int]
53
54
  page_range: typing.Optional[str]
54
55
 
55
56
  def json(self, **kwargs: typing.Any) -> str:
@@ -14,6 +14,7 @@ class ExtractModels(str, enum.Enum):
14
14
  OPENAI_GPT_5_MINI = "openai-gpt-5-mini"
15
15
  GEMINI_20_FLASH = "gemini-2.0-flash"
16
16
  GEMINI_25_FLASH = "gemini-2.5-flash"
17
+ GEMINI_25_FLASH_LITE = "gemini-2.5-flash-lite"
17
18
  GEMINI_25_PRO = "gemini-2.5-pro"
18
19
  OPENAI_GPT_4_O = "openai-gpt-4o"
19
20
  OPENAI_GPT_4_O_MINI = "openai-gpt-4o-mini"
@@ -27,6 +28,7 @@ class ExtractModels(str, enum.Enum):
27
28
  openai_gpt_5_mini: typing.Callable[[], T_Result],
28
29
  gemini_20_flash: typing.Callable[[], T_Result],
29
30
  gemini_25_flash: typing.Callable[[], T_Result],
31
+ gemini_25_flash_lite: typing.Callable[[], T_Result],
30
32
  gemini_25_pro: typing.Callable[[], T_Result],
31
33
  openai_gpt_4_o: typing.Callable[[], T_Result],
32
34
  openai_gpt_4_o_mini: typing.Callable[[], T_Result],
@@ -45,6 +47,8 @@ class ExtractModels(str, enum.Enum):
45
47
  return gemini_20_flash()
46
48
  if self is ExtractModels.GEMINI_25_FLASH:
47
49
  return gemini_25_flash()
50
+ if self is ExtractModels.GEMINI_25_FLASH_LITE:
51
+ return gemini_25_flash_lite()
48
52
  if self is ExtractModels.GEMINI_25_PRO:
49
53
  return gemini_25_pro()
50
54
  if self is ExtractModels.OPENAI_GPT_4_O:
@@ -0,0 +1,40 @@
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 ExtractedTable(pydantic.BaseModel):
18
+ """
19
+ A single extracted table from a spreadsheet
20
+ """
21
+
22
+ table_id: int = pydantic.Field(description="Unique identifier for this table within the file")
23
+ sheet_name: str = pydantic.Field(description="Worksheet name where table was found")
24
+ row_span: int = pydantic.Field(description="Number of rows in the table")
25
+ col_span: int = pydantic.Field(description="Number of columns in the table")
26
+ has_headers: bool = pydantic.Field(description="Whether the table has header rows")
27
+ metadata_json: typing.Optional[str]
28
+
29
+ def json(self, **kwargs: typing.Any) -> str:
30
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
31
+ return super().json(**kwargs_with_defaults)
32
+
33
+ def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
34
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
35
+ return super().dict(**kwargs_with_defaults)
36
+
37
+ class Config:
38
+ frozen = True
39
+ smart_union = True
40
+ json_encoders = {dt.datetime: serialize_datetime}
@@ -59,6 +59,9 @@ class LegacyParseJobConfig(pydantic.BaseModel):
59
59
  alias="doNotUnrollColumns", description="Whether to unroll columns."
60
60
  )
61
61
  spread_sheet_extract_sub_tables: typing.Optional[bool] = pydantic.Field(alias="spreadSheetExtractSubTables")
62
+ spread_sheet_force_formula_computation: typing.Optional[bool] = pydantic.Field(
63
+ alias="spreadSheetForceFormulaComputation"
64
+ )
62
65
  extract_layout: typing.Optional[bool] = pydantic.Field(alias="extractLayout")
63
66
  high_res_ocr: typing.Optional[bool] = pydantic.Field(alias="highResOcr")
64
67
  html_make_all_elements_visible: typing.Optional[bool] = pydantic.Field(alias="htmlMakeAllElementsVisible")
@@ -50,6 +50,11 @@ class LlamaParseParameters(pydantic.BaseModel):
50
50
  high_res_ocr: typing.Optional[bool]
51
51
  html_make_all_elements_visible: typing.Optional[bool]
52
52
  layout_aware: typing.Optional[bool]
53
+ specialized_chart_parsing_agentic: typing.Optional[bool]
54
+ specialized_chart_parsing_plus: typing.Optional[bool]
55
+ specialized_chart_parsing_efficient: typing.Optional[bool]
56
+ specialized_image_parsing: typing.Optional[bool]
57
+ precise_bounding_box: typing.Optional[bool]
53
58
  html_remove_navigation_elements: typing.Optional[bool]
54
59
  html_remove_fixed_elements: typing.Optional[bool]
55
60
  guess_xlsx_sheet_name: typing.Optional[bool]
@@ -99,6 +104,8 @@ class LlamaParseParameters(pydantic.BaseModel):
99
104
  complemental_formatting_instruction: typing.Optional[str]
100
105
  content_guideline_instruction: typing.Optional[str]
101
106
  spreadsheet_extract_sub_tables: typing.Optional[bool]
107
+ spreadsheet_force_formula_computation: typing.Optional[bool]
108
+ inline_images_in_markdown: typing.Optional[bool]
102
109
  job_timeout_in_seconds: typing.Optional[float]
103
110
  job_timeout_extra_time_per_page_in_seconds: typing.Optional[float]
104
111
  strict_mode_image_extraction: typing.Optional[bool]
@@ -28,6 +28,7 @@ class Organization(pydantic.BaseModel):
28
28
  parse_plan_level: typing.Optional[ParsePlanLevel] = pydantic.Field(
29
29
  description="Whether the organization is a Parse Premium customer."
30
30
  )
31
+ feature_flags: typing.Optional[typing.Dict[str, typing.Any]]
31
32
 
32
33
  def json(self, **kwargs: typing.Any) -> str:
33
34
  kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
@@ -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 .spreadsheet_job import SpreadsheetJob
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 PaginatedResponseSpreadsheetJob(pydantic.BaseModel):
19
+ items: typing.List[SpreadsheetJob] = 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}
@@ -52,6 +52,11 @@ class ParseJobConfig(pydantic.BaseModel):
52
52
  high_res_ocr: typing.Optional[bool]
53
53
  html_make_all_elements_visible: typing.Optional[bool]
54
54
  layout_aware: typing.Optional[bool]
55
+ specialized_chart_parsing_agentic: typing.Optional[bool]
56
+ specialized_chart_parsing_plus: typing.Optional[bool]
57
+ specialized_chart_parsing_efficient: typing.Optional[bool]
58
+ specialized_image_parsing: typing.Optional[bool]
59
+ precise_bounding_box: typing.Optional[bool]
55
60
  html_remove_navigation_elements: typing.Optional[bool]
56
61
  html_remove_fixed_elements: typing.Optional[bool]
57
62
  guess_xlsx_sheet_name: typing.Optional[bool]
@@ -101,6 +106,8 @@ class ParseJobConfig(pydantic.BaseModel):
101
106
  complemental_formatting_instruction: typing.Optional[str]
102
107
  content_guideline_instruction: typing.Optional[str]
103
108
  spreadsheet_extract_sub_tables: typing.Optional[bool]
109
+ spreadsheet_force_formula_computation: typing.Optional[bool]
110
+ inline_images_in_markdown: typing.Optional[bool]
104
111
  job_timeout_in_seconds: typing.Optional[float]
105
112
  job_timeout_extra_time_per_page_in_seconds: typing.Optional[float]
106
113
  strict_mode_image_extraction: typing.Optional[bool]
@@ -26,6 +26,7 @@ class PublicModelName(str, enum.Enum):
26
26
  GEMINI_25_PRO = "gemini-2.5-pro"
27
27
  GEMINI_20_FLASH = "gemini-2.0-flash"
28
28
  GEMINI_20_FLASH_LITE = "gemini-2.0-flash-lite"
29
+ GEMINI_25_FLASH_LITE = "gemini-2.5-flash-lite"
29
30
  GEMINI_15_FLASH = "gemini-1.5-flash"
30
31
  GEMINI_15_PRO = "gemini-1.5-pro"
31
32
 
@@ -50,6 +51,7 @@ class PublicModelName(str, enum.Enum):
50
51
  gemini_25_pro: typing.Callable[[], T_Result],
51
52
  gemini_20_flash: typing.Callable[[], T_Result],
52
53
  gemini_20_flash_lite: typing.Callable[[], T_Result],
54
+ gemini_25_flash_lite: typing.Callable[[], T_Result],
53
55
  gemini_15_flash: typing.Callable[[], T_Result],
54
56
  gemini_15_pro: typing.Callable[[], T_Result],
55
57
  ) -> T_Result:
@@ -91,6 +93,8 @@ class PublicModelName(str, enum.Enum):
91
93
  return gemini_20_flash()
92
94
  if self is PublicModelName.GEMINI_20_FLASH_LITE:
93
95
  return gemini_20_flash_lite()
96
+ if self is PublicModelName.GEMINI_25_FLASH_LITE:
97
+ return gemini_25_flash_lite()
94
98
  if self is PublicModelName.GEMINI_15_FLASH:
95
99
  return gemini_15_flash()
96
100
  if self is PublicModelName.GEMINI_15_PRO:
@@ -15,6 +15,7 @@ class QuotaConfigurationConfigurationType(str, enum.Enum):
15
15
  RATE_LIMIT_PARSE_CONCURRENT_DEFAULT = "rate_limit_parse_concurrent_default"
16
16
  RATE_LIMIT_CONCURRENT_JOBS_IN_EXECUTION_DEFAULT = "rate_limit_concurrent_jobs_in_execution_default"
17
17
  RATE_LIMIT_CONCURRENT_JOBS_IN_EXECUTION_DOC_INGEST = "rate_limit_concurrent_jobs_in_execution_doc_ingest"
18
+ LIMIT_EMBEDDING_CHARACTER = "limit_embedding_character"
18
19
 
19
20
  def visit(
20
21
  self,
@@ -22,6 +23,7 @@ class QuotaConfigurationConfigurationType(str, enum.Enum):
22
23
  rate_limit_parse_concurrent_default: typing.Callable[[], T_Result],
23
24
  rate_limit_concurrent_jobs_in_execution_default: typing.Callable[[], T_Result],
24
25
  rate_limit_concurrent_jobs_in_execution_doc_ingest: typing.Callable[[], T_Result],
26
+ limit_embedding_character: typing.Callable[[], T_Result],
25
27
  ) -> T_Result:
26
28
  if self is QuotaConfigurationConfigurationType.RATE_LIMIT_PARSE_CONCURRENT_PREMIUM:
27
29
  return rate_limit_parse_concurrent_premium()
@@ -31,3 +33,5 @@ class QuotaConfigurationConfigurationType(str, enum.Enum):
31
33
  return rate_limit_concurrent_jobs_in_execution_default()
32
34
  if self is QuotaConfigurationConfigurationType.RATE_LIMIT_CONCURRENT_JOBS_IN_EXECUTION_DOC_INGEST:
33
35
  return rate_limit_concurrent_jobs_in_execution_doc_ingest()
36
+ if self is QuotaConfigurationConfigurationType.LIMIT_EMBEDDING_CHARACTER:
37
+ return limit_embedding_character()
@@ -0,0 +1,50 @@
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 .extracted_table import ExtractedTable
8
+ from .spreadsheet_parsing_config import SpreadsheetParsingConfig
9
+ from .status_enum import StatusEnum
10
+
11
+ try:
12
+ import pydantic
13
+ if pydantic.__version__.startswith("1."):
14
+ raise ImportError
15
+ import pydantic.v1 as pydantic # type: ignore
16
+ except ImportError:
17
+ import pydantic # type: ignore
18
+
19
+
20
+ class SpreadsheetJob(pydantic.BaseModel):
21
+ """
22
+ A spreadsheet parsing job
23
+ """
24
+
25
+ id: str = pydantic.Field(description="The ID of the job")
26
+ user_id: str = pydantic.Field(description="The ID of the user")
27
+ project_id: str = pydantic.Field(description="The ID of the project")
28
+ file_id: str = pydantic.Field(description="The ID of the file to parse")
29
+ config: SpreadsheetParsingConfig = pydantic.Field(description="Configuration for the parsing job")
30
+ status: StatusEnum = pydantic.Field(description="The status of the parsing job")
31
+ created_at: str = pydantic.Field(description="When the job was created")
32
+ updated_at: str = pydantic.Field(description="When the job was last updated")
33
+ success: typing.Optional[bool]
34
+ tables: typing.Optional[typing.List[ExtractedTable]] = pydantic.Field(
35
+ description="All extracted tables (populated when job is complete)"
36
+ )
37
+ errors: typing.Optional[typing.List[str]] = pydantic.Field(description="Any errors encountered")
38
+
39
+ def json(self, **kwargs: typing.Any) -> str:
40
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
41
+ return super().json(**kwargs_with_defaults)
42
+
43
+ def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
44
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
45
+ return super().dict(**kwargs_with_defaults)
46
+
47
+ class Config:
48
+ frozen = True
49
+ smart_union = True
50
+ 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
+
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 SpreadsheetParsingConfig(pydantic.BaseModel):
18
+ """
19
+ Configuration for spreadsheet parsing
20
+ """
21
+
22
+ sheet_names: typing.Optional[typing.List[str]]
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.3
2
2
  Name: llama-cloud
3
- Version: 0.1.41
3
+ Version: 0.1.43
4
4
  Summary:
5
5
  License: MIT
6
6
  Author: Logan Markewich
@@ -1,4 +1,4 @@
1
- llama_cloud/__init__.py,sha256=D3PI7WP06XxMUsb_pO5oEM26Sa42KdKOjbCZZPL7kxk,26329
1
+ llama_cloud/__init__.py,sha256=LReIMfDh7RbmpAj40gB63X3h8DPB7puSXbRB_xSUGSA,26353
2
2
  llama_cloud/client.py,sha256=GDYFdv8HLjksP7v9Srg2s0R1k_nouz2toh27EG3y110,6385
3
3
  llama_cloud/core/__init__.py,sha256=QJS3CJ2TYP2E1Tge0CS6Z7r8LTNzJHQVX1hD3558eP0,519
4
4
  llama_cloud/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
@@ -9,15 +9,15 @@ 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=j5itg2tAAkpAKMu5oLAl9I9a79D9BMUYYHTvc1nHZfM,4147
12
+ llama_cloud/resources/__init__.py,sha256=OIkUubxiMa60QIlM0k1oXjIVG8OiuD2YlkfGdW26ykM,4391
13
13
  llama_cloud/resources/admin/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
14
14
  llama_cloud/resources/admin/client.py,sha256=iJClMzp6OQ_TOnAwgcPSb0BkEuuFeIq0r15lDmWUD0s,8502
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
17
  llama_cloud/resources/alpha/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
18
- llama_cloud/resources/alpha/client.py,sha256=d5cRIUykNpnVryuxWBPUpmo-2L1vMIDeZIF3DvTIx7E,4322
18
+ llama_cloud/resources/alpha/client.py,sha256=OAnzukNHIWRgpuG4gTT7-dVFCogOwXc-NxpH3DULXuA,3801
19
19
  llama_cloud/resources/beta/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
20
- llama_cloud/resources/beta/client.py,sha256=VznYZ3GeFHKcPXp_bgsitf4GEgqsqo2bvlseLc1d9gA,100996
20
+ llama_cloud/resources/beta/client.py,sha256=UqWCfbM8PqayLb6tqVcJEBRKM_fPYdn2eUN0gZPqAoI,138776
21
21
  llama_cloud/resources/chat_apps/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
22
22
  llama_cloud/resources/chat_apps/client.py,sha256=orSI8rpQbUwVEToolEeiEi5Qe--suXFvfu6D9JDii5I,23595
23
23
  llama_cloud/resources/classifier/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
@@ -42,26 +42,29 @@ llama_cloud/resources/files/client.py,sha256=Crd0IR0cV5fld4jUGAHE8VsIbw7vCYrOIyB
42
42
  llama_cloud/resources/files/types/__init__.py,sha256=ZZuDQsYsxmQ9VwpfN7oqftzGRnFTR2EMYdCa7zARo4g,204
43
43
  llama_cloud/resources/files/types/file_create_from_url_resource_info_value.py,sha256=Wc8wFgujOO5pZvbbh2TMMzpa37GKZd14GYNJ9bdq7BE,214
44
44
  llama_cloud/resources/jobs/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
45
- llama_cloud/resources/jobs/client.py,sha256=b2R_Oj2OCtcv-IIJNz9aq42hDgrOk_huqTSJhTB9VaA,6202
46
- llama_cloud/resources/llama_extract/__init__.py,sha256=V6VZ8hQXwAuvOOZyk43nnbINoDQqEr03AjKQPhYKluk,997
47
- llama_cloud/resources/llama_extract/client.py,sha256=gk57ynYMMNlR0n_57w2MoGXLt_IfAQ5tJIvqFh0GYcM,85612
48
- llama_cloud/resources/llama_extract/types/__init__.py,sha256=2Iu4w5LXZY2Govr1RzahIfY0b84y658SQjMDtj7rH_0,1497
45
+ llama_cloud/resources/jobs/client.py,sha256=uwrnDYScD45LK0tWdIGmcHYl9HEdHtK7XlwKckgVu08,5586
46
+ llama_cloud/resources/llama_extract/__init__.py,sha256=s-2VtIbgemm9LsW8ShuZalU-7yVSEynZHokDd1-10GE,1241
47
+ llama_cloud/resources/llama_extract/client.py,sha256=T7ItJxO0n3osTE3v8OXVRGygw6n2o87b0aJiX0rqkyk,81374
48
+ llama_cloud/resources/llama_extract/types/__init__.py,sha256=G-VjtCYdHuEqjMNhMgx8mbjy1g-vorghwmpaGObRHCc,1884
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
51
51
  llama_cloud/resources/llama_extract/types/extract_agent_update_data_schema.py,sha256=argR5gPRUYWY6ADCMKRdg-8NM-rsBM91_TEn8NKqVy8,305
52
52
  llama_cloud/resources/llama_extract/types/extract_agent_update_data_schema_zero_value.py,sha256=Nvd892EFhg-PzlqoFp5i2owL7hCZ2SsuL7U4Tk9NeRI,217
53
53
  llama_cloud/resources/llama_extract/types/extract_job_create_batch_data_schema_override.py,sha256=GykJ1BBecRtWYD3ZPi1YINqrr-me_pyr2w_4Ei4QOZQ,351
54
54
  llama_cloud/resources/llama_extract/types/extract_job_create_batch_data_schema_override_zero_value.py,sha256=7zXOgTYUwVAeyYeqWvX69m-7mhvK0V9cBRvgqVSd0X0,228
55
+ llama_cloud/resources/llama_extract/types/extract_job_create_data_schema_override.py,sha256=vuiJ2lGJjbXEnvFKzVnKyvgwhMXPg1Pb5GZne2DrB60,330
56
+ llama_cloud/resources/llama_extract/types/extract_job_create_data_schema_override_zero_value.py,sha256=HHEYxOSQXXyBYOiUQg_qwfQtXFj-OtThMwbUDBIgZU0,223
57
+ llama_cloud/resources/llama_extract/types/extract_job_create_priority.py,sha256=_Qdc-ScGUcsgb0pv9-Viq2JgEoDYUi0AKStlw2E4Rb4,810
55
58
  llama_cloud/resources/llama_extract/types/extract_schema_validate_request_data_schema.py,sha256=uMqpKJdCmUNtryS2bkQTNA1AgDlWdtsBOP31iMt3zNA,346
56
59
  llama_cloud/resources/llama_extract/types/extract_schema_validate_request_data_schema_zero_value.py,sha256=cUS7ez5r0Vx8T7SxwLYptZMmvpT5JoDVMyn54Q6VL-g,227
57
60
  llama_cloud/resources/llama_extract/types/extract_stateless_request_data_schema.py,sha256=lBblR9zgjJsbWL-2bDisCj7EQiX6aky6GQ4tuMr3LtU,325
58
61
  llama_cloud/resources/llama_extract/types/extract_stateless_request_data_schema_zero_value.py,sha256=4-ONLmkrEP36ZH0qRXp3sbXCtLVNQQX4dLXFeF4u47g,222
59
62
  llama_cloud/resources/organizations/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
60
- llama_cloud/resources/organizations/client.py,sha256=RoN-nkN7VeRZnrrElXhaPrgQFzGMHgNY41_XpbCXP0g,56623
63
+ llama_cloud/resources/organizations/client.py,sha256=hZ77wUJoQESh9vrWI-luCCSyr_-GmIp8xP7SHrp7a1Q,57243
61
64
  llama_cloud/resources/parsing/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
62
- llama_cloud/resources/parsing/client.py,sha256=aOoOGjpPqAYFNrkfNoqPjG1sXKQwGFYPGTzjpVuOLsY,89205
65
+ llama_cloud/resources/parsing/client.py,sha256=ThWqaL6vIf6lmB2ULd615dAbvVI8q69coi3-PnleqjE,91643
63
66
  llama_cloud/resources/pipelines/__init__.py,sha256=zyvVEOF_krvEZkCIj_kZoMKfhDqHo_R32a1mv9CriQc,1193
64
- llama_cloud/resources/pipelines/client.py,sha256=hecRBRZYiEbwKoM1-HEdilN_SSikkoqUu_mTDkg_Lq0,136403
67
+ llama_cloud/resources/pipelines/client.py,sha256=CDSwH8EOSpcyNYNcNDS-wjgO4YALMOEOJXPwL_mXyP0,142899
65
68
  llama_cloud/resources/pipelines/types/__init__.py,sha256=C68NQ5QzA0dFXf9oePFFGmV1vn96jcAp-QAznSgoRYQ,1375
66
69
  llama_cloud/resources/pipelines/types/pipeline_file_update_custom_metadata_value.py,sha256=trI48WLxPcAqV9207Q6-3cj1nl4EGlZpw7En56ZsPgg,217
67
70
  llama_cloud/resources/pipelines/types/pipeline_update_embedding_config.py,sha256=c8FF64fDrBMX_2RX4uY3CjbNc0Ss_AUJ4Eqs-KeV4Wc,2874
@@ -73,14 +76,17 @@ llama_cloud/resources/retrievers/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-
73
76
  llama_cloud/resources/retrievers/client.py,sha256=z2LhmA-cZVFzr9P6loeCZYnJbvSIk0QitFeVFp-IyZk,32126
74
77
  llama_cloud/resources/users/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
75
78
  llama_cloud/resources/users/client.py,sha256=A2s8e2syQHkkSwPz-Lrt_Zxp1K-8nqJqj5EafE6NWYs,5545
76
- llama_cloud/types/__init__.py,sha256=RRUY02ATn2w51dyjZUFJ4zc8aDb-XmSm40I_cnqGEck,32169
79
+ llama_cloud/types/__init__.py,sha256=p_tcv6haFhbsYDvM_P2HDHfMxweK31ZLqj3uPCRqd6Y,31819
77
80
  llama_cloud/types/advanced_mode_transform_config.py,sha256=4xCXye0_cPmVS1F8aNTx81sIaEPjQH9kiCCAIoqUzlI,1502
78
81
  llama_cloud/types/advanced_mode_transform_config_chunking_config.py,sha256=wYbJnWLpeQDfhmDZz-wJfYzD1iGT5Jcxb9ga3mzUuvk,1983
79
82
  llama_cloud/types/advanced_mode_transform_config_segmentation_config.py,sha256=anNGq0F5-IlbIW3kpC8OilzLJnUq5tdIcWHnRnmlYsg,1303
80
- llama_cloud/types/agent_data.py,sha256=Onaoc1QeIn3Il-8r1vgEzqvef92gHclCO7AC4kucEMI,1220
83
+ llama_cloud/types/agent_data.py,sha256=DTXKkxyr-UVfYROZma4mxiX90rV27zRZMWu8p8Ldcgk,1225
81
84
  llama_cloud/types/agent_deployment_list.py,sha256=7PWm2GHumo8CfqKU8fDRTJVDV4QQh8My1dhvBPO2zaA,1120
82
- llama_cloud/types/agent_deployment_summary.py,sha256=9IKjSwu5uNpGfVyilr2W5d0aMApOdWNbtTk5w8GegEY,1642
85
+ llama_cloud/types/agent_deployment_summary.py,sha256=xBjlWIrpoMJ-vE_4M2U_9s55Ix-DiBGZ14NF3r7LFY8,1559
83
86
  llama_cloud/types/aggregate_group.py,sha256=LybxFl_1snA9VgG6f7sogwO7kYAwH_I88pkYc0oMOH0,1164
87
+ llama_cloud/types/api_key.py,sha256=fOLhC6Ks-ArxOPOLc3FuyjcOVdyKolPK7P-o2Cm2pmk,1327
88
+ llama_cloud/types/api_key_query_response.py,sha256=OW7eKFdybpR_ttImYxPPTt2qSNCeUfgexyv2EWGjR1M,1211
89
+ llama_cloud/types/api_key_type.py,sha256=4fCmbszI7b2STKkLs1H49MXxVLVaDRXW3H_LHrbOmOg,439
84
90
  llama_cloud/types/auto_transform_config.py,sha256=HVeHZM75DMRznScqLTfrMwcZwIdyWPuaEYbPewnHqwc,1168
85
91
  llama_cloud/types/azure_open_ai_embedding.py,sha256=MeDqZoPYFN7Nv_imY9cfqDU9SPlEyAY4HcQZ4PF5X3g,2264
86
92
  llama_cloud/types/azure_open_ai_embedding_config.py,sha256=o1zZhzcGElH3SeixFErrm7P_WFHQ6LvrLem_nKJWunw,1170
@@ -101,7 +107,6 @@ llama_cloud/types/chat_app.py,sha256=fLuzYkXLq51C_Y23hoLwfmG-OiT7jlyHt2JGe6-f1IA
101
107
  llama_cloud/types/chat_app_response.py,sha256=WSKr1KI9_pGTSstr3I53kZ8qb3y87Q4ulh8fR0C7sSU,1784
102
108
  llama_cloud/types/chat_data.py,sha256=ZYqVtjXF6qPGajU4IWZu3InpU54TXJwBFiqxBepylP0,1197
103
109
  llama_cloud/types/chat_message.py,sha256=94GmO2Kp6VXhb7ZXhBPz8ExeZX1b_2LZLowuWtj6Tuw,1580
104
- llama_cloud/types/chunk_mode.py,sha256=J4vqAQfQG6PWsIv1Fe_99nVsAfDbv_P81_KVsJ9AkU4,790
105
110
  llama_cloud/types/classification_result.py,sha256=1faExxbtJLoYjy0h0Gl38Shk2idySEOenJBjQlcRpXs,1309
106
111
  llama_cloud/types/classifier_rule.py,sha256=-64iBABkQ_IXN8rA77xA6L4xSsj8epTVT9Z1C7ypGx0,1533
107
112
  llama_cloud/types/classify_job.py,sha256=adYCoiUbHNUFfr_FalvhULikeGmWp4I0P1vziVYrycM,1776
@@ -150,6 +155,7 @@ llama_cloud/types/data_source_reader_version_metadata.py,sha256=hh7Hunen9GHlvtLb
150
155
  llama_cloud/types/data_source_reader_version_metadata_reader_version.py,sha256=qZtQtHEnpWE48CjBPdljoYSzuk2rdrw5CCpWbLtM6Ps,735
151
156
  llama_cloud/types/data_source_update_dispatcher_config.py,sha256=Sh6HhXfEV2Z6PYhkYQucs2MxyKVpL3UPV-I4cbf--bA,1242
152
157
  llama_cloud/types/delete_params.py,sha256=1snPrd3WO9C1bKf0WdMslE2HQMF0yYLI3U7N53cmurM,1285
158
+ llama_cloud/types/delete_response.py,sha256=ULsQ5Faps-quM81U_vFNhYFNLqFc8qr2XArfDY3R3NA,1032
153
159
  llama_cloud/types/document_chunk_mode.py,sha256=6qH43Q0lIob2DMU95GsmSEOs4kQxOIyUFXj_kRDnyV4,470
154
160
  llama_cloud/types/document_ingestion_job_params.py,sha256=33xTAl-K-m1j_Ufkj7w2GaYg9EUH5Hwsjn869X-fWMk,1524
155
161
  llama_cloud/types/element_segmentation_config.py,sha256=QOBk8YFrgK0I2m3caqV5bpYaGXbk0fMSjZ4hUPZXZDI,959
@@ -160,15 +166,11 @@ llama_cloud/types/embedding_model_config_update_embedding_config.py,sha256=mrXFx
160
166
  llama_cloud/types/eval_execution_params.py,sha256=ntVaJh5SMZMPL4QLUiihVjUlg2SKbrezvbMKGlrF66Q,1369
161
167
  llama_cloud/types/extract_agent.py,sha256=Vj6tg8aEjUPADsUlkhHSCotrfWt8uoktaV45J81KeLc,1869
162
168
  llama_cloud/types/extract_agent_data_schema_value.py,sha256=UaDQ2KjajLDccW7F4NKdfpefeTJrr1hl0c95WRETYkM,201
163
- llama_cloud/types/extract_config.py,sha256=FgkMtDgzeFZPNPHUR0HB00EauAz9Zh4ef6uC3yPyRO8,2780
169
+ llama_cloud/types/extract_config.py,sha256=h7rbxcns9m4rMk-GI2kqN4Vth1OuO1ti1KeuDUXIzFI,2824
164
170
  llama_cloud/types/extract_config_priority.py,sha256=btl5lxl25Ve6_lTbQzQyjOKle8XoY0r16lk3364c3uw,795
165
171
  llama_cloud/types/extract_job.py,sha256=Yx4fDdCdylAji2LPTwqflVpz1o9slpj9tTLS93-1tzU,1431
166
- llama_cloud/types/extract_job_create.py,sha256=5CcKnYprImF0wEqUJDqi6flAIJ0rzOWxmrCvtl_b8WM,1802
167
- llama_cloud/types/extract_job_create_data_schema_override.py,sha256=vuiJ2lGJjbXEnvFKzVnKyvgwhMXPg1Pb5GZne2DrB60,330
168
- llama_cloud/types/extract_job_create_data_schema_override_zero_value.py,sha256=HHEYxOSQXXyBYOiUQg_qwfQtXFj-OtThMwbUDBIgZU0,223
169
- llama_cloud/types/extract_job_create_priority.py,sha256=_Qdc-ScGUcsgb0pv9-Viq2JgEoDYUi0AKStlw2E4Rb4,810
170
172
  llama_cloud/types/extract_mode.py,sha256=S7H-XcH1wvPbOPVdwG9kVnZaH1pMY-LNzAD6TjCm0mc,785
171
- llama_cloud/types/extract_models.py,sha256=w_B-TzIkRvZhiBKA2bzyHXgQHs0tT4dEiIZsEnwiCgE,2072
173
+ llama_cloud/types/extract_models.py,sha256=FwXyBJE-rcqblcslpm5gVA1S0V21GjaPIW1BqDxVqGQ,2281
172
174
  llama_cloud/types/extract_resultset.py,sha256=Alje0YQJUiA_aKi0hQs7TAnhDmZuQ_yL9b6HCNYBFQg,1627
173
175
  llama_cloud/types/extract_resultset_data.py,sha256=v9Ae4SxLsvYPE9crko4N16lBjsxuZpz1yrUOhnaM_VY,427
174
176
  llama_cloud/types/extract_resultset_data_item_value.py,sha256=JwqgDIGW0irr8QWaSTIrl24FhGxTUDOXIbxoSdIjuxs,209
@@ -186,6 +188,7 @@ llama_cloud/types/extract_schema_validate_response.py,sha256=EVSeXsljZC-gIpdXr16
186
188
  llama_cloud/types/extract_schema_validate_response_data_schema_value.py,sha256=lX9RbBHcmBRagA-K7x1he8EEmmNCiAs-tHumGfPvFVQ,224
187
189
  llama_cloud/types/extract_state.py,sha256=TNeVAXXKZaiM2srlbQlzRSn4_TDpR4xyT_yQhJUxFvk,775
188
190
  llama_cloud/types/extract_target.py,sha256=Gt-FNqblzcjdfq1hxsqEjWWu-HNLXdKy4w98nog52Ms,478
191
+ llama_cloud/types/extracted_table.py,sha256=5pgpSICKDYMF93lLgMAn5qk1xct5yrI29Gy7R1R1fII,1489
189
192
  llama_cloud/types/fail_page_mode.py,sha256=n4fgPpiEB5siPoEg0Sux4COg7ElNybjshxDoUihZwRU,786
190
193
  llama_cloud/types/failure_handling_config.py,sha256=EmAQW0qm7-JTSYFwhmIWxqkVNWym_AyAJIMEmeI9Cqc,1216
191
194
  llama_cloud/types/file.py,sha256=sXdF-cdHL3k1-DPIxAjYpb-kNHzcOAV_earVoYITzUA,1765
@@ -227,13 +230,12 @@ llama_cloud/types/job_record.py,sha256=Z6sF9AruZJo-kTRgNufAWS3WK1yaEqop6kox1GpBY
227
230
  llama_cloud/types/job_record_parameters.py,sha256=Oqxp5y0owPfjLc_NR7AYE8P3zM2PJo36N9olbyNl7AA,3425
228
231
  llama_cloud/types/job_record_with_usage_metrics.py,sha256=iNV2do5TB_0e3PoOz_DJyAaM6Cn9G8KG-dGPGgEs5SY,1198
229
232
  llama_cloud/types/l_lama_parse_transform_config.py,sha256=YQRJZvKh1Ee2FUyW_N0nqYJoW599qBgH3JCH9SH6YLo,1249
230
- llama_cloud/types/legacy_parse_job_config.py,sha256=eEPExbkUi9J7lQoY0Fuc2HK_RlhPmO30cMkfjtmmizs,12832
233
+ llama_cloud/types/legacy_parse_job_config.py,sha256=T2T6FbsWuV9akyYNXy5yk7t3D-W6uWyF3Ua23O_bmdo,12973
231
234
  llama_cloud/types/license_info_response.py,sha256=fE9vcWO8k92SBqb_wOyBu_16C61s72utA-SifEi9iBc,1192
232
235
  llama_cloud/types/llama_extract_feature_availability.py,sha256=oHJ3OyHf2rXmZhBSQfxVNnCFOp8IMKx_28EffCIEbLU,1228
233
236
  llama_cloud/types/llama_extract_mode_availability.py,sha256=UtpYxpdZ29u3UarhGzH89H5rurvZQtOqO6a44gMm9DM,1379
234
237
  llama_cloud/types/llama_extract_mode_availability_status.py,sha256=_ildgVCsBdqOLD__qdEjcYxqgKunXhJ_VHUeqjZJX8c,566
235
- llama_cloud/types/llama_extract_settings.py,sha256=mWMjXL9t7d-J051Y3iSMgT-qa1h8VvCKrpFFvqv3FHM,2779
236
- llama_cloud/types/llama_parse_parameters.py,sha256=kNpKnxuClDUYy8wO09DNKszJ_kbjx_T-s82GSdLBcNw,6552
238
+ llama_cloud/types/llama_parse_parameters.py,sha256=eaPEThvhnKuSl-kSm9e07tCnE2btGS2ZLTHzmdnD7NY,6953
237
239
  llama_cloud/types/llama_parse_parameters_priority.py,sha256=EFRudtaID_s8rLKlfW8O8O9TDbpZdniIidK-xchhfRI,830
238
240
  llama_cloud/types/llama_parse_supported_file_extensions.py,sha256=B_0N3f8Aq59W9FbsH50mGBUiyWTIXQjHFl739uAyaQw,11207
239
241
  llama_cloud/types/llm_model_data.py,sha256=6rrycqGwlK3LZ2S-WtgmeomithdLhDCgwBBZQ5KLaso,1300
@@ -249,14 +251,13 @@ llama_cloud/types/metadata_filter.py,sha256=LX2fGsUb4wvF5bj9iWO6IPQGi3i0L2Lb4cE6
249
251
  llama_cloud/types/metadata_filter_value.py,sha256=ij721gXNI7zbgsuDl9-AqBcXg2WDuVZhYS5F5YqekEs,188
250
252
  llama_cloud/types/metadata_filters.py,sha256=uSf6sB4oQu6WzMPNFG6Tc4euqEiYcj_X14Y5JWt9xVE,1315
251
253
  llama_cloud/types/metadata_filters_filters_item.py,sha256=e8KhD2q6Qc2_aK6r5CvyxC0oWVYO4F4vBIcB9eMEPPM,246
252
- llama_cloud/types/multimodal_parse_resolution.py,sha256=_eNBgAmei6rvWT1tEIefC_dl_Y3ALR81gIgJYCgy6eA,489
253
254
  llama_cloud/types/node_relationship.py,sha256=2e2PqWm0LOTiImvtsyiuaAPNIl0BItjSrQZTJv65GRA,1209
254
255
  llama_cloud/types/none_chunking_config.py,sha256=D062t314Vp-s4n9h8wNgsYfElI4PonPKmihvjEmaqdA,952
255
256
  llama_cloud/types/none_segmentation_config.py,sha256=j3jUA6E8uFtwDMEu4TFG3Q4ZGCGiuUfUW9AMO1NNqXU,956
256
257
  llama_cloud/types/object_type.py,sha256=psXN-tHmJxXbaLDYfumDA5vrZcdv2PR429z6jze0SsM,821
257
258
  llama_cloud/types/open_ai_embedding.py,sha256=RQijkvKyzbISy92LnBSEpjmIU8p7kMpdc4sdx5-btrM,2042
258
259
  llama_cloud/types/open_ai_embedding_config.py,sha256=Mquc0JrtCo8lVYA2WW7q0ZikS3HRkiMtzDFu5XA-20o,1143
259
- llama_cloud/types/organization.py,sha256=p8mYRqSsGxw17AmdW8x8nP7P1UbdpYkwr51WTIjTVLw,1467
260
+ llama_cloud/types/organization.py,sha256=wlWIVVo1KeBz7zdjR3LKGiHfS123hCRhk3c1NCMred8,1532
260
261
  llama_cloud/types/organization_create.py,sha256=hUXRwArIx_0D_lilpL7z-B0oJJ5yEX8Sbu2xqfH_9so,1086
261
262
  llama_cloud/types/page_figure_metadata.py,sha256=0oasDkjnzoVQ4W-Ci0KoJHM0iHXTGvm3cbdVOgH9nHE,1588
262
263
  llama_cloud/types/page_figure_node_with_score.py,sha256=VqNQx9RKmD_jY1kHPCvPjygshbfVLLSgtC5TX-Cy_cw,1208
@@ -271,11 +272,12 @@ llama_cloud/types/paginated_response_agent_data.py,sha256=u6Y-Cq9qjGF5tskMOQChUN
271
272
  llama_cloud/types/paginated_response_aggregate_group.py,sha256=1ajZLZJLU6-GuQ_PPsEVRFZ6bm9he807F_F_DmB2HlQ,1179
272
273
  llama_cloud/types/paginated_response_classify_job.py,sha256=ABpHn-ryRS8erj02ncxshAFe2Enw5JvSZqqbZuy0nWA,1167
273
274
  llama_cloud/types/paginated_response_quota_configuration.py,sha256=S-miK621O7V6hBB05xcFBKCwa-gBK17iTHh29Saebz8,1123
275
+ llama_cloud/types/paginated_response_spreadsheet_job.py,sha256=9_5zc_Z36tz29bf1Y8efBaTIOPfFO_ylr4uPAvZwua4,1179
274
276
  llama_cloud/types/parse_configuration.py,sha256=mXjChoWseMnj-OEUUwkV-B5bUjPZ0SGfHr8lX4dAlRY,1762
275
277
  llama_cloud/types/parse_configuration_create.py,sha256=3tnlIgHH_UgFFYP2OdVKyfIpa9mAzIzQxN4hDeazf3M,1467
276
278
  llama_cloud/types/parse_configuration_filter.py,sha256=pObpFpnMq9CXfzZteY0S-2Lmj55mIdpQU4fZrEvgiZE,1260
277
279
  llama_cloud/types/parse_configuration_query_response.py,sha256=h5L_E4NxPll8Nt47_PvfF93SMAuOlWl9q4_J9JZq6BM,1271
278
- llama_cloud/types/parse_job_config.py,sha256=ISGxvIIujO-51ksx_lfVJLxze-Bq_yaC8uh8KnEt2GQ,7015
280
+ llama_cloud/types/parse_job_config.py,sha256=nCHdCKSsb4Oxk913x1iVQkf5OZkNhyHhRE7ygv2rAwc,7416
279
281
  llama_cloud/types/parse_job_config_priority.py,sha256=__-gVv1GzktVCYZVyl6zeDt0pAZwYl-mxM0xkIHPEro,800
280
282
  llama_cloud/types/parse_plan_level.py,sha256=GBkDS19qfHseBa17EXfuTPNT4GNv5alyPrWEvWji3GY,528
281
283
  llama_cloud/types/parser_languages.py,sha256=Ps3IlaSt6tyxEI657N3-vZL96r2puk8wsf31cWnO-SI,10840
@@ -327,10 +329,9 @@ llama_cloud/types/preset_retrieval_params_search_filters_inference_schema_value.
327
329
  llama_cloud/types/presigned_url.py,sha256=-DOQo7XKvUsl-9Gz7fX6VOHdQLzGH2XRau24ASvG92E,1275
328
330
  llama_cloud/types/project.py,sha256=4NNh_ZAjEkoWl5st6b1jsPVf_SYKtUTB6rS1701G4IQ,1441
329
331
  llama_cloud/types/project_create.py,sha256=GxGmsXGJM-cHrvPFLktEkj9JtNsSdFae7-HPZFB4er0,1014
330
- llama_cloud/types/prompt_conf.py,sha256=hh8I3jxk3K6e5QZoBCLqszohMYtk73PERYoL36lLmTk,1660
331
- llama_cloud/types/public_model_name.py,sha256=sKnedLmz7dS6U1PyT7qSjvoUuFpB2Q9HkXYjh16-EVw,4405
332
+ llama_cloud/types/public_model_name.py,sha256=vT1ubiaYjJYR2XZi-rcs0KH2oRp4OertpeyjUnBMt-w,4616
332
333
  llama_cloud/types/quota_configuration.py,sha256=gTt2pLHhh9PpWxs1gtH1sTxM3Z6BBOAgSBI8AHCRoFI,2178
333
- llama_cloud/types/quota_configuration_configuration_type.py,sha256=tg7owI77nZSHaMhTYMiXO5V-_bwjlK0Ao3TP7s0TNRI,1645
334
+ llama_cloud/types/quota_configuration_configuration_type.py,sha256=6HQN4TO5zBkbWABfWu22F-5xjJF0jTWVGZdK36bSsso,1900
334
335
  llama_cloud/types/quota_configuration_status.py,sha256=Lcmu1Ek9GAcj7LP8ciMzHrDcXvQ6eEFXEXOzG8v_HmE,580
335
336
  llama_cloud/types/quota_rate_limit_configuration_value.py,sha256=pusvBUv-7FOCa5QCglNjIYtrHszbD1ppV1TtIRnX3kA,1363
336
337
  llama_cloud/types/quota_rate_limit_configuration_value_denominator_units.py,sha256=0kKYJRjLwRvViwj3tjEYarmpJjHTh5J7kvv3gR-55MY,920
@@ -347,14 +348,13 @@ llama_cloud/types/retriever_pipeline.py,sha256=F1pZDxg8JdQXRHE6ciFezd7a-Wv5bHplP
347
348
  llama_cloud/types/role.py,sha256=4pbyLVNPleDd624cDcOhu9y1WvqC0J0gmNirTOW97iA,1342
348
349
  llama_cloud/types/schema_generation_availability.py,sha256=42x9DCjLVRH27ZQC8bB4Atxd2rKoHoX2EZTT5S3LIlU,1111
349
350
  llama_cloud/types/schema_generation_availability_status.py,sha256=bRU9bKidO01Zh3qZLH7tTJQSMImeqOlFDzF30Rhff7o,566
350
- llama_cloud/types/schema_relax_mode.py,sha256=v4or6dYTvWvBBNtEd2ZSaUAb1706I0Zuh-Xztm-zx_0,635
351
351
  llama_cloud/types/semantic_chunking_config.py,sha256=dFDniTVWpRc7UcmVFvljUoyL5Ztd-l-YrHII7U-yM-k,1053
352
352
  llama_cloud/types/sentence_chunking_config.py,sha256=NA9xidK5ICxJPkEMQZWNcsV0Hw9Co_bzRWeYe4uSh9I,1116
353
353
  llama_cloud/types/sparse_model_config.py,sha256=vwt0_3ncjFCtNyWsMSYRrVuoTAWsdnQCHSTUM4HK-Lc,1529
354
354
  llama_cloud/types/sparse_model_type.py,sha256=vmjOS3tSqopsvxWqw3keeIL4kgskJv6TJL-Gw_qQQ5s,933
355
+ llama_cloud/types/spreadsheet_job.py,sha256=S5pkG1TVrZPRJheAqy4ldN9hO821UDJo8K71FlL47LI,2062
356
+ llama_cloud/types/spreadsheet_parsing_config.py,sha256=0W0WqaL_kHjf_7A6TIjWYcyvvGumINC0yiB3s4xtWiw,1069
355
357
  llama_cloud/types/status_enum.py,sha256=cUBIlys89E8PUzmVqqawu7qTDF0aRqBwiijOmRDPvx0,1018
356
- llama_cloud/types/struct_mode.py,sha256=ROicwjXfFmgVU8_xSVxJlnFUzRNKG5VIEF1wYg9uOPU,1020
357
- llama_cloud/types/struct_parse_conf.py,sha256=3QQBy8VP9JB16d4fTGK_GiU6PUALIOWCN9GYI3in6ic,2439
358
358
  llama_cloud/types/supported_llm_model.py,sha256=hubSopFICVNEegbJbtbpK6zRHwFPwUNtrw_NAw_3bfg,1380
359
359
  llama_cloud/types/supported_llm_model_names.py,sha256=w2FrfffSwpJflq1EoO6Kw7ViTOZNGX4hf60k0Qf3VLA,3213
360
360
  llama_cloud/types/text_node.py,sha256=Tq3QmuKC5cIHvC9wAtvhsXl1g2sACs2yJwQ0Uko8GSU,2846
@@ -379,7 +379,7 @@ llama_cloud/types/vertex_embedding_mode.py,sha256=yY23FjuWU_DkXjBb3JoKV4SCMqel2B
379
379
  llama_cloud/types/vertex_text_embedding.py,sha256=-C4fNCYfFl36ATdBMGFVPpiHIKxjk0KB1ERA2Ec20aU,1932
380
380
  llama_cloud/types/webhook_configuration.py,sha256=E0QIuApBLlFGgdsy5VjGIkodclJvAxSO8y8n3DsGHrg,1398
381
381
  llama_cloud/types/webhook_configuration_webhook_events_item.py,sha256=OL3moFO_6hsKZYSBQBsSHmWA0NgLcLJgBPZfABwT60c,2544
382
- llama_cloud-0.1.41.dist-info/LICENSE,sha256=_iNqtPcw1Ue7dZKwOwgPtbegMUkWVy15hC7bffAdNmY,1067
383
- llama_cloud-0.1.41.dist-info/METADATA,sha256=pEx6MUg3UzTGrnSiK2S_g5Q06ftbdq4yVDkftJPsRrU,2706
384
- llama_cloud-0.1.41.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
385
- llama_cloud-0.1.41.dist-info/RECORD,,
382
+ llama_cloud-0.1.43.dist-info/LICENSE,sha256=_iNqtPcw1Ue7dZKwOwgPtbegMUkWVy15hC7bffAdNmY,1067
383
+ llama_cloud-0.1.43.dist-info/METADATA,sha256=2MbPx3Q6WATJbYOg21kE_SOcp5NsUDpU5a-c7uG75_Y,2706
384
+ llama_cloud-0.1.43.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
385
+ llama_cloud-0.1.43.dist-info/RECORD,,