shaped 2.0.1__py3-none-any.whl → 2.0.2__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.
- shaped/__init__.py +54 -4
- shaped/autogen/__init__.py +541 -66
- shaped/autogen/api/__init__.py +4 -3
- shaped/autogen/api/engine_api.py +1467 -0
- shaped/autogen/api/{dataset_api.py → query_api.py} +219 -194
- shaped/autogen/api/table_api.py +1494 -0
- shaped/autogen/api/{model_management_api.py → view_api.py} +179 -181
- shaped/autogen/api_client.py +15 -8
- shaped/autogen/configuration.py +20 -9
- shaped/autogen/exceptions.py +19 -2
- shaped/autogen/models/__init__.py +254 -52
- shaped/autogen/models/ai_enrichment_view_config.py +123 -0
- shaped/autogen/models/{path.py → algorithm.py} +19 -19
- shaped/autogen/models/amplitude_table_config.py +106 -0
- shaped/autogen/models/ascending.py +136 -0
- shaped/autogen/models/attn_dropout_prob.py +136 -0
- shaped/autogen/models/attribute_journey.py +124 -0
- shaped/autogen/models/attribute_value.py +178 -0
- shaped/autogen/models/autoscaling_config.py +95 -0
- shaped/autogen/models/aws_pinpoint_table_config.py +108 -0
- shaped/autogen/models/batch_size.py +136 -0
- shaped/autogen/models/batch_size1.py +136 -0
- shaped/autogen/models/batch_size2.py +136 -0
- shaped/autogen/models/big_query_table_config.py +147 -0
- shaped/autogen/models/bm25.py +136 -0
- shaped/autogen/models/boosted_reorder_step.py +125 -0
- shaped/autogen/models/canary_rollout.py +99 -0
- shaped/autogen/models/candidate_attributes_retrieve_step.py +126 -0
- shaped/autogen/models/candidate_ids_retrieve_step.py +113 -0
- shaped/autogen/models/candidate_retrieval_strategy.py +41 -0
- shaped/autogen/models/clickhouse_table_config.py +146 -0
- shaped/autogen/models/column_order_retrieve_step.py +123 -0
- shaped/autogen/models/column_ordering.py +91 -0
- shaped/autogen/models/create_table_response.py +87 -0
- shaped/autogen/models/create_view_response.py +87 -0
- shaped/autogen/models/custom_table_config.py +135 -0
- shaped/autogen/models/data_compute_config.py +89 -0
- shaped/autogen/models/data_config.py +145 -0
- shaped/autogen/models/data_config_interaction_table.py +146 -0
- shaped/autogen/models/data_split_config.py +88 -0
- shaped/autogen/models/data_split_strategy.py +37 -0
- shaped/autogen/models/data_tier.py +37 -0
- shaped/autogen/models/default.py +246 -0
- shaped/autogen/models/delete_engine_response.py +87 -0
- shaped/autogen/models/delete_table_response.py +87 -0
- shaped/autogen/models/delete_view_response.py +87 -0
- shaped/autogen/models/deployment_config.py +123 -0
- shaped/autogen/models/distance_function.py +38 -0
- shaped/autogen/models/diversity_reorder_step.py +137 -0
- shaped/autogen/models/dropout_rate.py +136 -0
- shaped/autogen/models/dynamo_db_table_config.py +160 -0
- shaped/autogen/models/dynamo_db_table_config_scan_kwargs_value.py +138 -0
- shaped/autogen/models/embedder_batch_size.py +136 -0
- shaped/autogen/models/embedding_config.py +93 -0
- shaped/autogen/models/embedding_dim.py +136 -0
- shaped/autogen/models/embedding_dims.py +136 -0
- shaped/autogen/models/embedding_size.py +136 -0
- shaped/autogen/models/encoder.py +140 -0
- shaped/autogen/models/encoding_pooling_strategy.py +38 -0
- shaped/autogen/models/engine.py +109 -0
- shaped/autogen/models/engine_config_v2.py +152 -0
- shaped/autogen/models/engine_details_response.py +120 -0
- shaped/autogen/models/engine_schema.py +113 -0
- shaped/autogen/models/engine_schema_user_inner.py +134 -0
- shaped/autogen/models/entity_config.py +109 -0
- shaped/autogen/models/entity_journey.py +152 -0
- shaped/autogen/models/entity_type.py +38 -0
- shaped/autogen/models/evaluation_config.py +92 -0
- shaped/autogen/models/exploration_reorder_step.py +125 -0
- shaped/autogen/models/expression_filter_step.py +106 -0
- shaped/autogen/models/factors.py +136 -0
- shaped/autogen/models/factors1.py +136 -0
- shaped/autogen/models/feature.py +90 -0
- shaped/autogen/models/feature_type.py +60 -0
- shaped/autogen/models/file_table_config.py +112 -0
- shaped/autogen/models/filter_config.py +99 -0
- shaped/autogen/models/filter_dataset.py +140 -0
- shaped/autogen/models/filter_index_type.py +36 -0
- shaped/autogen/models/filter_retrieve_step.py +113 -0
- shaped/autogen/models/global_filter.py +102 -0
- shaped/autogen/models/hidden_dropout_prob.py +136 -0
- shaped/autogen/models/hidden_size.py +136 -0
- shaped/autogen/models/hidden_size1.py +136 -0
- shaped/autogen/models/http_problem_response.py +115 -0
- shaped/autogen/models/http_validation_error.py +2 -2
- shaped/autogen/models/hugging_face_encoder.py +113 -0
- shaped/autogen/models/iceberg_table_config.py +154 -0
- shaped/autogen/models/index_config.py +101 -0
- shaped/autogen/models/inner_size.py +136 -0
- shaped/autogen/models/inner_size1.py +136 -0
- shaped/autogen/models/interaction_config.py +122 -0
- shaped/autogen/models/interaction_pooling_encoder.py +104 -0
- shaped/autogen/models/interaction_round_robin_encoder.py +104 -0
- shaped/autogen/models/item_attribute_pooling_encoder.py +124 -0
- shaped/autogen/models/journey.py +140 -0
- shaped/autogen/models/kafka_table_config.py +129 -0
- shaped/autogen/models/kinesis_table_config.py +140 -0
- shaped/autogen/models/kinesis_table_config_column_schema_value.py +136 -0
- shaped/autogen/models/label.py +90 -0
- shaped/autogen/models/label_type.py +37 -0
- shaped/autogen/models/laplace_smoothing.py +136 -0
- shaped/autogen/models/latency_scaling_policy.py +112 -0
- shaped/autogen/models/learning_rate.py +136 -0
- shaped/autogen/models/learning_rate1.py +136 -0
- shaped/autogen/models/learning_rate2.py +136 -0
- shaped/autogen/models/learning_rate3.py +136 -0
- shaped/autogen/models/lexical_search_mode.py +99 -0
- shaped/autogen/models/list_engines_response.py +95 -0
- shaped/autogen/models/list_tables_response.py +95 -0
- shaped/autogen/models/list_views_response.py +95 -0
- shaped/autogen/models/loss_types.py +37 -0
- shaped/autogen/models/lr.py +136 -0
- shaped/autogen/models/lr1.py +136 -0
- shaped/autogen/models/lr2.py +136 -0
- shaped/autogen/models/max_depth.py +136 -0
- shaped/autogen/models/max_leaves.py +136 -0
- shaped/autogen/models/max_seq_length.py +136 -0
- shaped/autogen/models/max_seq_length1.py +136 -0
- shaped/autogen/models/max_seq_length2.py +136 -0
- shaped/autogen/models/mode.py +134 -0
- shaped/autogen/models/mode1.py +134 -0
- shaped/autogen/models/mode2.py +136 -0
- shaped/autogen/models/mongo_db_table_config.py +147 -0
- shaped/autogen/models/mssql_table_config.py +155 -0
- shaped/autogen/models/{my_sql_dataset_config.py → my_sql_table_config.py} +45 -28
- shaped/autogen/models/n_epochs.py +136 -0
- shaped/autogen/models/n_epochs1.py +136 -0
- shaped/autogen/models/n_epochs2.py +136 -0
- shaped/autogen/models/n_estimators.py +136 -0
- shaped/autogen/models/n_heads.py +136 -0
- shaped/autogen/models/n_layers.py +136 -0
- shaped/autogen/models/neg_per_positive.py +136 -0
- shaped/autogen/models/negative_samples_count.py +136 -0
- shaped/autogen/models/ngram_tokenizer.py +103 -0
- shaped/autogen/models/no_op_config.py +117 -0
- shaped/autogen/models/num_blocks.py +136 -0
- shaped/autogen/models/num_heads.py +136 -0
- shaped/autogen/models/num_leaves.py +136 -0
- shaped/autogen/models/objective.py +40 -0
- shaped/autogen/models/objective1.py +134 -0
- shaped/autogen/models/online_store_config.py +89 -0
- shaped/autogen/models/pagination_config.py +87 -0
- shaped/autogen/models/parameter_definition.py +96 -0
- shaped/autogen/models/parameters_value.py +240 -0
- shaped/autogen/models/passthrough_score.py +104 -0
- shaped/autogen/models/personal_filter.py +104 -0
- shaped/autogen/models/pipeline_stage_explanation.py +118 -0
- shaped/autogen/models/policy.py +134 -0
- shaped/autogen/models/pool_fn.py +134 -0
- shaped/autogen/models/pooling_function.py +37 -0
- shaped/autogen/models/{postgres_dataset_config.py → postgres_table_config.py} +66 -28
- shaped/autogen/models/posthog_table_config.py +133 -0
- shaped/autogen/models/prebuilt_filter_step.py +113 -0
- shaped/autogen/models/precomputed_item_embedding.py +99 -0
- shaped/autogen/models/precomputed_user_embedding.py +99 -0
- shaped/autogen/models/query.py +136 -0
- shaped/autogen/models/query1.py +136 -0
- shaped/autogen/models/query_any_of.py +140 -0
- shaped/autogen/models/query_definition.py +106 -0
- shaped/autogen/models/query_encoder.py +194 -0
- shaped/autogen/models/query_explanation.py +197 -0
- shaped/autogen/models/query_request.py +121 -0
- shaped/autogen/models/query_result.py +113 -0
- shaped/autogen/models/query_table_config.py +99 -0
- shaped/autogen/models/rank_item_attribute_values_query_config.py +122 -0
- shaped/autogen/models/rank_query_config.py +167 -0
- shaped/autogen/models/rank_query_config_filter_inner.py +149 -0
- shaped/autogen/models/rank_query_config_reorder_inner.py +149 -0
- shaped/autogen/models/rank_query_config_retrieve_inner.py +196 -0
- shaped/autogen/models/recreate_rollout.py +97 -0
- shaped/autogen/models/{redshift_dataset_config.py → redshift_table_config.py} +48 -25
- shaped/autogen/models/reference_table_config.py +113 -0
- shaped/autogen/models/regularization.py +136 -0
- shaped/autogen/models/request.py +378 -0
- shaped/autogen/models/request1.py +140 -0
- shaped/autogen/models/requests_per_second_scaling_policy.py +112 -0
- shaped/autogen/models/response_get_view_details_views_view_name_get.py +134 -0
- shaped/autogen/models/result.py +145 -0
- shaped/autogen/models/result_embeddings_value.py +127 -0
- shaped/autogen/models/retriever.py +196 -0
- shaped/autogen/models/retriever1.py +196 -0
- shaped/autogen/models/rollout_config.py +91 -0
- shaped/autogen/models/rudderstack_table_config.py +106 -0
- shaped/autogen/models/sampling_strategy.py +36 -0
- shaped/autogen/models/saved_query_info_response.py +89 -0
- shaped/autogen/models/saved_query_list_response.py +87 -0
- shaped/autogen/models/saved_query_request.py +115 -0
- shaped/autogen/models/schema_config.py +117 -0
- shaped/autogen/models/score.py +134 -0
- shaped/autogen/models/score_ensemble.py +140 -0
- shaped/autogen/models/score_ensemble_policy_config.py +141 -0
- shaped/autogen/models/score_ensemble_policy_config_policies_inner.py +422 -0
- shaped/autogen/models/search_config.py +105 -0
- shaped/autogen/models/segment_table_config.py +106 -0
- shaped/autogen/models/sequence_length.py +136 -0
- shaped/autogen/models/server_config.py +87 -0
- shaped/autogen/models/setup_engine_response.py +87 -0
- shaped/autogen/models/shaped_internal_recsys_policies_als_model_policy_als_model_policy_config.py +148 -0
- shaped/autogen/models/shaped_internal_recsys_policies_beeformer_model_policy_beeformer_model_policy_beeformer_model_policy_config.py +154 -0
- shaped/autogen/models/shaped_internal_recsys_policies_bert_model_policy_bert_model_policy_bert_model_policy_config.py +209 -0
- shaped/autogen/models/shaped_internal_recsys_policies_chronological_model_policy_chronological_model_policy_config.py +137 -0
- shaped/autogen/models/shaped_internal_recsys_policies_elsa_model_policy_elsa_model_policy_elsa_model_policy_config.py +139 -0
- shaped/autogen/models/shaped_internal_recsys_policies_gsasrec_model_policy_gsasrec_model_policy_gsas_rec_model_policy_config.py +205 -0
- shaped/autogen/models/shaped_internal_recsys_policies_item2vec_model_policy_item2_vec_model_policy_config.py +140 -0
- shaped/autogen/models/shaped_internal_recsys_policies_item_content_similarity_model_policy_item_content_similarity_model_policy_config.py +152 -0
- shaped/autogen/models/shaped_internal_recsys_policies_lightgbm_model_policy_lightgbm_model_policy_light_gbm_model_policy_config.py +239 -0
- shaped/autogen/models/shaped_internal_recsys_policies_ngram_model_policy_ngram_model_policy_config.py +119 -0
- shaped/autogen/models/shaped_internal_recsys_policies_popular_model_policy_popular_model_policy_config.py +137 -0
- shaped/autogen/models/shaped_internal_recsys_policies_random_model_policy_random_model_policy_config.py +104 -0
- shaped/autogen/models/shaped_internal_recsys_policies_recently_popular_policy_recently_popular_policy_config.py +130 -0
- shaped/autogen/models/shaped_internal_recsys_policies_rising_popular_policy_rising_popular_policy_config.py +123 -0
- shaped/autogen/models/shaped_internal_recsys_policies_sasrec_model_policy_sasrec_model_policy_sas_rec_model_policy_config.py +224 -0
- shaped/autogen/models/shaped_internal_recsys_policies_svd_model_policy_svd_model_policy_config.py +119 -0
- shaped/autogen/models/shaped_internal_recsys_policies_two_tower_model_policy_two_tower_model_policy_two_tower_model_policy_config.py +159 -0
- shaped/autogen/models/shaped_internal_recsys_policies_user_item_content_similarity_model_policy_user_item_content_similarity_model_policy_config.py +131 -0
- shaped/autogen/models/shaped_internal_recsys_policies_widedeep_model_policy_wide_deep_model_policy_config.py +131 -0
- shaped/autogen/models/shaped_internal_recsys_policies_xgboost_model_policy_xg_boost_model_policy_config.py +149 -0
- shaped/autogen/models/shopify_table_config.py +156 -0
- shaped/autogen/models/similarity_retrieve_step.py +121 -0
- shaped/autogen/models/{snowflake_dataset_config.py → snowflake_table_config.py} +47 -18
- shaped/autogen/models/sql_transform_type.py +37 -0
- shaped/autogen/models/sql_view_config.py +111 -0
- shaped/autogen/models/stemmer_tokenizer.py +105 -0
- shaped/autogen/models/step_explanation.py +137 -0
- shaped/autogen/models/strategy.py +134 -0
- shaped/autogen/models/table.py +102 -0
- shaped/autogen/models/table_deployment_type.py +38 -0
- shaped/autogen/models/table_insert_arguments.py +87 -0
- shaped/autogen/models/table_insert_response.py +87 -0
- shaped/autogen/models/text_encoding.py +136 -0
- shaped/autogen/models/text_search_retrieve_step.py +121 -0
- shaped/autogen/models/time_frequency.py +136 -0
- shaped/autogen/models/time_window.py +136 -0
- shaped/autogen/models/time_window_in_days.py +142 -0
- shaped/autogen/models/tokenizer.py +149 -0
- shaped/autogen/models/trained_model_encoder.py +99 -0
- shaped/autogen/models/training_compute_config.py +99 -0
- shaped/autogen/models/training_config.py +121 -0
- shaped/autogen/models/training_config_models_inner.py +308 -0
- shaped/autogen/models/training_strategy.py +37 -0
- shaped/autogen/models/trending_mode.py +37 -0
- shaped/autogen/models/truncate_filter_step.py +106 -0
- shaped/autogen/models/tunable_bool.py +97 -0
- shaped/autogen/models/tunable_float.py +118 -0
- shaped/autogen/models/tunable_int.py +118 -0
- shaped/autogen/models/tunable_int_categorical.py +99 -0
- shaped/autogen/models/tunable_string.py +99 -0
- shaped/autogen/models/tuning_config.py +89 -0
- shaped/autogen/models/type.py +134 -0
- shaped/autogen/models/update_table_response.py +87 -0
- shaped/autogen/models/update_view_response.py +87 -0
- shaped/autogen/models/user_attribute_pooling_encoder.py +124 -0
- shaped/autogen/models/val_split.py +136 -0
- shaped/autogen/models/validation_error.py +13 -3
- shaped/autogen/models/validation_error_loc_inner.py +138 -0
- shaped/autogen/models/value_type.py +7 -5
- shaped/autogen/models/vector_search_mode.py +99 -0
- shaped/autogen/models/view.py +104 -0
- shaped/autogen/models/view_details_ai.py +140 -0
- shaped/autogen/models/view_details_ai_schema_value.py +153 -0
- shaped/autogen/models/view_details_sql.py +140 -0
- shaped/autogen/models/view_status.py +41 -0
- shaped/autogen/models/weight_decay.py +136 -0
- shaped/autogen/models/whitespace_tokenizer.py +97 -0
- shaped/autogen/models/window_size.py +136 -0
- shaped/autogen/rest.py +8 -2
- shaped/cli/shaped_cli.py +12 -7
- shaped/client.py +587 -174
- shaped/config_builders.py +695 -0
- shaped/query_builder.py +774 -0
- {shaped-2.0.1.dist-info → shaped-2.0.2.dist-info}/METADATA +140 -5
- shaped-2.0.2.dist-info/RECORD +278 -0
- shaped-2.0.2.dist-info/entry_points.txt +2 -0
- shaped/autogen/api/model_inference_api.py +0 -2825
- shaped/autogen/models/amplitude_dataset_config.py +0 -96
- shaped/autogen/models/aws_pinpoint_dataset_config.py +0 -96
- shaped/autogen/models/big_query_dataset_config.py +0 -114
- shaped/autogen/models/complement_items_request.py +0 -99
- shaped/autogen/models/complement_items_response.py +0 -89
- shaped/autogen/models/connectors_inner.py +0 -134
- shaped/autogen/models/create_dataset_arguments.py +0 -263
- shaped/autogen/models/create_embedding_response.py +0 -87
- shaped/autogen/models/create_item_embedding_request.py +0 -89
- shaped/autogen/models/create_model_arguments.py +0 -107
- shaped/autogen/models/create_model_response.py +0 -87
- shaped/autogen/models/create_user_embedding_request.py +0 -89
- shaped/autogen/models/custom_dataset_config.py +0 -115
- shaped/autogen/models/dataset_config.py +0 -101
- shaped/autogen/models/dataset_schema_type.py +0 -47
- shaped/autogen/models/datasets_inner.py +0 -91
- shaped/autogen/models/delete_model_response.py +0 -87
- shaped/autogen/models/fetch_config.py +0 -95
- shaped/autogen/models/file_config.py +0 -105
- shaped/autogen/models/file_source_config.py +0 -89
- shaped/autogen/models/inference_config.py +0 -101
- shaped/autogen/models/insert_model_response.py +0 -87
- shaped/autogen/models/interaction.py +0 -87
- shaped/autogen/models/list_datasets_response.py +0 -95
- shaped/autogen/models/list_models_response.py +0 -95
- shaped/autogen/models/model_config.py +0 -99
- shaped/autogen/models/model_response.py +0 -95
- shaped/autogen/models/mongo_db_dataset_config.py +0 -119
- shaped/autogen/models/post_rank_request.py +0 -117
- shaped/autogen/models/rank_attribute_response.py +0 -89
- shaped/autogen/models/rank_grid_attribute_request.py +0 -91
- shaped/autogen/models/rank_grid_attribute_request1.py +0 -93
- shaped/autogen/models/rank_grid_attribute_response.py +0 -91
- shaped/autogen/models/rank_response.py +0 -91
- shaped/autogen/models/retrieve_request.py +0 -101
- shaped/autogen/models/retrieve_response.py +0 -91
- shaped/autogen/models/retriever_top_k_override.py +0 -97
- shaped/autogen/models/rudder_stack_dataset_config.py +0 -96
- shaped/autogen/models/segment_dataset_config.py +0 -96
- shaped/autogen/models/similar_item_request.py +0 -101
- shaped/autogen/models/similar_response.py +0 -89
- shaped/autogen/models/similar_users_request.py +0 -99
- shaped/autogen/models/successful_response.py +0 -87
- shaped/autogen/models/view_model_response.py +0 -99
- shaped-2.0.1.dist-info/RECORD +0 -73
- shaped-2.0.1.dist-info/entry_points.txt +0 -2
- {shaped-2.0.1.dist-info → shaped-2.0.2.dist-info}/WHEEL +0 -0
- {shaped-2.0.1.dist-info → shaped-2.0.2.dist-info}/top_level.txt +0 -0
- {shaped-2.0.1.dist-info → shaped-2.0.2.dist-info}/zip-safe +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: shaped
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.2
|
|
4
4
|
Summary: CLI and SDK tools for interacting with the Shaped API.
|
|
5
5
|
Home-page: https://github.com/shaped-ai/shaped-cli
|
|
6
6
|
Author: Shaped Team
|
|
@@ -16,17 +16,19 @@ Description-Content-Type: text/markdown
|
|
|
16
16
|
Requires-Dist: pyarrow==20.0.0
|
|
17
17
|
Requires-Dist: pandas==2.3.0
|
|
18
18
|
Requires-Dist: numpy==1.26.4
|
|
19
|
-
Requires-Dist: typer
|
|
19
|
+
Requires-Dist: typer==0.7.0
|
|
20
|
+
Requires-Dist: click==8.2.1
|
|
20
21
|
Requires-Dist: requests>=2.28.1
|
|
21
22
|
Requires-Dist: pydantic>=2.8.2
|
|
22
23
|
Requires-Dist: pyyaml>=6.0
|
|
23
24
|
Requires-Dist: tqdm==4.67.1
|
|
24
25
|
Requires-Dist: s3fs==0.4.2
|
|
25
26
|
Requires-Dist: fsspec==2023.5.0
|
|
26
|
-
Requires-Dist: urllib3
|
|
27
|
+
Requires-Dist: urllib3>=2.2.3
|
|
28
|
+
Requires-Dist: h2>=4.0.0
|
|
27
29
|
Requires-Dist: python-dateutil
|
|
28
30
|
Requires-Dist: typing-extensions>=4.7.1
|
|
29
|
-
Requires-Dist: pytest
|
|
31
|
+
Requires-Dist: pytest==8.4.1
|
|
30
32
|
Requires-Dist: pytest-mock==3.14.0
|
|
31
33
|
Dynamic: author
|
|
32
34
|
Dynamic: author-email
|
|
@@ -258,7 +260,7 @@ shaped view-saved-query --engine-name <ENGINE_NAME> --query-name <QUERY_NAME>
|
|
|
258
260
|
|
|
259
261
|
---
|
|
260
262
|
|
|
261
|
-
# Python SDK
|
|
263
|
+
# Python SDK (V2)
|
|
262
264
|
|
|
263
265
|
## Installation
|
|
264
266
|
|
|
@@ -267,3 +269,136 @@ shaped view-saved-query --engine-name <ENGINE_NAME> --query-name <QUERY_NAME>
|
|
|
267
269
|
```sh
|
|
268
270
|
pip install shaped
|
|
269
271
|
```
|
|
272
|
+
|
|
273
|
+
## V2 Query API with Fluent Builders
|
|
274
|
+
|
|
275
|
+
The V2 SDK provides a fluent query builder API that leverages Shaped's declarative query language:
|
|
276
|
+
|
|
277
|
+
```python
|
|
278
|
+
from shaped import (
|
|
279
|
+
Client,
|
|
280
|
+
RankQueryBuilder,
|
|
281
|
+
ColumnOrder,
|
|
282
|
+
TextSearch,
|
|
283
|
+
Ensemble,
|
|
284
|
+
Diversity,
|
|
285
|
+
)
|
|
286
|
+
|
|
287
|
+
client = Client(api_key="your-api-key")
|
|
288
|
+
|
|
289
|
+
# Build a query using the fluent builder with step objects
|
|
290
|
+
query = (RankQueryBuilder()
|
|
291
|
+
.from_entity('item')
|
|
292
|
+
.retrieve(
|
|
293
|
+
ColumnOrder(
|
|
294
|
+
[{'name': 'popularity', 'ascending': False}],
|
|
295
|
+
limit=1000
|
|
296
|
+
),
|
|
297
|
+
TextSearch(
|
|
298
|
+
'laptop',
|
|
299
|
+
mode={'type': 'vector', 'text_embedding_ref': 'text_emb'}
|
|
300
|
+
)
|
|
301
|
+
)
|
|
302
|
+
.filter(Expression('price < 1000')) filter
|
|
303
|
+
.score(Ensemble('lightgbm', input_user_id='$parameters.userId'))
|
|
304
|
+
.reorder(Diversity(diversity_attributes=['category']))
|
|
305
|
+
.limit(50)
|
|
306
|
+
.columns(['item_id', 'title', 'price'])
|
|
307
|
+
.build())
|
|
308
|
+
|
|
309
|
+
# Execute the query
|
|
310
|
+
result = client.execute_query(
|
|
311
|
+
'my_engine',
|
|
312
|
+
query,
|
|
313
|
+
parameters={'userId': '123'}
|
|
314
|
+
)
|
|
315
|
+
```
|
|
316
|
+
|
|
317
|
+
### Available Step Factory Functions
|
|
318
|
+
|
|
319
|
+
The SDK provides convenient factory functions for creating step objects:
|
|
320
|
+
|
|
321
|
+
**Retrieve Steps:**
|
|
322
|
+
- `ColumnOrder(columns, limit=100, where=None, name=None)` - Sort by columns
|
|
323
|
+
- `TextSearch(input_text_query, mode, limit=100, where=None, name=None)` - Text search
|
|
324
|
+
- `Similarity(embedding_ref, query_encoder, limit=100, where=None, name=None)` - Similarity search
|
|
325
|
+
- `Filter(where=None, limit=100, name=None)` - Filter without ordering
|
|
326
|
+
- `CandidateIds(item_ids, limit=None, name=None)` - Specific item IDs
|
|
327
|
+
- `CandidateAttributes(item_attributes, limit=None, name=None)` - Item attributes
|
|
328
|
+
|
|
329
|
+
**Filter Steps:**
|
|
330
|
+
- `Expression(expression, name=None)` - DuckDB filter expression
|
|
331
|
+
- `Truncate(max_length=500, name=None)` - Truncate results to max_length
|
|
332
|
+
- `Prebuilt(filter_ref, input_user_id=None, name=None)` - Reference to prebuilt filter
|
|
333
|
+
|
|
334
|
+
**Score Configs:**
|
|
335
|
+
- `Ensemble(value_model, input_user_id=None, ...)`
|
|
336
|
+
- `Passthrough(name=None)`
|
|
337
|
+
|
|
338
|
+
**Reorder Steps:**
|
|
339
|
+
- `Diversity(diversity_attributes=None, strength=0.5, ...)`
|
|
340
|
+
- `Boosted(retriever, strength=0.5, name=None)`
|
|
341
|
+
- `Exploration(retriever, strength=0.5, name=None)`
|
|
342
|
+
|
|
343
|
+
### Execute Saved Query
|
|
344
|
+
|
|
345
|
+
```python
|
|
346
|
+
result = client.execute_saved_query(
|
|
347
|
+
'my_engine',
|
|
348
|
+
'recommendations',
|
|
349
|
+
parameters={'userId': '123', 'limit': 20}
|
|
350
|
+
)
|
|
351
|
+
```
|
|
352
|
+
|
|
353
|
+
---
|
|
354
|
+
|
|
355
|
+
# TypeScript/Node.js SDK (V2)
|
|
356
|
+
|
|
357
|
+
## Installation
|
|
358
|
+
|
|
359
|
+
### NPM Installation
|
|
360
|
+
|
|
361
|
+
```sh
|
|
362
|
+
npm install @shaped.ai/client
|
|
363
|
+
```
|
|
364
|
+
|
|
365
|
+
## V2 Query API with Fluent Builders
|
|
366
|
+
|
|
367
|
+
The V2 SDK provides a fluent, type-safe query builder API:
|
|
368
|
+
|
|
369
|
+
```typescript
|
|
370
|
+
import { Client, RankQueryBuilder } from '@shaped.ai/client';
|
|
371
|
+
|
|
372
|
+
const client = new Client({ apiKey: 'your-api-key' });
|
|
373
|
+
|
|
374
|
+
// Build a query using the fluent builder
|
|
375
|
+
const query = new RankQueryBuilder()
|
|
376
|
+
.from('item')
|
|
377
|
+
.retrieve(step => step
|
|
378
|
+
.columnOrder([{name: 'popularity', ascending: false}], {limit: 1000}))
|
|
379
|
+
.retrieve(step => step
|
|
380
|
+
.textSearch('laptop', {type: 'vector', textEmbeddingRef: 'text_emb'}))
|
|
381
|
+
.filter(step => step.expression('price < 1000'))
|
|
382
|
+
.score(step => step.ensemble('lightgbm', {inputUserId: '$parameters.userId'}))
|
|
383
|
+
.reorder(step => step.diversity({attribute: 'category'}))
|
|
384
|
+
.limit(50)
|
|
385
|
+
.columns(['item_id', 'title', 'price'])
|
|
386
|
+
.build();
|
|
387
|
+
|
|
388
|
+
// Execute the query
|
|
389
|
+
const result = await client.executeQuery(
|
|
390
|
+
'my_engine',
|
|
391
|
+
query,
|
|
392
|
+
{userId: '123'}
|
|
393
|
+
);
|
|
394
|
+
```
|
|
395
|
+
|
|
396
|
+
### Execute Saved Query
|
|
397
|
+
|
|
398
|
+
```typescript
|
|
399
|
+
const result = await client.executeSavedQuery(
|
|
400
|
+
'my_engine',
|
|
401
|
+
'recommendations',
|
|
402
|
+
{userId: '123', limit: 20}
|
|
403
|
+
);
|
|
404
|
+
```
|
|
@@ -0,0 +1,278 @@
|
|
|
1
|
+
shaped/__init__.py,sha256=wyVv_kOaQ2cYkSQKcQt85t5rzIq_zIbN2rfCt8FlUE4,933
|
|
2
|
+
shaped/client.py,sha256=qVfmRv8DZ0KCbe_u76eB02aDxK1tF-A9VWiw7V2_E60,23303
|
|
3
|
+
shaped/config_builders.py,sha256=R08XWsZtkf2Eq54527O5V0LQnu9mKXD0M7b-AeD1k4w,23664
|
|
4
|
+
shaped/query_builder.py,sha256=-FhtP9cBkuoztDWPR-BRcLawJUd3CIxK6FBJ-7Xg-0o,24207
|
|
5
|
+
shaped/autogen/__init__.py,sha256=xL6UmP67voPrUQbr7wjgsYhDySbLOpQLTH7k4Wk5WXs,35702
|
|
6
|
+
shaped/autogen/api_client.py,sha256=ddw2QGceD7G56IMTOxJHwAvaqUOBZD2nYvPBDa8SjI0,28637
|
|
7
|
+
shaped/autogen/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
8
|
+
shaped/autogen/configuration.py,sha256=zL3pvB1xM8cKY9pI0-7qqjye3PG9rV3AhUoKM49U4pk,19017
|
|
9
|
+
shaped/autogen/exceptions.py,sha256=318zy4hrDJPZQYFjUuHbbNVnplnML0MuC2FAuCz4-Tc,7318
|
|
10
|
+
shaped/autogen/rest.py,sha256=VW0h4osUMBwGyb4BWlDE6u4ED9Q7XVDDTymJklSMQKI,10583
|
|
11
|
+
shaped/autogen/api/__init__.py,sha256=4Likv3Dq2be4kg4uoXtWHb9KqtKNisLBmKVox8MvNbM,248
|
|
12
|
+
shaped/autogen/api/engine_api.py,sha256=TxD5iIwBWmwHR6msKNkZE4X8fevkSFQlE87gqPof5MY,61463
|
|
13
|
+
shaped/autogen/api/query_api.py,sha256=YHnjqY9tdPxZOIrZxfsRaa29QBKqDagjsKRL0S63auQ,46442
|
|
14
|
+
shaped/autogen/api/table_api.py,sha256=Lvb9fK4HdHOdDGJGg2VtfC-VEOwilQTEmeRCNEF9VTw,62269
|
|
15
|
+
shaped/autogen/api/view_api.py,sha256=_olRahQsYGPI4PQOJLsW1rhQW2BCNvhaq_lgmk6lz2g,57193
|
|
16
|
+
shaped/autogen/models/__init__.py,sha256=ePaNhV4QZDvmWfCADF1PJYces4mb6AYIz_VcKLKdys0,21189
|
|
17
|
+
shaped/autogen/models/ai_enrichment_view_config.py,sha256=-id8TyZ1qhCFxZbmm4hpUlWyahbHElaEJwYnpfCtruc,5665
|
|
18
|
+
shaped/autogen/models/algorithm.py,sha256=0fDDjfVCITiUKjt6BfS2R-1T7BPEvqC1Y_0FT4FPQS4,5671
|
|
19
|
+
shaped/autogen/models/amplitude_table_config.py,sha256=mQdsqpDCvKChwBzFSAmomMxqfjczEvN05Yaab0DBAE8,4341
|
|
20
|
+
shaped/autogen/models/ascending.py,sha256=oNtFHANQhaah14awwS91oqYx86oU54d8zfTOea_oITs,5663
|
|
21
|
+
shaped/autogen/models/attn_dropout_prob.py,sha256=8tjwL3v4xb2GeiHcnKxJrgMlHsUr1g_MHw3XqHZy984,5787
|
|
22
|
+
shaped/autogen/models/attribute_journey.py,sha256=fcFKxHmbYUYkToVdZvy0K36paLNg_VR7G6t0zzkGcOg,5520
|
|
23
|
+
shaped/autogen/models/attribute_value.py,sha256=iLa3SN4IRjvdgtTTPcDDusA28KuH7SsBYMjjSYvD5E4,7369
|
|
24
|
+
shaped/autogen/models/autoscaling_config.py,sha256=2y4HCPyCgyTpFJhjM-3HsRbQwSSjbkiVk4vpqyZX3KE,4133
|
|
25
|
+
shaped/autogen/models/aws_pinpoint_table_config.py,sha256=KOtGF9G1R-OwwFQOs9NtjUrPN_-7RHPA_OazPe46-40,4574
|
|
26
|
+
shaped/autogen/models/batch_size.py,sha256=ygd4Yfh1DeJbsOcEEhgn4Dqg1DgWba7WfPMhYrUYKqU,5686
|
|
27
|
+
shaped/autogen/models/batch_size1.py,sha256=pxYHgtoDej19KdkHcYI-8c2O-q58nWUW9ya51HzUNyY,5691
|
|
28
|
+
shaped/autogen/models/batch_size2.py,sha256=iabQAEGVMaWYyolJYMNMS3qlLj8G_QxA6dvboh6uAv0,5857
|
|
29
|
+
shaped/autogen/models/big_query_table_config.py,sha256=FS_tS6lKJKmKnm_9usL5mhakkwaONzTUutUD9P5aFZw,6537
|
|
30
|
+
shaped/autogen/models/bm25.py,sha256=01msgQyBkx1L2C6QEcGtA1CL3KrydqGhdQodajNEXDY,5666
|
|
31
|
+
shaped/autogen/models/boosted_reorder_step.py,sha256=GrC4EpkkOBe9gt_TzEn_8k9XPU6FSOEtkPMqdbsDGSM,5364
|
|
32
|
+
shaped/autogen/models/canary_rollout.py,sha256=CV3_dwXCQ-Ainuz9Qo6Sw4zM0TbUaVmekXzFAgT5Q6w,4081
|
|
33
|
+
shaped/autogen/models/candidate_attributes_retrieve_step.py,sha256=aMxJRwW34Chs2fNYp2Jtdy586BfpqwmdURRFswWZc4U,5504
|
|
34
|
+
shaped/autogen/models/candidate_ids_retrieve_step.py,sha256=vbuHnW_iavqhDpR2B4Cm8NVGcVlu6HGG_QxfzMDk0ms,4727
|
|
35
|
+
shaped/autogen/models/candidate_retrieval_strategy.py,sha256=ilJciiy2HUNJlxo8DnOMKE8tH7qtEbYx7AaCzQaHKTU,1778
|
|
36
|
+
shaped/autogen/models/clickhouse_table_config.py,sha256=Pxj-CwlTnrynzkNQ2XMHYUPeJYyjsAxzldchymjtguo,6498
|
|
37
|
+
shaped/autogen/models/column_order_retrieve_step.py,sha256=VWEgOkT6EBVS86U1D50TU-AXr5Rb-xZUuQjwYqxKOaA,5281
|
|
38
|
+
shaped/autogen/models/column_ordering.py,sha256=WSKtuKOyv5sp51uPbR9VK8Uk6gOI2Y3MlhRollZtyzs,3838
|
|
39
|
+
shaped/autogen/models/create_table_response.py,sha256=ml_Gr-vCsXbRWp8ckLYaHRML7c-83A41DFSmJy6lOD0,3436
|
|
40
|
+
shaped/autogen/models/create_view_response.py,sha256=1BSGriNwzHQA_6fhO05fv9GlJ_w5UYD8jvrU98HcuJM,3431
|
|
41
|
+
shaped/autogen/models/custom_table_config.py,sha256=BWIOTN5WofSEQ6F61jTcKBhbIHvaiq1nAlfzzpxDhzs,5786
|
|
42
|
+
shaped/autogen/models/data_compute_config.py,sha256=7ABQiTAh71Sv6UpAfewf_Paoae_Z47rw6ISnzoEBS4U,3734
|
|
43
|
+
shaped/autogen/models/data_config.py,sha256=fukND6dW66LA1Vtt27hQWdsDA_4Hs98Be7LWOnW_NYM,7387
|
|
44
|
+
shaped/autogen/models/data_config_interaction_table.py,sha256=2TEt7wET5dXt-B6DgJPrgg7f9vakDE5SOOuYF6dPQO0,6569
|
|
45
|
+
shaped/autogen/models/data_split_config.py,sha256=aVTCPmFkeqYtJrbKJZjcHV9zSC4MpaO4ITNvD2wkbbU,3576
|
|
46
|
+
shaped/autogen/models/data_split_strategy.py,sha256=1LD7ngppryKRGUy2EjJcPsxb34f_xN8jxpK-fUJkwN0,1607
|
|
47
|
+
shaped/autogen/models/data_tier.py,sha256=FfUajH0LcrF3KCWCSf1PRs-Iz0Mn3n5aK8eI0KUKtn8,1663
|
|
48
|
+
shaped/autogen/models/default.py,sha256=EumblY0TG01UMUMriiXJ9bgk8QDhP0Ea3vzBW9Yccrw,10400
|
|
49
|
+
shaped/autogen/models/delete_engine_response.py,sha256=J5NNbXFkMsteDDHqYkLaGsFwUsk57Q0d4rKzAxCsYBw,3444
|
|
50
|
+
shaped/autogen/models/delete_table_response.py,sha256=QBA06Mj1RThtVRR-I0m522RDlIWQcQk-34wZhWES1t8,3436
|
|
51
|
+
shaped/autogen/models/delete_view_response.py,sha256=Ig_SzsuaAHbc9O6XxKBl8Jp9Bo6ufuf1n5yRxp8wwJw,3431
|
|
52
|
+
shaped/autogen/models/deployment_config.py,sha256=qLIzm80lb5wZo3ciklF7YDdGHYqZw7U9adyaOAa5VcY,6269
|
|
53
|
+
shaped/autogen/models/distance_function.py,sha256=ja5V7VyC-Bybbqc9X9tylJ_IX6sLWdCsy6obRqESFsQ,1616
|
|
54
|
+
shaped/autogen/models/diversity_reorder_step.py,sha256=3fL4YUCWXADs4XH4NeMWILK17QJ0hOSPMHKuh1NdzlI,6538
|
|
55
|
+
shaped/autogen/models/dropout_rate.py,sha256=PFTrSFLtUvtSUUlyGJhQRBz6GjOlymw_4xBQYb2N35w,5769
|
|
56
|
+
shaped/autogen/models/dynamo_db_table_config.py,sha256=O7iu2903-duWaOydbTwxLyC7PyPi1d4U0sf5ApTrnfQ,7382
|
|
57
|
+
shaped/autogen/models/dynamo_db_table_config_scan_kwargs_value.py,sha256=L0IribuFOLSHA-p6sLwVskjwR-3zbfrNM65I8mhnP-s,5798
|
|
58
|
+
shaped/autogen/models/embedder_batch_size.py,sha256=dJldqCv-csyjvMnW44CZfa9pGS8yit06IDKVU5dYrMs,5715
|
|
59
|
+
shaped/autogen/models/embedding_config.py,sha256=Ut0zmxjuBs6H5fUJF2FMnop6ym_x1ePPmiy2dm5mn3k,3739
|
|
60
|
+
shaped/autogen/models/embedding_dim.py,sha256=xJKYTsOXdfkjy_tBatui44U7GsokwIOLBsk3pQqOckI,5843
|
|
61
|
+
shaped/autogen/models/embedding_dims.py,sha256=JGsa1tpk5ND-FBwqGAEdgXZfexgA8x1rTMtZDX3cjMg,5695
|
|
62
|
+
shaped/autogen/models/embedding_size.py,sha256=r-PiV6U5Wz8LdGyLIBHzqTIxiSqmYv5Zh9EHuSs75t4,5682
|
|
63
|
+
shaped/autogen/models/encoder.py,sha256=6r--GSGN_-BqhVCU9FhgL3s3Oksm6jyAHRKw1zV5hNI,6368
|
|
64
|
+
shaped/autogen/models/encoding_pooling_strategy.py,sha256=OI8QEgOeGslVpotLmOYoJX796K8dFl4F2g-vg1Fs8qg,1635
|
|
65
|
+
shaped/autogen/models/engine.py,sha256=JpKN3X9djnULPiphdNXmcMEJLddGIExq_ld4Bt4CFuI,4627
|
|
66
|
+
shaped/autogen/models/engine_config_v2.py,sha256=t2paHPLmlajkk50Fc5oZdEvsodsb-DkZIrEX5FQ2MtM,7151
|
|
67
|
+
shaped/autogen/models/engine_details_response.py,sha256=Ec90HEbvODXbqaEP-IXcdb87LzKHaWhVfsCFt9lYiyI,5378
|
|
68
|
+
shaped/autogen/models/engine_schema.py,sha256=nI9oc1dgBZVMusOCXaBzqhrZM0tfUomT6vNvesK3qV0,5070
|
|
69
|
+
shaped/autogen/models/engine_schema_user_inner.py,sha256=rsL2ehM_lbsdYtnvu2SFp8YqVe9oF_Nkw11SClc2ADA,5565
|
|
70
|
+
shaped/autogen/models/entity_config.py,sha256=Nn5ph_oO4hj5TTfm3ALezeQ9jH2aFMHhbYTkOwUOSgg,4495
|
|
71
|
+
shaped/autogen/models/entity_journey.py,sha256=rYA7GlR-tJ9V57HVshylPhzWjDosFTH6e2K7a-mfPNM,7853
|
|
72
|
+
shaped/autogen/models/entity_type.py,sha256=gXk9uYPVD76VQKobElwLuwmuPdzigaiWcFe6_e3OQ6g,1657
|
|
73
|
+
shaped/autogen/models/evaluation_config.py,sha256=Yj9S8ymvdOjwBieAi-zaLyT3fVZ21__6YA5brR1vg5g,4193
|
|
74
|
+
shaped/autogen/models/exploration_reorder_step.py,sha256=nzVmGfHRv2exresMbpd_h0eOknJnzTiFyb81YiUUXqs,5377
|
|
75
|
+
shaped/autogen/models/expression_filter_step.py,sha256=EswAyJ5WOCJ8SOidSsFwqFOhHsh3X9dtocGW7RmvQMU,4266
|
|
76
|
+
shaped/autogen/models/factors.py,sha256=7jD2TzZQAellb698ekAZaAIbLOxZlYrq0N5ZE3yXOrM,5671
|
|
77
|
+
shaped/autogen/models/factors1.py,sha256=OhOxyQbHzxvHcWY_FY_H56Cr5JcC6Z3GohWe174tLC4,5676
|
|
78
|
+
shaped/autogen/models/feature.py,sha256=hErlsYXRvFDtPG5RefIK9EJpRS1ZLOHlUpt_xMYU-fc,3417
|
|
79
|
+
shaped/autogen/models/feature_type.py,sha256=FND8pyif4jrah4BkJ6L37h198GWrb5D9NXBOhSriOIk,2727
|
|
80
|
+
shaped/autogen/models/file_table_config.py,sha256=T9afd51wQZOie2zukhM2kBDtMaxQvwnzDOd8vgn_jAM,4626
|
|
81
|
+
shaped/autogen/models/filter_config.py,sha256=UHcter_Qc2kAcpe89MpKpOLsMykiMcvBipqAGnP4qRc,4122
|
|
82
|
+
shaped/autogen/models/filter_dataset.py,sha256=HhGEX0ZS4vaZCnxjCAqAwokr_U610ckmZ68dTFEOTD4,6389
|
|
83
|
+
shaped/autogen/models/filter_index_type.py,sha256=mzthEAHQxEPAuMot16JPuIzn8WfAFGUaiRSX7C7jpvg,1632
|
|
84
|
+
shaped/autogen/models/filter_retrieve_step.py,sha256=GcX2AQ_qlTfHoHlYvveALg4fnwbdzbVKiewvKOjOgi4,4673
|
|
85
|
+
shaped/autogen/models/global_filter.py,sha256=TqkLU7vv5uZnjqlCit2RnCjD83UfMLY5CX00eu2fmqA,4302
|
|
86
|
+
shaped/autogen/models/hidden_dropout_prob.py,sha256=_bhjTN_8BExRyBbT5gxOnWoLk17CMzlluTz-8KLO_DE,5794
|
|
87
|
+
shaped/autogen/models/hidden_size.py,sha256=orgKN7D3dzT1tuVXnk9154ogKfSAHq_ZXy0v2x5FnbY,5844
|
|
88
|
+
shaped/autogen/models/hidden_size1.py,sha256=tdjnHk6sCvJfA7DmEM0-yJNInuD9d5YqfEqra0p7EKk,5849
|
|
89
|
+
shaped/autogen/models/http_problem_response.py,sha256=CtJMRQeSL1HKoakH_rZBZcaQqEx-LapxD0JhRA1bAj4,4548
|
|
90
|
+
shaped/autogen/models/http_validation_error.py,sha256=ptPFpzDQHEk6TFhD6--isbQwkIElko5WYg2sPVJngBY,3851
|
|
91
|
+
shaped/autogen/models/hugging_face_encoder.py,sha256=VX2kQZeY-g6nDk9b99516sPmn7cVLzRicP7Ey7Z7vIE,4693
|
|
92
|
+
shaped/autogen/models/iceberg_table_config.py,sha256=A_NgnyJnSOB1to49dLDeZE5Xbk9qAUbsYMGoRftOHIA,6879
|
|
93
|
+
shaped/autogen/models/index_config.py,sha256=iprBj2cca48zHitF6xgOZdQP8vwTih4Bpmva8-v07AE,4468
|
|
94
|
+
shaped/autogen/models/inner_size.py,sha256=f9xiuD1xR0pWxxC2A6pKu0XBiyXNiUXF9YiwukW_wNg,5839
|
|
95
|
+
shaped/autogen/models/inner_size1.py,sha256=6G5XvMOlt3A_W3p66tBrGSZmDE5UAtatRv95Ynh1Nu4,5844
|
|
96
|
+
shaped/autogen/models/interaction_config.py,sha256=aHyXgaLPU2SOOdFC16t87HRMWvRdMuhVE8cCPbRgxms,5301
|
|
97
|
+
shaped/autogen/models/interaction_pooling_encoder.py,sha256=OhZcG-iV-lmOiNDetAfQh56Yssqz0qlJZLkUGdKUmpo,4743
|
|
98
|
+
shaped/autogen/models/interaction_round_robin_encoder.py,sha256=wT5p9sJCyV2WFEPxobzLS0oc-3l_LyM9oR_E0nVS3zg,4791
|
|
99
|
+
shaped/autogen/models/item_attribute_pooling_encoder.py,sha256=b9_PF866P6ZbFBbMpxEg7dj4eg_XKJF4gCZyTtwmkgk,5447
|
|
100
|
+
shaped/autogen/models/journey.py,sha256=UspyUuqJJOa1BRYjkJkBXG8dt7k2h8Od2VVNNgmz_Pw,6060
|
|
101
|
+
shaped/autogen/models/kafka_table_config.py,sha256=KI8IgaRxTQ-W8v1s5AEgTkD1eIq4AMgvFM4FmUWL1Dk,5734
|
|
102
|
+
shaped/autogen/models/kinesis_table_config.py,sha256=rZWh9EoL8xesNxpWOmPSFpj4rLWIjmGiwhWXq0Ieg5A,6220
|
|
103
|
+
shaped/autogen/models/kinesis_table_config_column_schema_value.py,sha256=zi93DQpfkamQogC9fOwPBrh39VPtx0UtaFdQzo5DMn8,5937
|
|
104
|
+
shaped/autogen/models/label.py,sha256=_8ywMYefxBLfNxywCEb2l77UyqcBrb3yLynpwMtD29M,3403
|
|
105
|
+
shaped/autogen/models/label_type.py,sha256=oMl9apDRDK8T8-RG95ppLqHuqsa0kyb1PiTnXPeGRh4,1607
|
|
106
|
+
shaped/autogen/models/laplace_smoothing.py,sha256=VDhM8oujm8HIfaF7n3UxpxR0kTfu2mXsy6sGYZEPJM8,5804
|
|
107
|
+
shaped/autogen/models/latency_scaling_policy.py,sha256=AP44RvnSQZp_WuzDueuA3nSAsWx-k9NQ1Aona5Liz18,4695
|
|
108
|
+
shaped/autogen/models/learning_rate.py,sha256=EEN8lJizu2kfG-NtEHKM9yTVu5hpI0bs6lbShDlfTFI,5779
|
|
109
|
+
shaped/autogen/models/learning_rate1.py,sha256=Ou_o9FaBGM59Zw_FIVggt52CdIoM1QUIx_Z_WAaVDZg,5784
|
|
110
|
+
shaped/autogen/models/learning_rate2.py,sha256=oqytkCPxyQy0QtWqDgXBIBSZvPuIFHGRJzOL3AiteE4,5784
|
|
111
|
+
shaped/autogen/models/learning_rate3.py,sha256=IWJcaAjxASl31KiP7SUcoA9U_CHs9i7Uwxi4SkJDW-g,5784
|
|
112
|
+
shaped/autogen/models/lexical_search_mode.py,sha256=Ov5wWl8ZUUw9hAcFm6_uoAJiGNCqfCO8EUo-OWUzCRc,4084
|
|
113
|
+
shaped/autogen/models/list_engines_response.py,sha256=LTqqb0YWn1OKzab93qCcSCSWMTwV7qvJLEyEMkykQcI,3865
|
|
114
|
+
shaped/autogen/models/list_tables_response.py,sha256=FaJ8HD-Q1u8p5Xml63Jf1sjbdn_IVQMT6TJ6iPRqddg,3844
|
|
115
|
+
shaped/autogen/models/list_views_response.py,sha256=nkWZ2rdyuFq1BC2Lg289CoSKxsQtYClSegP3g7OB1sc,3823
|
|
116
|
+
shaped/autogen/models/loss_types.py,sha256=DqfNeVGUEKeTNLI_gNuuVm_OFvIK96HtjNiwr4HlTQM,1573
|
|
117
|
+
shaped/autogen/models/lr.py,sha256=dd3p56vVu1Ef3WjM0OPQuVMMRo1EqC36iNhplilF8cg,5729
|
|
118
|
+
shaped/autogen/models/lr1.py,sha256=jPb1CtZFlsBw3g6ndt816c12I81wlZzJGR5Fuoh9y9k,5734
|
|
119
|
+
shaped/autogen/models/lr2.py,sha256=fExgmnUKr8s4DJA6_qked6EgP6ajgDxdWGZbl85D0Zw,5734
|
|
120
|
+
shaped/autogen/models/max_depth.py,sha256=kjeJe4NdsGJ5LNwcmVwmK6IhibzDgH-bxz9ofo_e3vc,5668
|
|
121
|
+
shaped/autogen/models/max_leaves.py,sha256=ifNeRE2Lx0zSyvprdEMCBnkwqkKZPuEPMDsK1DMQ3TE,5665
|
|
122
|
+
shaped/autogen/models/max_seq_length.py,sha256=zIKog_3kv1CzEJt-e1MOlYFwzdxRSlSMPbms_cPEy5M,5687
|
|
123
|
+
shaped/autogen/models/max_seq_length1.py,sha256=KSyLMuq3XzUMktIGYGNd9IglTrompsAqPZ38MzWnWRA,5848
|
|
124
|
+
shaped/autogen/models/max_seq_length2.py,sha256=UThHtdOB44WGd-zyYOCG7CxaXlESmciEMAkyhr7z7Tc,5848
|
|
125
|
+
shaped/autogen/models/mode.py,sha256=fN9nwqQHNW15TegzU9n0eL0LLYPgi1KTzcRx59_7szc,5828
|
|
126
|
+
shaped/autogen/models/mode1.py,sha256=Xxs-_PfDI4luQu6fZZJULhgISLhkLuewYP9Rh8X6G1w,5666
|
|
127
|
+
shaped/autogen/models/mode2.py,sha256=Lpl7lMv0UNMdlEbdg_v7bEn_b2f4B2vNZ_9JUclFUVA,5647
|
|
128
|
+
shaped/autogen/models/mongo_db_table_config.py,sha256=TiHOlS2GHZDPQm6aMd3hoShjNXup92DAYhNztRwRiqQ,6596
|
|
129
|
+
shaped/autogen/models/mssql_table_config.py,sha256=B_wLkkwa7qw0QSqDc9ZDg4aKUEHAqbQ5ifvMDfZaKMk,6893
|
|
130
|
+
shaped/autogen/models/my_sql_table_config.py,sha256=9gmfVx832azoSYKRqs9lupyqa-bDbFpvMHo9ipDyzAo,8962
|
|
131
|
+
shaped/autogen/models/n_epochs.py,sha256=cnshh6O1MJB8Y6miI5AXFzPtxp0sF9WPgu6IyySPy98,5839
|
|
132
|
+
shaped/autogen/models/n_epochs1.py,sha256=yKhQXToDWOqiHtoDFKjcwEnUFW8EHamoJHEfMDAODMg,5844
|
|
133
|
+
shaped/autogen/models/n_epochs2.py,sha256=Sf2TgK_GXpkaYqOW-dSKQgBo24SC5Fs-zPnLX4p8xbw,5678
|
|
134
|
+
shaped/autogen/models/n_estimators.py,sha256=IQm-tW-m1IxM_wVWSGDJ8drN7O5ZqbJqSmckTgB8jmQ,5676
|
|
135
|
+
shaped/autogen/models/n_heads.py,sha256=_DnZgPWX1oBvybT-Vyho32fd0QA873rqXndZWmAFObE,5658
|
|
136
|
+
shaped/autogen/models/n_layers.py,sha256=gjDnuhHI7xh5lIlKj8yM6KS_FTUhyux3tIBQVWUB_T8,5647
|
|
137
|
+
shaped/autogen/models/neg_per_positive.py,sha256=hALdyCjha6a6Ft7iAO2mFazr0usGK6AXPsEj1ClYb7c,5833
|
|
138
|
+
shaped/autogen/models/negative_samples_count.py,sha256=4CEa8X5stSPGLUK0xrOG4neZEYU2YVSrP8Ub-lzMLf4,5921
|
|
139
|
+
shaped/autogen/models/ngram_tokenizer.py,sha256=GjqqGnUmeq0v6TO5tcjAtThFYoQa5_zLQLVi7msvY-M,4465
|
|
140
|
+
shaped/autogen/models/no_op_config.py,sha256=fv6TZRrYfZsk5kbTeD196A9zJD4dLeU8tHX6Qpuc-Gg,4604
|
|
141
|
+
shaped/autogen/models/num_blocks.py,sha256=pIMnaqcK2fs39n8JNYXox-fTXfdiZ3IzUwvZSvRoaqc,5823
|
|
142
|
+
shaped/autogen/models/num_heads.py,sha256=bQM_bhsxR0ZEQIV2Wpe4CI-im6tlbvZsIFPEZ2d2z7Q,5834
|
|
143
|
+
shaped/autogen/models/num_leaves.py,sha256=nMpm1lHOBBt293bReGZjX7SAw6peRlXnTqkGym74uDU,5665
|
|
144
|
+
shaped/autogen/models/objective.py,sha256=i2uOuEqRThT1BiaB4H15pXs68ev58V6KE5aiHDdaO_0,1681
|
|
145
|
+
shaped/autogen/models/objective1.py,sha256=mgeLe7IHE4T6j3IvM-ox8OaSUz7X2ON9VViveUVrniw,5650
|
|
146
|
+
shaped/autogen/models/online_store_config.py,sha256=_oQvormIbagFit7RB-pwY0Q2Rm2H6X4Ee1gc0ocDrt4,4032
|
|
147
|
+
shaped/autogen/models/pagination_config.py,sha256=7dRJgFksYGL6BZPc0H9kxRhg6ETrexgk7tANQiTTtL0,3631
|
|
148
|
+
shaped/autogen/models/parameter_definition.py,sha256=P5trtskIA_NWjsfGDX9DgHkltL1Em6P32V2nB8Lsoqg,3995
|
|
149
|
+
shaped/autogen/models/parameters_value.py,sha256=Iqfyk5P7Jt35LEibzj1uQQNwqyr6KgvvlYzGsU_2nuI,10294
|
|
150
|
+
shaped/autogen/models/passthrough_score.py,sha256=G6f86Bt4cMODljz6lppAxv3dUG77Xi1Wnnxoqq6kNho,4109
|
|
151
|
+
shaped/autogen/models/personal_filter.py,sha256=vmZbvW-roxaV7A-yWpfNl8p8ocMfdJbbmsANMYP8ayg,4579
|
|
152
|
+
shaped/autogen/models/pipeline_stage_explanation.py,sha256=hRsMPwrTQZLUiwXUPyMG3Up6cXDiZEmUSaZGtmJxMmc,5412
|
|
153
|
+
shaped/autogen/models/policy.py,sha256=Cad4hYpoEVW3pVa4Lk5s_BN5oLY-_vKBhKzUx0WtNcg,6078
|
|
154
|
+
shaped/autogen/models/pool_fn.py,sha256=aIih97zZWC2NLM59CDABHN1cz-E1gJv0qz1Jj7AeVBA,5838
|
|
155
|
+
shaped/autogen/models/pooling_function.py,sha256=p1fXNBeq7KXRxNp6wenEyjiWzDyRPtYz5rhquuiS3lY,1642
|
|
156
|
+
shaped/autogen/models/postgres_table_config.py,sha256=VzY_OD3km5FkvS6kyIYQlT_GupTLGA_OEwTrf3DFzuM,10321
|
|
157
|
+
shaped/autogen/models/posthog_table_config.py,sha256=zy8Q0Hl07S2hLmGrNMTyADcAB31pnclUxEkBJeEFcjA,5803
|
|
158
|
+
shaped/autogen/models/prebuilt_filter_step.py,sha256=bLotZbBTTrNBcukfYBXj7CYHJ4tQNxTYdJ1sHU8eO4M,4600
|
|
159
|
+
shaped/autogen/models/precomputed_item_embedding.py,sha256=DLzglS-yD1DRfQRarKgfqGsp9lNKEHviIuPgbPufEas,4048
|
|
160
|
+
shaped/autogen/models/precomputed_user_embedding.py,sha256=9WTUJ7zCrV_fTtqDc1WKmJWSOm4R7hDRSkIrW30X3fI,4067
|
|
161
|
+
shaped/autogen/models/query.py,sha256=28yDHudNcnXNo_BHS07Ca9o9aVBkt8jpVg37YXrVz2A,5769
|
|
162
|
+
shaped/autogen/models/query1.py,sha256=xcYzHY-L14JPNU3xfqT_vva4H7tjaTitDB4LgabABB4,5969
|
|
163
|
+
shaped/autogen/models/query_any_of.py,sha256=PGQ4Th5HkrJIoE9c3h4XJylF0xISiIxiY1Tuxf3AFMQ,6553
|
|
164
|
+
shaped/autogen/models/query_definition.py,sha256=kLKHPyUtXvzJ5BKD_9SFt7Fv0WCPyFuwK5pqXySpeY0,4674
|
|
165
|
+
shaped/autogen/models/query_encoder.py,sha256=LoMxGDNhzCjwCAmwWsMXQbRjRIMolRPyRzCXGlyXrKg,9889
|
|
166
|
+
shaped/autogen/models/query_explanation.py,sha256=lrMIDt6_GxFCIDo6DhDL-yFVA9QaB8kenWdLyxzpQs0,9886
|
|
167
|
+
shaped/autogen/models/query_request.py,sha256=oTdpamewfylNn_48W4wexnzqBSlcS66DCk8FNCI1nJ8,6518
|
|
168
|
+
shaped/autogen/models/query_result.py,sha256=FsKFsC8zpUTMjZAR7nlzIhuy3RrLHponIqcHrG5MtpM,5360
|
|
169
|
+
shaped/autogen/models/query_table_config.py,sha256=_5f0mG0MafYV0FMFENDmEuH3TfCNjWyF480lehl-UsY,4078
|
|
170
|
+
shaped/autogen/models/rank_item_attribute_values_query_config.py,sha256=tPxtGlI6uWB9QFgqNOjkQUSJqNV1PBbS1ieXQcz4Zv8,5378
|
|
171
|
+
shaped/autogen/models/rank_query_config.py,sha256=NjWu8x_2KtwlcJwXIKiqZryGkKQgfV6yWjndFeVy4tg,7827
|
|
172
|
+
shaped/autogen/models/rank_query_config_filter_inner.py,sha256=2aUmBY5NHCvm4zQ9szhgM1WCUpjV0xImtTkSEKM_eG0,6805
|
|
173
|
+
shaped/autogen/models/rank_query_config_reorder_inner.py,sha256=qWMyiMu786QM9IvaTBDopC_078IsAi7gaQE6uO4oV0w,6871
|
|
174
|
+
shaped/autogen/models/rank_query_config_retrieve_inner.py,sha256=XNb96a9Lef7a1v1eFEWngIKfybm47hVkihQLoSoOSNA,10341
|
|
175
|
+
shaped/autogen/models/recreate_rollout.py,sha256=uXSW-WCdxrxSITIRle6XILVat73HKni0iqaf6FBeoCQ,3776
|
|
176
|
+
shaped/autogen/models/redshift_table_config.py,sha256=VnsD_JJZHj1Hb9shzUD5-rUxA_ziYcIdHpJIflYHkTY,7312
|
|
177
|
+
shaped/autogen/models/reference_table_config.py,sha256=kz5nLntYaH9vECLn4gDajorAFamnc24rYEiSbA54-oU,4634
|
|
178
|
+
shaped/autogen/models/regularization.py,sha256=vAHqLo1uNU06SmbYYV3uHea9YO2tdyzh4RprAH6tv5k,5789
|
|
179
|
+
shaped/autogen/models/request.py,sha256=k2pIlRAjEq-3dMUit3VpDPGm4OvRiqpbBYV4M8pX5w8,20634
|
|
180
|
+
shaped/autogen/models/request1.py,sha256=kbH3gcGm4XT792EXdt9nrW7uwbtplEMSlhUWuCvqyLs,6297
|
|
181
|
+
shaped/autogen/models/requests_per_second_scaling_policy.py,sha256=XXR6XEUxfEWBvB4ZstnnqR-KosmoyAhZMpmFXG9nP5I,4793
|
|
182
|
+
shaped/autogen/models/response_get_view_details_views_view_name_get.py,sha256=A6RHeA-uC4OjFXW7jL-FqBmo2w_5bHzlIDv1oddZv7A,5896
|
|
183
|
+
shaped/autogen/models/result.py,sha256=6UiXDTJH1bP0OVTiVRT5kmUrUpcaRwGTwpN3l1EB9RE,6498
|
|
184
|
+
shaped/autogen/models/result_embeddings_value.py,sha256=N0EDE6w2y9rsZKUOYLTE-f5ZevUmuVWYOrD35paVkBg,5240
|
|
185
|
+
shaped/autogen/models/retriever.py,sha256=bZHPTFQEREKiTuNdDHurul_ZFVtI4OfKzGVXUTl2Xs4,10224
|
|
186
|
+
shaped/autogen/models/retriever1.py,sha256=EZAzAdZCijIDNYCjndrsQxFGD0oE4X7idNcBNVS0VyU,10234
|
|
187
|
+
shaped/autogen/models/rollout_config.py,sha256=jD_qIvAEdgWm_yOuXQYNW917-WYbcDJr1j04_FeASWc,3685
|
|
188
|
+
shaped/autogen/models/rudderstack_table_config.py,sha256=FixNmhuCS6TY15-Zir3kp12hFgAJgU08rKSe88t3INE,4361
|
|
189
|
+
shaped/autogen/models/sampling_strategy.py,sha256=k07rG2dZ-K6IDE98XhMYPVHPzpZIrI9ncEmWxMIEO-U,1594
|
|
190
|
+
shaped/autogen/models/saved_query_info_response.py,sha256=6xZOpMiCGvr7s5DrrElGwYgUjHl4zXeB1_sSN-tJGJc,3582
|
|
191
|
+
shaped/autogen/models/saved_query_list_response.py,sha256=psoC_2Ferrzu8IFfTHZxM3_1oMuQ82IN2QEmzTFCtF0,3455
|
|
192
|
+
shaped/autogen/models/saved_query_request.py,sha256=cmFG5b95cB_E4_Melck16lxfas9LQ9V_KlkCQ0Mo-rc,6211
|
|
193
|
+
shaped/autogen/models/schema_config.py,sha256=B1PjkvH09YnKm7oMivD1vG_wssyzjOkBEa2fGdyEBNY,4972
|
|
194
|
+
shaped/autogen/models/score.py,sha256=tq2T-oVymZLkMiAYc_s5s32DbAOIHurBy3EkZRD7aRg,5748
|
|
195
|
+
shaped/autogen/models/score_ensemble.py,sha256=CAhmlTDPIjZmfsHRpy3So9f_Jj87OjEmOFzq0cqoSF8,6349
|
|
196
|
+
shaped/autogen/models/score_ensemble_policy_config.py,sha256=VmkpXUqtAfWzdZ4Kli9XGgGo7iIxqhD03jysDhiG2LE,6162
|
|
197
|
+
shaped/autogen/models/score_ensemble_policy_config_policies_inner.py,sha256=TukRQiqFhCGfl1wg8HxEkqqxdRmfB0LH12MjYVhg8fU,44254
|
|
198
|
+
shaped/autogen/models/search_config.py,sha256=M4tmC9rhSOWaohemoPu7rogAaSy5_tJsy56mWd8YMb8,4334
|
|
199
|
+
shaped/autogen/models/segment_table_config.py,sha256=HOeu_GjFSmAn8UfWpyGjjpykV06T1-7bQSS5BAgF22w,4321
|
|
200
|
+
shaped/autogen/models/sequence_length.py,sha256=Q7PM40DAPAKi4NTLCS24B2qAp5QBriRKyqlyisEGgK0,5853
|
|
201
|
+
shaped/autogen/models/server_config.py,sha256=TQflgL3mTY75Fr0wj2QTH_8qoSGVrROAZbHOSmwgKPY,3541
|
|
202
|
+
shaped/autogen/models/setup_engine_response.py,sha256=rG6EQHLZ1wjj5GZXczrcF08LGZJUn4GxlPB7ZNG2mbg,3438
|
|
203
|
+
shaped/autogen/models/shaped_internal_recsys_policies_als_model_policy_als_model_policy_config.py,sha256=m57Dr1ZbxsFeX059SeW4Wbx5DcSM3C2O1x-evmcrJn8,7111
|
|
204
|
+
shaped/autogen/models/shaped_internal_recsys_policies_beeformer_model_policy_beeformer_model_policy_beeformer_model_policy_config.py,sha256=y7REJuo-Omv3QLLogMtfJqTdq7sz4y5JNOhtkxcP8us,8237
|
|
205
|
+
shaped/autogen/models/shaped_internal_recsys_policies_bert_model_policy_bert_model_policy_bert_model_policy_config.py,sha256=Tvd_M_SrLtQuyeHn4A1mHpqCaPKqXBr2z95zuO-k7sY,11853
|
|
206
|
+
shaped/autogen/models/shaped_internal_recsys_policies_chronological_model_policy_chronological_model_policy_config.py,sha256=vp1czVin8oGsniTTIZNUz9o4KpjPoFGfA5VazBcVz4s,5980
|
|
207
|
+
shaped/autogen/models/shaped_internal_recsys_policies_elsa_model_policy_elsa_model_policy_elsa_model_policy_config.py,sha256=q0u9lKD33p1lBHSaZsqG_ebT7PL-chc6nZkJce-iqvw,6490
|
|
208
|
+
shaped/autogen/models/shaped_internal_recsys_policies_gsasrec_model_policy_gsasrec_model_policy_gsas_rec_model_policy_config.py,sha256=tuMetLaRjC7jSFwaIrfy_gdWd0nuva_s9H30lmMhF-8,11435
|
|
209
|
+
shaped/autogen/models/shaped_internal_recsys_policies_item2vec_model_policy_item2_vec_model_policy_config.py,sha256=CzdY1aABZDOcl0_FoeEKvCgIIOdblPSQXPdh7TaL_6g,6691
|
|
210
|
+
shaped/autogen/models/shaped_internal_recsys_policies_item_content_similarity_model_policy_item_content_similarity_model_policy_config.py,sha256=erkK9ZfN4nvVq2Nq9sT11aL-_iDe8QZ5rIVU9uyha8M,7504
|
|
211
|
+
shaped/autogen/models/shaped_internal_recsys_policies_lightgbm_model_policy_lightgbm_model_policy_light_gbm_model_policy_config.py,sha256=-UdELueFc652E1gXw5Da4jAeHaw4jdil5RziTb39tTs,15019
|
|
212
|
+
shaped/autogen/models/shaped_internal_recsys_policies_ngram_model_policy_ngram_model_policy_config.py,sha256=awDF3RE5b6ftm1GbZ2Bmoqk_hFCiYWQIb7rh4hAD0Ik,5281
|
|
213
|
+
shaped/autogen/models/shaped_internal_recsys_policies_popular_model_policy_popular_model_policy_config.py,sha256=FG_s5mLZPgkYGK3iuxj-MbndCdvwAsBCLwW2X6u7jgA,6132
|
|
214
|
+
shaped/autogen/models/shaped_internal_recsys_policies_random_model_policy_random_model_policy_config.py,sha256=-zmOV_KwphI0AxDb0k936XculVmDoutVQzZ2UJHrfHY,4245
|
|
215
|
+
shaped/autogen/models/shaped_internal_recsys_policies_recently_popular_policy_recently_popular_policy_config.py,sha256=kedUwpoFQii0NYbVV_wIuqbtZpip2nroTq2dgaQ-kNo,5594
|
|
216
|
+
shaped/autogen/models/shaped_internal_recsys_policies_rising_popular_policy_rising_popular_policy_config.py,sha256=y3Y6dTZvf5zJEhao_8LciG7Nex8vSGGqD-We1Kvy2lE,5513
|
|
217
|
+
shaped/autogen/models/shaped_internal_recsys_policies_sasrec_model_policy_sasrec_model_policy_sas_rec_model_policy_config.py,sha256=JOSvH4IHw5y4S7Uaq0I3mg9pnwVFcI-jw7lRXbfjFSA,12983
|
|
218
|
+
shaped/autogen/models/shaped_internal_recsys_policies_svd_model_policy_svd_model_policy_config.py,sha256=dXlLi3FAQ1TDouwPaNR4nhj1rP_6bEpDLynVqkzQXHw,5181
|
|
219
|
+
shaped/autogen/models/shaped_internal_recsys_policies_two_tower_model_policy_two_tower_model_policy_two_tower_model_policy_config.py,sha256=o0WDQUp6DrE2vRkbup1dKR_tvFyU0b0oM2TF98B_ECw,8183
|
|
220
|
+
shaped/autogen/models/shaped_internal_recsys_policies_user_item_content_similarity_model_policy_user_item_content_similarity_model_policy_config.py,sha256=JxUXs9VZzfRH6iRG73T_5kg9pu5nj8aFkJqrotSN0Qs,6012
|
|
221
|
+
shaped/autogen/models/shaped_internal_recsys_policies_widedeep_model_policy_wide_deep_model_policy_config.py,sha256=HmOCZmYBCa2T2H2WhxSJSJcuF9w1GCOZhyAn9-idlSY,5796
|
|
222
|
+
shaped/autogen/models/shaped_internal_recsys_policies_xgboost_model_policy_xg_boost_model_policy_config.py,sha256=NM2tCuCackJ6vBAEpegqT-YLW0L8cENW0sRCvhZWqfU,7472
|
|
223
|
+
shaped/autogen/models/shopify_table_config.py,sha256=NiCHuteM2OaXKtjKdngWgAJyNQVX1xNqGV1Ryo9heWA,7072
|
|
224
|
+
shaped/autogen/models/similarity_retrieve_step.py,sha256=pBvk0_Bhw0roPyTO0cs_SnpBUE-MRr3nhSAcftkN958,5236
|
|
225
|
+
shaped/autogen/models/snowflake_table_config.py,sha256=gH-3xDDNZldXryqdoINB0cHwVR-giZvlxrNMdE-M5Wg,7666
|
|
226
|
+
shaped/autogen/models/sql_transform_type.py,sha256=h2nDmqzBMB267UpMAE4ooPNz2rRTh77e2TtJNmXPbW0,1626
|
|
227
|
+
shaped/autogen/models/sql_view_config.py,sha256=-ZcYdoZydQwkeqYlm8fGShETdkSxW6SrBh1REWuhxXY,4751
|
|
228
|
+
shaped/autogen/models/stemmer_tokenizer.py,sha256=TAhUB_07CQRELJwxzOwzIe8ipAdAsvNsBoWGnKvAyAc,4773
|
|
229
|
+
shaped/autogen/models/step_explanation.py,sha256=JzTf1FMsfR0lw0kHVKTdukN4QJk6YvFuYML2ypXnsII,6226
|
|
230
|
+
shaped/autogen/models/strategy.py,sha256=LMotF1AmNQxL6HSU-I7e4U9jsnisurJgONCUjHLAEKg,5763
|
|
231
|
+
shaped/autogen/models/table.py,sha256=QIiiFrZ600A0n6BuMTt4n5yGwZ76kcfNjU7xuomAvZE,4247
|
|
232
|
+
shaped/autogen/models/table_deployment_type.py,sha256=Vvs29sWoeW34UXgEZ7UaBRjkmr6p5cevDbw0hqIV6F4,1655
|
|
233
|
+
shaped/autogen/models/table_insert_arguments.py,sha256=GkhQMZlrhYjU64oV6317aKLKJ4oQHGYCf3OC035p80s,3443
|
|
234
|
+
shaped/autogen/models/table_insert_response.py,sha256=l0Ea77SP0sOrFwF28FNKejDbfy0-BSlIPZjyKJJI9go,3414
|
|
235
|
+
shaped/autogen/models/text_encoding.py,sha256=rtJSM3d7FpwYK0Jlyj-iEUfV46sOVUniJFdqra7qvC0,5681
|
|
236
|
+
shaped/autogen/models/text_search_retrieve_step.py,sha256=8jjAk0AL3rp28AjL5ZaBX_w7XFoT7m_jDyoGNOhZJDo,5100
|
|
237
|
+
shaped/autogen/models/time_frequency.py,sha256=qpUaBsFe-NMb1yKYVxbhGLjcJhxnEk8H-DwwoMaBN8s,5695
|
|
238
|
+
shaped/autogen/models/time_window.py,sha256=G8hPRz6nlp-eK9yHazV6gEZHw0gyX-CFEn_vDapnRD0,5643
|
|
239
|
+
shaped/autogen/models/time_window_in_days.py,sha256=0kYbS7ChytmLH38Ki75KE7ksNWj9f5vENZAskhTwncM,5781
|
|
240
|
+
shaped/autogen/models/tokenizer.py,sha256=qKWVMD9Gb_tYM0qvN7skRI4cwkMCoJKg07IYcRM0pjU,6625
|
|
241
|
+
shaped/autogen/models/trained_model_encoder.py,sha256=rc6dtjotGa67QpeLK7pgLu8hDSAlS5X7xpd6AJxYz-0,3965
|
|
242
|
+
shaped/autogen/models/training_compute_config.py,sha256=NVINEdFaglxkz70LUrnxTEMv7FFpJMCQv64XrJPj5bA,5010
|
|
243
|
+
shaped/autogen/models/training_config.py,sha256=IdHM2fs0vNUqXjXIAqO3SyNshxlIK7gRpao-narHx8Q,6136
|
|
244
|
+
shaped/autogen/models/training_config_models_inner.py,sha256=kZWlS1t2srD5wvRRgjLts5hvi0cV1kHc_FB-lXC3LbM,30683
|
|
245
|
+
shaped/autogen/models/training_strategy.py,sha256=-RSissMHV8Vvu4Ot4jl430dYnrxoqhHbgBfrLUuXhi8,1626
|
|
246
|
+
shaped/autogen/models/trending_mode.py,sha256=Z5ZM90vcoOyCCn2URy8qhVeJIfmud84QXTgcuLRf2yc,1604
|
|
247
|
+
shaped/autogen/models/truncate_filter_step.py,sha256=qPG6s4hkt8KJBVJ2cLY25q4Rd-UYI-EMsMWNl9TuqTg,4315
|
|
248
|
+
shaped/autogen/models/tunable_bool.py,sha256=kjT8k1aITL8lC-c-gvUgbNRWEoPh0aSUUpc9jvcnk24,3711
|
|
249
|
+
shaped/autogen/models/tunable_float.py,sha256=k2spP2qJEMDrlOeRgt62SgrDAWHidRNQLG6xDgYkPaQ,4504
|
|
250
|
+
shaped/autogen/models/tunable_int.py,sha256=B34s1HubSgbarw4MvBsJr6K3P9cSM18mb7VoDV957tA,4428
|
|
251
|
+
shaped/autogen/models/tunable_int_categorical.py,sha256=i1L3LcaUpm8DCWXiqfX4dF3ChVNiFxTB4GZjCLb7EXk,3889
|
|
252
|
+
shaped/autogen/models/tunable_string.py,sha256=kJVPh4m9ifHNhL_G8Y5jc6fXXlOQaVDsbgCHaXDlgnE,3810
|
|
253
|
+
shaped/autogen/models/tuning_config.py,sha256=hAJi7hDSouW9om6f6GVEVKnBM1i3TJpPGfXBlv4cchI,3767
|
|
254
|
+
shaped/autogen/models/type.py,sha256=iesJpqv6C-qKnDp-anrvFPh94sFaSN5ETUXWKqdYJ6w,5704
|
|
255
|
+
shaped/autogen/models/update_table_response.py,sha256=LE71Kyi9C2e10B6fSrq8hT7JJhZeZkvEl2qAFLdShsI,3434
|
|
256
|
+
shaped/autogen/models/update_view_response.py,sha256=E-Tj3mP_yboRoyFidhXNyJxdwhR_XgMh-85KOAve3U4,3429
|
|
257
|
+
shaped/autogen/models/user_attribute_pooling_encoder.py,sha256=DuTevbStGspUEdNzPRzZeeDQ8ij0MjJz5y5Lo6xqGQE,5447
|
|
258
|
+
shaped/autogen/models/val_split.py,sha256=uu14oMpSLx7Zsh-jYLHkds2robNfPVTTuGSscKg1Xz4,5759
|
|
259
|
+
shaped/autogen/models/validation_error.py,sha256=0M_KmtoLMsQmYlcrummynFNRfu2euhuGbJ_HN0Pg40k,3943
|
|
260
|
+
shaped/autogen/models/validation_error_loc_inner.py,sha256=PUqxTWEKkjH4i9WgwULnhtjJx0vndK0Atn3HRsx6KwM,5732
|
|
261
|
+
shaped/autogen/models/value_type.py,sha256=rYDE9T9X42hbfukmtVFam_Kl1D1clUKcSBwM5EE0BKk,2078
|
|
262
|
+
shaped/autogen/models/vector_search_mode.py,sha256=WWblTNbgnZBFmpqq1NBdwu0I8b91AVxc4X9Yb5cW46w,3973
|
|
263
|
+
shaped/autogen/models/view.py,sha256=hTEpB2ZaBNlVkA5SQ5M0a1VIyWnCYCWZRVLMGi_Pi70,4415
|
|
264
|
+
shaped/autogen/models/view_details_ai.py,sha256=i9JjlHqkdlrzzASaVPXl7Ldq0ZWVzwmYSQHvl-GgdoU,6189
|
|
265
|
+
shaped/autogen/models/view_details_ai_schema_value.py,sha256=RH7YXJ2ceJWyyq4lOsqlaWEdvwIqNagXX-mJSpF1yU4,6577
|
|
266
|
+
shaped/autogen/models/view_details_sql.py,sha256=_XSQCNPLxUDkKIvXnWKSbNZBCenVxF6m_vo5czahj1Y,6163
|
|
267
|
+
shaped/autogen/models/view_status.py,sha256=R6YtpzB7QVn3AghnNdIHrbs4_HYxI11wnUcmjJt9SCI,1706
|
|
268
|
+
shaped/autogen/models/weight_decay.py,sha256=4FraC2YrWnTaAp3YVYNWX8Y8tmyXym5Pyxc9aNZ_AFg,5772
|
|
269
|
+
shaped/autogen/models/whitespace_tokenizer.py,sha256=3iOhzTSL63uYn215gSr-Rnp51V5sf7gFdgMX3cX1Wh4,3828
|
|
270
|
+
shaped/autogen/models/window_size.py,sha256=xWxxa-zhhKi-a8VYlofrw88KGOh_a-TeQcQBGaPi2u8,5687
|
|
271
|
+
shaped/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
272
|
+
shaped/cli/shaped_cli.py,sha256=XvKlFrKUqYSiLSet1AFbQrlY2aKueRfAHPThlsXs-4w,20699
|
|
273
|
+
shaped-2.0.2.dist-info/METADATA,sha256=RjER6KATL25OeeYiJBl9oj-O0P9YK7HAmZxALjOr3wo,8008
|
|
274
|
+
shaped-2.0.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
275
|
+
shaped-2.0.2.dist-info/entry_points.txt,sha256=Wa7tSHF7q4vSrM2UR5E-e3dVdSb59EOKQrA-6PAvyZI,54
|
|
276
|
+
shaped-2.0.2.dist-info/top_level.txt,sha256=w-lDaoadQVYpze9N9gZyK9qngb7fZCJ-KCdHLGvt0SU,7
|
|
277
|
+
shaped-2.0.2.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
278
|
+
shaped-2.0.2.dist-info/RECORD,,
|