llama-cloud 0.1.16__py3-none-any.whl → 0.1.18__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of llama-cloud might be problematic. Click here for more details.
- llama_cloud/__init__.py +10 -6
- llama_cloud/environment.py +1 -1
- llama_cloud/resources/chat_apps/client.py +24 -4
- llama_cloud/resources/llama_extract/client.py +98 -10
- llama_cloud/resources/parsing/client.py +16 -65
- llama_cloud/resources/pipelines/client.py +6 -6
- llama_cloud/resources/projects/client.py +70 -0
- llama_cloud/resources/retrievers/client.py +41 -8
- llama_cloud/types/__init__.py +10 -6
- llama_cloud/types/base_plan.py +3 -0
- llama_cloud/types/base_plan_name.py +12 -0
- llama_cloud/types/cloud_confluence_data_source.py +1 -0
- llama_cloud/types/extract_job_create.py +2 -1
- llama_cloud/types/extract_mode.py +8 -4
- llama_cloud/types/extract_run.py +1 -0
- llama_cloud/types/llama_extract_settings.py +3 -2
- llama_cloud/types/llama_parse_parameters.py +4 -2
- llama_cloud/types/parsing_mode.py +12 -0
- llama_cloud/types/pipeline_file.py +2 -1
- llama_cloud/types/pipeline_file_status.py +33 -0
- llama_cloud/types/plan_limits.py +1 -0
- llama_cloud/types/preset_composite_retrieval_params.py +4 -2
- llama_cloud/types/{parsing_usage.py → re_rank_config.py} +6 -3
- llama_cloud/types/re_ranker_type.py +41 -0
- llama_cloud/types/supported_llm_model_names.py +0 -12
- llama_cloud/types/usage_and_plan.py +2 -2
- llama_cloud/types/{usage.py → usage_response.py} +3 -3
- llama_cloud/types/{usage_active_alerts_item.py → usage_response_active_alerts_item.py} +8 -4
- {llama_cloud-0.1.16.dist-info → llama_cloud-0.1.18.dist-info}/METADATA +1 -1
- {llama_cloud-0.1.16.dist-info → llama_cloud-0.1.18.dist-info}/RECORD +32 -30
- {llama_cloud-0.1.16.dist-info → llama_cloud-0.1.18.dist-info}/LICENSE +0 -0
- {llama_cloud-0.1.16.dist-info → llama_cloud-0.1.18.dist-info}/WHEEL +0 -0
|
@@ -7,9 +7,6 @@ T_Result = typing.TypeVar("T_Result")
|
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
class SupportedLlmModelNames(str, enum.Enum):
|
|
10
|
-
GPT_3_5_TURBO = "GPT_3_5_TURBO"
|
|
11
|
-
GPT_4 = "GPT_4"
|
|
12
|
-
GPT_4_TURBO = "GPT_4_TURBO"
|
|
13
10
|
GPT_4_O = "GPT_4O"
|
|
14
11
|
GPT_4_O_MINI = "GPT_4O_MINI"
|
|
15
12
|
AZURE_OPENAI_GPT_3_5_TURBO = "AZURE_OPENAI_GPT_3_5_TURBO"
|
|
@@ -22,9 +19,6 @@ class SupportedLlmModelNames(str, enum.Enum):
|
|
|
22
19
|
|
|
23
20
|
def visit(
|
|
24
21
|
self,
|
|
25
|
-
gpt_3_5_turbo: typing.Callable[[], T_Result],
|
|
26
|
-
gpt_4: typing.Callable[[], T_Result],
|
|
27
|
-
gpt_4_turbo: typing.Callable[[], T_Result],
|
|
28
22
|
gpt_4_o: typing.Callable[[], T_Result],
|
|
29
23
|
gpt_4_o_mini: typing.Callable[[], T_Result],
|
|
30
24
|
azure_openai_gpt_3_5_turbo: typing.Callable[[], T_Result],
|
|
@@ -35,12 +29,6 @@ class SupportedLlmModelNames(str, enum.Enum):
|
|
|
35
29
|
bedrock_claude_3_5_sonnet: typing.Callable[[], T_Result],
|
|
36
30
|
vertex_ai_claude_3_5_sonnet: typing.Callable[[], T_Result],
|
|
37
31
|
) -> T_Result:
|
|
38
|
-
if self is SupportedLlmModelNames.GPT_3_5_TURBO:
|
|
39
|
-
return gpt_3_5_turbo()
|
|
40
|
-
if self is SupportedLlmModelNames.GPT_4:
|
|
41
|
-
return gpt_4()
|
|
42
|
-
if self is SupportedLlmModelNames.GPT_4_TURBO:
|
|
43
|
-
return gpt_4_turbo()
|
|
44
32
|
if self is SupportedLlmModelNames.GPT_4_O:
|
|
45
33
|
return gpt_4_o()
|
|
46
34
|
if self is SupportedLlmModelNames.GPT_4_O_MINI:
|
|
@@ -5,7 +5,7 @@ import typing
|
|
|
5
5
|
|
|
6
6
|
from ..core.datetime_utils import serialize_datetime
|
|
7
7
|
from .base_plan import BasePlan
|
|
8
|
-
from .
|
|
8
|
+
from .usage_response import UsageResponse
|
|
9
9
|
|
|
10
10
|
try:
|
|
11
11
|
import pydantic
|
|
@@ -18,7 +18,7 @@ except ImportError:
|
|
|
18
18
|
|
|
19
19
|
class UsageAndPlan(pydantic.BaseModel):
|
|
20
20
|
plan: BasePlan
|
|
21
|
-
usage:
|
|
21
|
+
usage: UsageResponse
|
|
22
22
|
|
|
23
23
|
def json(self, **kwargs: typing.Any) -> str:
|
|
24
24
|
kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
|
|
@@ -5,7 +5,7 @@ import typing
|
|
|
5
5
|
|
|
6
6
|
from ..core.datetime_utils import serialize_datetime
|
|
7
7
|
from .free_credits_usage import FreeCreditsUsage
|
|
8
|
-
from .
|
|
8
|
+
from .usage_response_active_alerts_item import UsageResponseActiveAlertsItem
|
|
9
9
|
|
|
10
10
|
try:
|
|
11
11
|
import pydantic
|
|
@@ -16,7 +16,7 @@ except ImportError:
|
|
|
16
16
|
import pydantic # type: ignore
|
|
17
17
|
|
|
18
18
|
|
|
19
|
-
class
|
|
19
|
+
class UsageResponse(pydantic.BaseModel):
|
|
20
20
|
"""
|
|
21
21
|
Response model
|
|
22
22
|
"""
|
|
@@ -25,7 +25,7 @@ class Usage(pydantic.BaseModel):
|
|
|
25
25
|
total_users: typing.Optional[int]
|
|
26
26
|
total_indexes: typing.Optional[int]
|
|
27
27
|
total_indexed_pages: typing.Optional[int]
|
|
28
|
-
active_alerts: typing.Optional[typing.List[
|
|
28
|
+
active_alerts: typing.Optional[typing.List[UsageResponseActiveAlertsItem]]
|
|
29
29
|
current_invoice_total_usd_cents: typing.Optional[int]
|
|
30
30
|
total_extraction_agents: typing.Optional[int]
|
|
31
31
|
|
|
@@ -6,20 +6,24 @@ import typing
|
|
|
6
6
|
T_Result = typing.TypeVar("T_Result")
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
class
|
|
9
|
+
class UsageResponseActiveAlertsItem(str, enum.Enum):
|
|
10
10
|
PLAN_SPEND_LIMIT_EXCEEDED = "plan_spend_limit_exceeded"
|
|
11
|
+
PLAN_SPEND_LIMIT_SOFT_ALERT = "plan_spend_limit_soft_alert"
|
|
11
12
|
CONFIGURED_SPEND_LIMIT_EXCEEDED = "configured_spend_limit_exceeded"
|
|
12
13
|
FREE_CREDITS_EXHAUSTED = "free_credits_exhausted"
|
|
13
14
|
|
|
14
15
|
def visit(
|
|
15
16
|
self,
|
|
16
17
|
plan_spend_limit_exceeded: typing.Callable[[], T_Result],
|
|
18
|
+
plan_spend_limit_soft_alert: typing.Callable[[], T_Result],
|
|
17
19
|
configured_spend_limit_exceeded: typing.Callable[[], T_Result],
|
|
18
20
|
free_credits_exhausted: typing.Callable[[], T_Result],
|
|
19
21
|
) -> T_Result:
|
|
20
|
-
if self is
|
|
22
|
+
if self is UsageResponseActiveAlertsItem.PLAN_SPEND_LIMIT_EXCEEDED:
|
|
21
23
|
return plan_spend_limit_exceeded()
|
|
22
|
-
if self is
|
|
24
|
+
if self is UsageResponseActiveAlertsItem.PLAN_SPEND_LIMIT_SOFT_ALERT:
|
|
25
|
+
return plan_spend_limit_soft_alert()
|
|
26
|
+
if self is UsageResponseActiveAlertsItem.CONFIGURED_SPEND_LIMIT_EXCEEDED:
|
|
23
27
|
return configured_spend_limit_exceeded()
|
|
24
|
-
if self is
|
|
28
|
+
if self is UsageResponseActiveAlertsItem.FREE_CREDITS_EXHAUSTED:
|
|
25
29
|
return free_credits_exhausted()
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
llama_cloud/__init__.py,sha256=
|
|
1
|
+
llama_cloud/__init__.py,sha256=ginbvrHI_2KVE9mklzHcw4ftPluYxfrNwovh9cYXmLU,22689
|
|
2
2
|
llama_cloud/client.py,sha256=0fK6iRBCA77eSs0zFrYQj-zD0BLy6Dr2Ss0ETJ4WaOY,5555
|
|
3
3
|
llama_cloud/core/__init__.py,sha256=QJS3CJ2TYP2E1Tge0CS6Z7r8LTNzJHQVX1hD3558eP0,519
|
|
4
4
|
llama_cloud/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
|
|
@@ -6,12 +6,12 @@ llama_cloud/core/client_wrapper.py,sha256=xmj0jCdQ0ySzbSqHUWOkpRRy069y74I_HuXkWl
|
|
|
6
6
|
llama_cloud/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
|
|
7
7
|
llama_cloud/core/jsonable_encoder.py,sha256=OewL6HcVqdSMCYDWwN0tsh7BZasBeOJZytrAxkH977k,3891
|
|
8
8
|
llama_cloud/core/remove_none_from_dict.py,sha256=8m91FC3YuVem0Gm9_sXhJ2tGvP33owJJdrqCLEdowGw,330
|
|
9
|
-
llama_cloud/environment.py,sha256=
|
|
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
12
|
llama_cloud/resources/__init__.py,sha256=h2kWef5KlC8qpr-1MJyIoFVCsNBidRUUUWztnsr9AHs,3298
|
|
13
13
|
llama_cloud/resources/chat_apps/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
14
|
-
llama_cloud/resources/chat_apps/client.py,sha256=
|
|
14
|
+
llama_cloud/resources/chat_apps/client.py,sha256=orSI8rpQbUwVEToolEeiEi5Qe--suXFvfu6D9JDii5I,23595
|
|
15
15
|
llama_cloud/resources/component_definitions/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
16
16
|
llama_cloud/resources/component_definitions/client.py,sha256=YYfoXNa1qim2OdD5y4N5mvoBZKtrCuXS560mtqH_-1c,7569
|
|
17
17
|
llama_cloud/resources/data_sinks/__init__.py,sha256=ZHUjn3HbKhq_7QS1q74r2m5RGKF5lxcvF2P6pGvpcis,147
|
|
@@ -38,26 +38,26 @@ llama_cloud/resources/files/types/file_create_resource_info_value.py,sha256=R7Y-
|
|
|
38
38
|
llama_cloud/resources/jobs/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
39
39
|
llama_cloud/resources/jobs/client.py,sha256=mN9uOzys9aZkhOJkApUy0yhfNeK8X09xQxT34ZPptNY,5386
|
|
40
40
|
llama_cloud/resources/llama_extract/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
41
|
-
llama_cloud/resources/llama_extract/client.py,sha256=
|
|
41
|
+
llama_cloud/resources/llama_extract/client.py,sha256=Vj1I6g6BoIQt3SF1ageePvRTMaqekVkNs8RbitM_oi4,56662
|
|
42
42
|
llama_cloud/resources/organizations/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
43
43
|
llama_cloud/resources/organizations/client.py,sha256=OGSVpkfY5wu8-22IFWVmtbYSDiy0-KqA3Lc1E_jNHvg,55889
|
|
44
44
|
llama_cloud/resources/parsing/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
45
|
-
llama_cloud/resources/parsing/client.py,sha256=
|
|
45
|
+
llama_cloud/resources/parsing/client.py,sha256=X1ewrFnirLnHPIQx963kO8yG26ukTy1ki9UX27zrKZE,71600
|
|
46
46
|
llama_cloud/resources/pipelines/__init__.py,sha256=Mx7p3jDZRLMltsfywSufam_4AnHvmAfsxtMHVI72e-8,1083
|
|
47
|
-
llama_cloud/resources/pipelines/client.py,sha256=
|
|
47
|
+
llama_cloud/resources/pipelines/client.py,sha256=Zn_I4-6OJCVnmX5E7xqbdWrY89MwIdzraUfJFjmSiWk,125059
|
|
48
48
|
llama_cloud/resources/pipelines/types/__init__.py,sha256=jjaMc0V3K1HZLMYZ6WT4ydMtBCVy-oF5koqTCovbDws,1202
|
|
49
49
|
llama_cloud/resources/pipelines/types/pipeline_file_update_custom_metadata_value.py,sha256=trI48WLxPcAqV9207Q6-3cj1nl4EGlZpw7En56ZsPgg,217
|
|
50
50
|
llama_cloud/resources/pipelines/types/pipeline_update_embedding_config.py,sha256=c8FF64fDrBMX_2RX4uY3CjbNc0Ss_AUJ4Eqs-KeV4Wc,2874
|
|
51
51
|
llama_cloud/resources/pipelines/types/pipeline_update_transform_config.py,sha256=KbkyULMv-qeS3qRd31ia6pd5rOdypS0o2UL42NRcA7E,321
|
|
52
52
|
llama_cloud/resources/projects/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
53
|
-
llama_cloud/resources/projects/client.py,sha256=
|
|
53
|
+
llama_cloud/resources/projects/client.py,sha256=PF36iWtSa5amUt3q56YwLypOZjclIXSubCRv9NttpLs,25404
|
|
54
54
|
llama_cloud/resources/reports/__init__.py,sha256=cruYbQ1bIuJbRpkfaQY7ajUEslffjd7KzvzMzbtPH94,217
|
|
55
55
|
llama_cloud/resources/reports/client.py,sha256=kHjtXVVc1Xi3T1GyBvSW5K4mTdr6xQwZA3vw-liRKBg,46736
|
|
56
56
|
llama_cloud/resources/reports/types/__init__.py,sha256=LfwDYrI4RcQu-o42iAe7HkcwHww2YU90lOonBPTmZIk,291
|
|
57
57
|
llama_cloud/resources/reports/types/update_report_plan_api_v_1_reports_report_id_plan_patch_request_action.py,sha256=Qh-MSeRvDBfNb5hoLELivv1pLtrYVf52WVoP7G8V34A,807
|
|
58
58
|
llama_cloud/resources/retrievers/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
59
|
-
llama_cloud/resources/retrievers/client.py,sha256=
|
|
60
|
-
llama_cloud/types/__init__.py,sha256=
|
|
59
|
+
llama_cloud/resources/retrievers/client.py,sha256=T7fu41wXAYUTGh23ZWlKPM4e8zH7mg5MDa8F1GxNYwQ,31502
|
|
60
|
+
llama_cloud/types/__init__.py,sha256=aJzAfMdbYY2sgKi3FgiqH6JZho1d885w9GMxNt7uKqg,27960
|
|
61
61
|
llama_cloud/types/advanced_mode_transform_config.py,sha256=4xCXye0_cPmVS1F8aNTx81sIaEPjQH9kiCCAIoqUzlI,1502
|
|
62
62
|
llama_cloud/types/advanced_mode_transform_config_chunking_config.py,sha256=wYbJnWLpeQDfhmDZz-wJfYzD1iGT5Jcxb9ga3mzUuvk,1983
|
|
63
63
|
llama_cloud/types/advanced_mode_transform_config_segmentation_config.py,sha256=anNGq0F5-IlbIW3kpC8OilzLJnUq5tdIcWHnRnmlYsg,1303
|
|
@@ -65,9 +65,9 @@ llama_cloud/types/app_schema_chat_chat_message.py,sha256=4Mplkc7PczuxKL7Gga3aj8Q
|
|
|
65
65
|
llama_cloud/types/auto_transform_config.py,sha256=HVeHZM75DMRznScqLTfrMwcZwIdyWPuaEYbPewnHqwc,1168
|
|
66
66
|
llama_cloud/types/azure_open_ai_embedding.py,sha256=MeDqZoPYFN7Nv_imY9cfqDU9SPlEyAY4HcQZ4PF5X3g,2264
|
|
67
67
|
llama_cloud/types/azure_open_ai_embedding_config.py,sha256=o1zZhzcGElH3SeixFErrm7P_WFHQ6LvrLem_nKJWunw,1170
|
|
68
|
-
llama_cloud/types/base_plan.py,sha256=
|
|
68
|
+
llama_cloud/types/base_plan.py,sha256=5DZi20EOciTc5okLAxQDqyGylsW-DflTy14dcvQb2fQ,1910
|
|
69
69
|
llama_cloud/types/base_plan_metronome_plan_type.py,sha256=I3g_dVoWWztbmpWpYmseDqQSbwtlLUl2vS01tfgMjEA,499
|
|
70
|
-
llama_cloud/types/base_plan_name.py,sha256=
|
|
70
|
+
llama_cloud/types/base_plan_name.py,sha256=keHQaw9YV9ghsWnGfnHrLtB4qNz0v4TWX4_MoO3flRM,1926
|
|
71
71
|
llama_cloud/types/base_plan_plan_frequency.py,sha256=idUZlDaSdMrMZ2lQ1ytBWM4QyduIZu6Gt2eLU0LVqH4,684
|
|
72
72
|
llama_cloud/types/base_prompt_template.py,sha256=Cw3887tnytHZ5bJBSlniyU9k5ASidv9VYR86--IbNqo,1248
|
|
73
73
|
llama_cloud/types/bedrock_embedding.py,sha256=qrUoVW9Q2DLg-3nBRfGsZqUWGszfzc6ZHR8LJiXTZk4,1908
|
|
@@ -83,7 +83,7 @@ llama_cloud/types/chunk_mode.py,sha256=J4vqAQfQG6PWsIv1Fe_99nVsAfDbv_P81_KVsJ9Ak
|
|
|
83
83
|
llama_cloud/types/cloud_az_storage_blob_data_source.py,sha256=NT4cYsD1M868_bSJxKM9cvTMtjQtQxKloE4vRv8_lwg,1534
|
|
84
84
|
llama_cloud/types/cloud_azure_ai_search_vector_store.py,sha256=9GTaft7BaKsR9RJQp5dlpbslXUlTMA1AcDdKV1ApfqI,1513
|
|
85
85
|
llama_cloud/types/cloud_box_data_source.py,sha256=9bffCaKGvctSsk9OdTpzzP__O1NDpb9wdvKY2uwjpwY,1470
|
|
86
|
-
llama_cloud/types/cloud_confluence_data_source.py,sha256=
|
|
86
|
+
llama_cloud/types/cloud_confluence_data_source.py,sha256=QsZbWPbRYxRoaCOGFzvLC_31QMSDQHaLYy3dgpMnQrM,1603
|
|
87
87
|
llama_cloud/types/cloud_document.py,sha256=Rg_H8lcz2TzxEAIdU-m5mGpkM7s0j1Cn4JHkXYddmGs,1255
|
|
88
88
|
llama_cloud/types/cloud_document_create.py,sha256=fQ1gZAtLCpr-a-sPbMez_5fK9JMU3uyp2tNvIzWNG3U,1278
|
|
89
89
|
llama_cloud/types/cloud_google_drive_data_source.py,sha256=jf5k7SY8scR-8_X27ShYSh1vOiFteqIH6cNcG7xZGLE,1304
|
|
@@ -142,19 +142,19 @@ llama_cloud/types/extract_agent_update_data_schema.py,sha256=argR5gPRUYWY6ADCMKR
|
|
|
142
142
|
llama_cloud/types/extract_agent_update_data_schema_zero_value.py,sha256=Nvd892EFhg-PzlqoFp5i2owL7hCZ2SsuL7U4Tk9NeRI,217
|
|
143
143
|
llama_cloud/types/extract_config.py,sha256=oR_6uYl8-58q6a5BsgymJuqCKPn6JoY7SAUmjT9M3es,1369
|
|
144
144
|
llama_cloud/types/extract_job.py,sha256=Yx4fDdCdylAji2LPTwqflVpz1o9slpj9tTLS93-1tzU,1431
|
|
145
|
-
llama_cloud/types/extract_job_create.py,sha256=
|
|
145
|
+
llama_cloud/types/extract_job_create.py,sha256=xgLzFifEx5vxPSoqCh1arNZlxXWNNzvPeMCXS00GnZo,1542
|
|
146
146
|
llama_cloud/types/extract_job_create_batch.py,sha256=64BAproProYtPk7vAPGvFoxvlgg7ZLb1LSg3ChIf7AM,1589
|
|
147
147
|
llama_cloud/types/extract_job_create_batch_data_schema_override.py,sha256=GykJ1BBecRtWYD3ZPi1YINqrr-me_pyr2w_4Ei4QOZQ,351
|
|
148
148
|
llama_cloud/types/extract_job_create_batch_data_schema_override_zero_value.py,sha256=7zXOgTYUwVAeyYeqWvX69m-7mhvK0V9cBRvgqVSd0X0,228
|
|
149
149
|
llama_cloud/types/extract_job_create_data_schema_override.py,sha256=vuiJ2lGJjbXEnvFKzVnKyvgwhMXPg1Pb5GZne2DrB60,330
|
|
150
150
|
llama_cloud/types/extract_job_create_data_schema_override_zero_value.py,sha256=HHEYxOSQXXyBYOiUQg_qwfQtXFj-OtThMwbUDBIgZU0,223
|
|
151
|
-
llama_cloud/types/extract_mode.py,sha256=
|
|
151
|
+
llama_cloud/types/extract_mode.py,sha256=uTyzzzeO5lo4idGRQQSnJc9pKSkuKFdXaFRyH0dKd_Q,790
|
|
152
152
|
llama_cloud/types/extract_resultset.py,sha256=Alje0YQJUiA_aKi0hQs7TAnhDmZuQ_yL9b6HCNYBFQg,1627
|
|
153
153
|
llama_cloud/types/extract_resultset_data.py,sha256=v9Ae4SxLsvYPE9crko4N16lBjsxuZpz1yrUOhnaM_VY,427
|
|
154
154
|
llama_cloud/types/extract_resultset_data_item_value.py,sha256=JwqgDIGW0irr8QWaSTIrl24FhGxTUDOXIbxoSdIjuxs,209
|
|
155
155
|
llama_cloud/types/extract_resultset_data_zero_value.py,sha256=-tqgtp3hwIr2NhuC28wVWqQDgFFGYPfRdzneMtNzoBU,209
|
|
156
156
|
llama_cloud/types/extract_resultset_extraction_metadata_value.py,sha256=LEFcxgBCY35Tw93RIU8aEcyJYcLuhPp5-_G5XP07-xw,219
|
|
157
|
-
llama_cloud/types/extract_run.py,sha256=
|
|
157
|
+
llama_cloud/types/extract_run.py,sha256=wjjt1kwMLouLq8CyA0RTnEzNIiWfPAw10mgPwXHNAV8,2368
|
|
158
158
|
llama_cloud/types/extract_run_data.py,sha256=Y24NhSSXSHDOI3qtETs9Iln5y3p5kCl4LB5F_RIoUj4,385
|
|
159
159
|
llama_cloud/types/extract_run_data_item_value.py,sha256=jbR5Yo3bGwHw72OJJ1l5NGTngE-rC2Jxd5b6BrNKzOc,197
|
|
160
160
|
llama_cloud/types/extract_run_data_schema_value.py,sha256=C4uNdNQHBrkribgmR6nxOQpRo1eydYJ78a0lm7B-e4o,199
|
|
@@ -186,10 +186,10 @@ llama_cloud/types/job_name_mapping.py,sha256=2dQFQlVHoeSlkyEKSEJv0M3PzJf7hMvkuAB
|
|
|
186
186
|
llama_cloud/types/job_names.py,sha256=ZapQT__pLI14SagjGi8AsEwWY949hBoplQemMgb_Aoc,4098
|
|
187
187
|
llama_cloud/types/job_record.py,sha256=r2WzLQXSOFogNMN2rl10rAlYI9OTCmVn06QaZXxa0rQ,2058
|
|
188
188
|
llama_cloud/types/job_record_with_usage_metrics.py,sha256=iNV2do5TB_0e3PoOz_DJyAaM6Cn9G8KG-dGPGgEs5SY,1198
|
|
189
|
-
llama_cloud/types/llama_extract_settings.py,sha256=
|
|
189
|
+
llama_cloud/types/llama_extract_settings.py,sha256=IQFxtKa4GtHKc9w-fLwsH0LSKDWzR9_vZ_cTFJ9cGBI,2288
|
|
190
190
|
llama_cloud/types/llama_index_core_base_llms_types_chat_message.py,sha256=NelHo-T-ebVMhRKsqE_xV8AJW4c7o6lS0uEQnPsmTwg,1365
|
|
191
191
|
llama_cloud/types/llama_index_core_base_llms_types_chat_message_blocks_item.py,sha256=tTglUqrSUaVc2Wsi4uIt5MU-80_oxZzTnhf8ziilVGY,874
|
|
192
|
-
llama_cloud/types/llama_parse_parameters.py,sha256=
|
|
192
|
+
llama_cloud/types/llama_parse_parameters.py,sha256=WS4nVsYQIKJlikdpD7jcZP0d_Qs12xZkGTIJImpKltU,5317
|
|
193
193
|
llama_cloud/types/llama_parse_supported_file_extensions.py,sha256=B_0N3f8Aq59W9FbsH50mGBUiyWTIXQjHFl739uAyaQw,11207
|
|
194
194
|
llama_cloud/types/llm.py,sha256=7iIItVPjURp4u5xxJDAFIefUdhUKwIuA245WXilJPXE,2234
|
|
195
195
|
llama_cloud/types/llm_model_data.py,sha256=6rrycqGwlK3LZ2S-WtgmeomithdLhDCgwBBZQ5KLaso,1300
|
|
@@ -231,8 +231,7 @@ llama_cloud/types/parsing_job_json_result.py,sha256=BA3_u-ChHpE5wm08WmOvgPUsMsCl
|
|
|
231
231
|
llama_cloud/types/parsing_job_markdown_result.py,sha256=gPIUO0JwtKwvSHcRYEr995DNl7VN3EaaSaj4aPHCP4o,1077
|
|
232
232
|
llama_cloud/types/parsing_job_structured_result.py,sha256=w_Z4DOHjwUPmffjc4qJiGYbniWTpkjpVcD4irL1dDj0,1017
|
|
233
233
|
llama_cloud/types/parsing_job_text_result.py,sha256=TP-7IRTWZLAZz7NYLkzi4PsGnaRJuPTt40p56Mk6Rhw,1065
|
|
234
|
-
llama_cloud/types/parsing_mode.py,sha256=
|
|
235
|
-
llama_cloud/types/parsing_usage.py,sha256=JLlozu-vIkcRKqWaOVJ9Z2TrY7peJRTzOpYjOThGKGQ,1012
|
|
234
|
+
llama_cloud/types/parsing_mode.py,sha256=s89EhQB3N9yH9a5EtuB8tDcrHLe2KJTM6e0Do-iU7FE,2038
|
|
236
235
|
llama_cloud/types/partition_names.py,sha256=zZZn-sn59gwch2fa7fGMwFWUEuu5Dfen3ZqKtcPnBEM,1877
|
|
237
236
|
llama_cloud/types/permission.py,sha256=LjhZdo0oLvk7ZVIF1d6Qja--AKH5Ri0naUhuJvZS6Ng,1345
|
|
238
237
|
llama_cloud/types/pipeline.py,sha256=eVNfQjfQTArB3prPeDkfDK6PtfhhBxW7-_VhH9MzlsE,2789
|
|
@@ -246,19 +245,20 @@ llama_cloud/types/pipeline_data_source_create.py,sha256=wMsymqB-YGyf3jdQr-N5ODVG
|
|
|
246
245
|
llama_cloud/types/pipeline_data_source_custom_metadata_value.py,sha256=8n3r60sxMx4_udW0yzJZxzyWeK6L3cc2-jLGZFW4EDs,217
|
|
247
246
|
llama_cloud/types/pipeline_deployment.py,sha256=eVBrz032aPb2cqtIIVYT5MTHQvBNm89XazoNrRWVugo,1356
|
|
248
247
|
llama_cloud/types/pipeline_embedding_config.py,sha256=mpeJ6bOMvRUO12VTYbcHmgJ3ssHNKAUQMrF06j2t7Lc,2721
|
|
249
|
-
llama_cloud/types/pipeline_file.py,sha256=
|
|
248
|
+
llama_cloud/types/pipeline_file.py,sha256=_y0O_I7xr4ydXJb4__qyD8OlgTxS2I4RXdKCgV7qXGc,2520
|
|
250
249
|
llama_cloud/types/pipeline_file_config_hash_value.py,sha256=4lvLnDpzNAHdiMkGJTTNDTu3p3H7Nxw5MR1Mzte7-_M,201
|
|
251
250
|
llama_cloud/types/pipeline_file_create.py,sha256=yoMIzWED0ktKerE48kgzInBa3d0aNGO5JjTtDTDAn4A,1310
|
|
252
251
|
llama_cloud/types/pipeline_file_create_custom_metadata_value.py,sha256=olVj5yhQFx1QqWO1Wv9d6AtL-YyYO9_OYtOfcD2ZeGY,217
|
|
253
252
|
llama_cloud/types/pipeline_file_custom_metadata_value.py,sha256=ClFphYDNlHxeyLF5BWxIUhs2rooS0Xtqxr_Ae8dn8zE,211
|
|
254
253
|
llama_cloud/types/pipeline_file_permission_info_value.py,sha256=a9yfg5n9po0-4ljGx8DtJoeLBwWFpaEk9ZQUN195BXg,211
|
|
255
254
|
llama_cloud/types/pipeline_file_resource_info_value.py,sha256=s3uFGQNwlUEr-X4TJZkW_kMBvX3h1sXRJoYlJRvHSDc,209
|
|
255
|
+
llama_cloud/types/pipeline_file_status.py,sha256=7AJOlwqZVcsk6aPF6Q-x7UzjdzdBj4FeXAZ4m35Bb5M,1003
|
|
256
256
|
llama_cloud/types/pipeline_transform_config.py,sha256=zMr-ePLKGjbaScxbAHaSwYBL7rrNibVlnn0cbgElDfU,824
|
|
257
257
|
llama_cloud/types/pipeline_type.py,sha256=tTqrhxHP5xd7W2dQGD0e5FOv886nwJssyaVlXpWrtRo,551
|
|
258
|
-
llama_cloud/types/plan_limits.py,sha256=
|
|
258
|
+
llama_cloud/types/plan_limits.py,sha256=WAbDbRl8gsQxvhmuVB0YT8mry-0uKg6c66uivyppdQU,2056
|
|
259
259
|
llama_cloud/types/playground_session.py,sha256=F8u2KZL2YaOrsT-o1n4zbhyPxSsoduc3ZCzQB8AecFA,1858
|
|
260
260
|
llama_cloud/types/pooling.py,sha256=5Fr6c8rx9SDWwWzEvD78suob2d79ktodUtLUAUHMbP8,651
|
|
261
|
-
llama_cloud/types/preset_composite_retrieval_params.py,sha256=
|
|
261
|
+
llama_cloud/types/preset_composite_retrieval_params.py,sha256=yEf1pk4Wz5J6SxgB8elklwuyVDCRSZqfWC6x3hJUS4Q,1366
|
|
262
262
|
llama_cloud/types/preset_retrieval_params.py,sha256=gEkjXr4202ebLtPL6pYX5hj5NSwANpAdhZbEHCbE2RA,1782
|
|
263
263
|
llama_cloud/types/presigned_url.py,sha256=-DOQo7XKvUsl-9Gz7fX6VOHdQLzGH2XRau24ASvG92E,1275
|
|
264
264
|
llama_cloud/types/progress_event.py,sha256=Bk73A8geTVaq0ze5pMnbkAmx7FSOHQIixYCpCas_dcY,1684
|
|
@@ -267,6 +267,8 @@ llama_cloud/types/project.py,sha256=4NNh_ZAjEkoWl5st6b1jsPVf_SYKtUTB6rS1701G4IQ,
|
|
|
267
267
|
llama_cloud/types/project_create.py,sha256=GxGmsXGJM-cHrvPFLktEkj9JtNsSdFae7-HPZFB4er0,1014
|
|
268
268
|
llama_cloud/types/prompt_conf.py,sha256=4vAKt0Gce9ALRb_-FE0QbRiFM1Rc9OQAADggwBwgauE,1402
|
|
269
269
|
llama_cloud/types/pydantic_program_mode.py,sha256=QfvpqR7TqyNuOxo78Sr58VOu7KDSBrHJM4XXBB0F5z0,1202
|
|
270
|
+
llama_cloud/types/re_rank_config.py,sha256=mxRWwrC5BLg3DP1yEyRwW2lIpv5BuXZfTy8f4RbcOp0,1262
|
|
271
|
+
llama_cloud/types/re_ranker_type.py,sha256=qYItMEHrf80ePBp7gNGBSL67mkTIsqco92WJaJiYweo,1123
|
|
270
272
|
llama_cloud/types/recurring_credit_grant.py,sha256=19qI3p5k1mQ1Qoo-gCQU02Aa42XpEsmwxPF1F88F-Yg,1517
|
|
271
273
|
llama_cloud/types/related_node_info.py,sha256=frQg_RqrSBc62ooJ4QOF5QRKymHcNot5WVFAB_g1sMg,1216
|
|
272
274
|
llama_cloud/types/related_node_info_node_type.py,sha256=lH95d8G-EnKCllV_igJsBfYt49y162PoNxWtrCo_Kgk,173
|
|
@@ -299,7 +301,7 @@ llama_cloud/types/status_enum.py,sha256=cUBIlys89E8PUzmVqqawu7qTDF0aRqBwiijOmRDP
|
|
|
299
301
|
llama_cloud/types/struct_mode.py,sha256=ROicwjXfFmgVU8_xSVxJlnFUzRNKG5VIEF1wYg9uOPU,1020
|
|
300
302
|
llama_cloud/types/struct_parse_conf.py,sha256=Od5f8azJlJTJJ6rwtZEIaEsSSYBdrNsHtLeMtdpMtxM,2101
|
|
301
303
|
llama_cloud/types/supported_llm_model.py,sha256=0v-g01LyZB7TeN0zwAeSJejRoT95SVaXOJhNz7boJwM,1461
|
|
302
|
-
llama_cloud/types/supported_llm_model_names.py,sha256=
|
|
304
|
+
llama_cloud/types/supported_llm_model_names.py,sha256=xZhgu4NcxnA61vmQsxDFgPSRjWtczcXOoCKrtwOBWqc,2161
|
|
303
305
|
llama_cloud/types/text_block.py,sha256=X154sQkSyposXuRcEWNp_tWcDQ-AI6q_-MfJUN5exP8,958
|
|
304
306
|
llama_cloud/types/text_node.py,sha256=Tq3QmuKC5cIHvC9wAtvhsXl1g2sACs2yJwQ0Uko8GSU,2846
|
|
305
307
|
llama_cloud/types/text_node_relationships_value.py,sha256=qmXURTk1Xg7ZDzRSSV1uDEel0AXRLohND5ioezibHY0,217
|
|
@@ -307,10 +309,10 @@ llama_cloud/types/text_node_with_score.py,sha256=k-KYWO_mgJBvO6xUfOD5W6v1Ku9E586
|
|
|
307
309
|
llama_cloud/types/token_chunking_config.py,sha256=XNvnTsNd--YOMQ_Ad8hoqhYgQftqkBHKVn6i7nJnMqs,1067
|
|
308
310
|
llama_cloud/types/token_text_splitter.py,sha256=iTT3x9yO021v757B2r-0Z-WFQiIESLqEJUCmUUwPQ_o,1899
|
|
309
311
|
llama_cloud/types/transformation_category_names.py,sha256=Wb7NBB0f-tEtfEZQis-iKy71SUKmmHFcXf6XLn6g0XU,545
|
|
310
|
-
llama_cloud/types/
|
|
311
|
-
llama_cloud/types/usage_active_alerts_item.py,sha256=YZkSH_Vd3hu5f-Nv0LKKj9slVTa3GsOcbSPhttKcVqQ,964
|
|
312
|
-
llama_cloud/types/usage_and_plan.py,sha256=DsQVkOkh6yiDY9FsGR34DcTocj53loO2lU55P45XnWY,1040
|
|
312
|
+
llama_cloud/types/usage_and_plan.py,sha256=bclc7TE7CTBu7RLiTHG426dziyj--I8m5NVu86I2AV4,1065
|
|
313
313
|
llama_cloud/types/usage_metric_response.py,sha256=ukvtNZLeLacv-5F0-GQ5wTBZOPUPEjAeurgYPc4s7nA,1047
|
|
314
|
+
llama_cloud/types/usage_response.py,sha256=o0u15PGNQmOOie4kJFfc4Rw0jKGLckBJdH0NCAfT8_k,1499
|
|
315
|
+
llama_cloud/types/usage_response_active_alerts_item.py,sha256=5EgU7go_CPe2Bmio12MwDoJaMnaMW0XjFNvVks0BhQY,1255
|
|
314
316
|
llama_cloud/types/user_job_record.py,sha256=mJHdokJsemXJOwM2l7fsW3X0SlwSNcy7yHbcXZHh3I4,1098
|
|
315
317
|
llama_cloud/types/user_organization.py,sha256=Ydel7grMnKiPMWJmSWhCFCm3v_n286Gk36ANtDLNLd4,1770
|
|
316
318
|
llama_cloud/types/user_organization_create.py,sha256=Zj57s9xuYVnLW2p8i4j2QORL-G1y7Ab3avXE1baERQY,1189
|
|
@@ -321,7 +323,7 @@ llama_cloud/types/validation_error_loc_item.py,sha256=LAtjCHIllWRBFXvAZ5QZpp7CPX
|
|
|
321
323
|
llama_cloud/types/vertex_ai_embedding_config.py,sha256=DvQk2xMJFmo54MEXTzoM4KSADyhGm_ygmFyx6wIcQdw,1159
|
|
322
324
|
llama_cloud/types/vertex_embedding_mode.py,sha256=yY23FjuWU_DkXjBb3JoKV4SCMqel2BaIMltDqGnIowU,1217
|
|
323
325
|
llama_cloud/types/vertex_text_embedding.py,sha256=-C4fNCYfFl36ATdBMGFVPpiHIKxjk0KB1ERA2Ec20aU,1932
|
|
324
|
-
llama_cloud-0.1.
|
|
325
|
-
llama_cloud-0.1.
|
|
326
|
-
llama_cloud-0.1.
|
|
327
|
-
llama_cloud-0.1.
|
|
326
|
+
llama_cloud-0.1.18.dist-info/LICENSE,sha256=_iNqtPcw1Ue7dZKwOwgPtbegMUkWVy15hC7bffAdNmY,1067
|
|
327
|
+
llama_cloud-0.1.18.dist-info/METADATA,sha256=X5HryqbkGcNToG0AitXrvbgzLP4b-Xe0atTODJRjZck,902
|
|
328
|
+
llama_cloud-0.1.18.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
|
329
|
+
llama_cloud-0.1.18.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|