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
shaped/autogen/api_client.py
CHANGED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"""
|
|
4
4
|
Shaped API
|
|
5
5
|
|
|
6
|
-
Welcome to Shaped's API reference docs. These provide a
|
|
6
|
+
Welcome to Shaped's API reference docs. These provide a detailed view of the endpoints and CLI commands that Shaped provides and brief explanations of how they should be used. The Shaped API has four main endpoints: **Tables** - Provision and manage batch and real-time data connectors. **Views** - Configure SQL transformations and AI enrichment on your input data. Use SQL to combine multiple data sources or use an LLM to add new categories, extract specific attributes from descriptions, etc. **Engines** - Deploy and manage your relevance engines. The Engine API exposes configuration for indexing logic, input datasets, externam embeddings, and more. **Query** - Execute queries against your engines, to return data based on an input query or rerank an existing list. The Query API exposes the retrieve, filter, score, and ranking steps of the 4-stage ranking architecture. The base URL for each endpoint is: `https://api.shaped.ai/v2`
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document:
|
|
8
|
+
The version of the OpenAPI document: 2.0.0
|
|
9
9
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
10
|
|
|
11
11
|
Do not edit the class manually.
|
|
@@ -21,6 +21,7 @@ import mimetypes
|
|
|
21
21
|
import os
|
|
22
22
|
import re
|
|
23
23
|
import tempfile
|
|
24
|
+
import uuid
|
|
24
25
|
|
|
25
26
|
from urllib.parse import quote
|
|
26
27
|
from typing import Tuple, Optional, List, Dict, Union
|
|
@@ -356,6 +357,8 @@ class ApiClient:
|
|
|
356
357
|
return obj.get_secret_value()
|
|
357
358
|
elif isinstance(obj, self.PRIMITIVE_TYPES):
|
|
358
359
|
return obj
|
|
360
|
+
elif isinstance(obj, uuid.UUID):
|
|
361
|
+
return str(obj)
|
|
359
362
|
elif isinstance(obj, list):
|
|
360
363
|
return [
|
|
361
364
|
self.sanitize_for_serialization(sub_obj) for sub_obj in obj
|
|
@@ -382,6 +385,10 @@ class ApiClient:
|
|
|
382
385
|
else:
|
|
383
386
|
obj_dict = obj.__dict__
|
|
384
387
|
|
|
388
|
+
if isinstance(obj_dict, list):
|
|
389
|
+
# here we handle instances that can either be a list or something else, and only became a real list by calling to_dict()
|
|
390
|
+
return self.sanitize_for_serialization(obj_dict)
|
|
391
|
+
|
|
385
392
|
return {
|
|
386
393
|
key: self.sanitize_for_serialization(val)
|
|
387
394
|
for key, val in obj_dict.items()
|
|
@@ -404,7 +411,7 @@ class ApiClient:
|
|
|
404
411
|
data = json.loads(response_text)
|
|
405
412
|
except ValueError:
|
|
406
413
|
data = response_text
|
|
407
|
-
elif re.match(r'^application/(json|[\w
|
|
414
|
+
elif re.match(r'^application/(json|[\w!#$&.+\-^_]+\+json)\s*(;|$)', content_type, re.IGNORECASE):
|
|
408
415
|
if response_text == "":
|
|
409
416
|
data = ""
|
|
410
417
|
else:
|
|
@@ -453,13 +460,13 @@ class ApiClient:
|
|
|
453
460
|
|
|
454
461
|
if klass in self.PRIMITIVE_TYPES:
|
|
455
462
|
return self.__deserialize_primitive(data, klass)
|
|
456
|
-
elif klass
|
|
463
|
+
elif klass is object:
|
|
457
464
|
return self.__deserialize_object(data)
|
|
458
|
-
elif klass
|
|
465
|
+
elif klass is datetime.date:
|
|
459
466
|
return self.__deserialize_date(data)
|
|
460
|
-
elif klass
|
|
467
|
+
elif klass is datetime.datetime:
|
|
461
468
|
return self.__deserialize_datetime(data)
|
|
462
|
-
elif klass
|
|
469
|
+
elif klass is decimal.Decimal:
|
|
463
470
|
return decimal.Decimal(data)
|
|
464
471
|
elif issubclass(klass, Enum):
|
|
465
472
|
return self.__deserialize_enum(data, klass)
|
|
@@ -517,7 +524,7 @@ class ApiClient:
|
|
|
517
524
|
if k in collection_formats:
|
|
518
525
|
collection_format = collection_formats[k]
|
|
519
526
|
if collection_format == 'multi':
|
|
520
|
-
new_params.extend((k, str(value)) for value in v)
|
|
527
|
+
new_params.extend((k, quote(str(value))) for value in v)
|
|
521
528
|
else:
|
|
522
529
|
if collection_format == 'ssv':
|
|
523
530
|
delimiter = ' '
|
shaped/autogen/configuration.py
CHANGED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"""
|
|
4
4
|
Shaped API
|
|
5
5
|
|
|
6
|
-
Welcome to Shaped's API reference docs. These provide a
|
|
6
|
+
Welcome to Shaped's API reference docs. These provide a detailed view of the endpoints and CLI commands that Shaped provides and brief explanations of how they should be used. The Shaped API has four main endpoints: **Tables** - Provision and manage batch and real-time data connectors. **Views** - Configure SQL transformations and AI enrichment on your input data. Use SQL to combine multiple data sources or use an LLM to add new categories, extract specific attributes from descriptions, etc. **Engines** - Deploy and manage your relevance engines. The Engine API exposes configuration for indexing logic, input datasets, externam embeddings, and more. **Query** - Execute queries against your engines, to return data based on an input query or rerank an existing list. The Query API exposes the retrieve, filter, score, and ranking steps of the 4-stage ranking architecture. The base URL for each endpoint is: `https://api.shaped.ai/v2`
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document:
|
|
8
|
+
The version of the OpenAPI document: 2.0.0
|
|
9
9
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
10
|
|
|
11
11
|
Do not edit the class manually.
|
|
@@ -18,7 +18,7 @@ import logging
|
|
|
18
18
|
from logging import FileHandler
|
|
19
19
|
import multiprocessing
|
|
20
20
|
import sys
|
|
21
|
-
from typing import Any, ClassVar, Dict, List, Literal, Optional, TypedDict
|
|
21
|
+
from typing import Any, ClassVar, Dict, List, Literal, Optional, TypedDict, Union
|
|
22
22
|
from typing_extensions import NotRequired, Self
|
|
23
23
|
|
|
24
24
|
import urllib3
|
|
@@ -160,6 +160,10 @@ class Configuration:
|
|
|
160
160
|
:param ssl_ca_cert: str - the path to a file of concatenated CA certificates
|
|
161
161
|
in PEM format.
|
|
162
162
|
:param retries: Number of retries for API requests.
|
|
163
|
+
:param ca_cert_data: verify the peer using concatenated CA certificate data
|
|
164
|
+
in PEM (str) or DER (bytes) format.
|
|
165
|
+
:param cert_file: the path to a client certificate file, for mTLS.
|
|
166
|
+
:param key_file: the path to a client key file, for mTLS.
|
|
163
167
|
|
|
164
168
|
"""
|
|
165
169
|
|
|
@@ -173,19 +177,22 @@ class Configuration:
|
|
|
173
177
|
username: Optional[str]=None,
|
|
174
178
|
password: Optional[str]=None,
|
|
175
179
|
access_token: Optional[str]=None,
|
|
176
|
-
server_index: Optional[int]=None,
|
|
180
|
+
server_index: Optional[int]=None,
|
|
177
181
|
server_variables: Optional[ServerVariablesT]=None,
|
|
178
182
|
server_operation_index: Optional[Dict[int, int]]=None,
|
|
179
183
|
server_operation_variables: Optional[Dict[int, ServerVariablesT]]=None,
|
|
180
184
|
ignore_operation_servers: bool=False,
|
|
181
185
|
ssl_ca_cert: Optional[str]=None,
|
|
182
186
|
retries: Optional[int] = None,
|
|
187
|
+
ca_cert_data: Optional[Union[str, bytes]] = None,
|
|
188
|
+
cert_file: Optional[str]=None,
|
|
189
|
+
key_file: Optional[str]=None,
|
|
183
190
|
*,
|
|
184
191
|
debug: Optional[bool] = None,
|
|
185
192
|
) -> None:
|
|
186
193
|
"""Constructor
|
|
187
194
|
"""
|
|
188
|
-
self._base_path = "https://api.shaped.ai/
|
|
195
|
+
self._base_path = "https://api.shaped.ai/v2" if host is None else host
|
|
189
196
|
"""Default Base url
|
|
190
197
|
"""
|
|
191
198
|
self.server_index = 0 if server_index is None and host is None else server_index
|
|
@@ -257,10 +264,14 @@ class Configuration:
|
|
|
257
264
|
self.ssl_ca_cert = ssl_ca_cert
|
|
258
265
|
"""Set this to customize the certificate file to verify the peer.
|
|
259
266
|
"""
|
|
260
|
-
self.
|
|
267
|
+
self.ca_cert_data = ca_cert_data
|
|
268
|
+
"""Set this to verify the peer using PEM (str) or DER (bytes)
|
|
269
|
+
certificate data.
|
|
270
|
+
"""
|
|
271
|
+
self.cert_file = cert_file
|
|
261
272
|
"""client certificate file
|
|
262
273
|
"""
|
|
263
|
-
self.key_file =
|
|
274
|
+
self.key_file = key_file
|
|
264
275
|
"""client key file
|
|
265
276
|
"""
|
|
266
277
|
self.assert_hostname = None
|
|
@@ -493,7 +504,7 @@ class Configuration:
|
|
|
493
504
|
return "Python SDK Debug Report:\n"\
|
|
494
505
|
"OS: {env}\n"\
|
|
495
506
|
"Python Version: {pyversion}\n"\
|
|
496
|
-
"Version of the API:
|
|
507
|
+
"Version of the API: 2.0.0\n"\
|
|
497
508
|
"SDK Package Version: 1.0.0".\
|
|
498
509
|
format(env=sys.platform, pyversion=sys.version)
|
|
499
510
|
|
|
@@ -504,7 +515,7 @@ class Configuration:
|
|
|
504
515
|
"""
|
|
505
516
|
return [
|
|
506
517
|
{
|
|
507
|
-
'url': "https://api.shaped.ai/
|
|
518
|
+
'url': "https://api.shaped.ai/v2",
|
|
508
519
|
'description': "No description provided",
|
|
509
520
|
}
|
|
510
521
|
]
|
shaped/autogen/exceptions.py
CHANGED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"""
|
|
4
4
|
Shaped API
|
|
5
5
|
|
|
6
|
-
Welcome to Shaped's API reference docs. These provide a
|
|
6
|
+
Welcome to Shaped's API reference docs. These provide a detailed view of the endpoints and CLI commands that Shaped provides and brief explanations of how they should be used. The Shaped API has four main endpoints: **Tables** - Provision and manage batch and real-time data connectors. **Views** - Configure SQL transformations and AI enrichment on your input data. Use SQL to combine multiple data sources or use an LLM to add new categories, extract specific attributes from descriptions, etc. **Engines** - Deploy and manage your relevance engines. The Engine API exposes configuration for indexing logic, input datasets, externam embeddings, and more. **Query** - Execute queries against your engines, to return data based on an input query or rerank an existing list. The Query API exposes the retrieve, filter, score, and ranking steps of the 4-stage ranking architecture. The base URL for each endpoint is: `https://api.shaped.ai/v2`
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document:
|
|
8
|
+
The version of the OpenAPI document: 2.0.0
|
|
9
9
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
10
|
|
|
11
11
|
Do not edit the class manually.
|
|
@@ -150,6 +150,13 @@ class ApiException(OpenApiException):
|
|
|
150
150
|
if http_resp.status == 404:
|
|
151
151
|
raise NotFoundException(http_resp=http_resp, body=body, data=data)
|
|
152
152
|
|
|
153
|
+
# Added new conditions for 409 and 422
|
|
154
|
+
if http_resp.status == 409:
|
|
155
|
+
raise ConflictException(http_resp=http_resp, body=body, data=data)
|
|
156
|
+
|
|
157
|
+
if http_resp.status == 422:
|
|
158
|
+
raise UnprocessableEntityException(http_resp=http_resp, body=body, data=data)
|
|
159
|
+
|
|
153
160
|
if 500 <= http_resp.status <= 599:
|
|
154
161
|
raise ServiceException(http_resp=http_resp, body=body, data=data)
|
|
155
162
|
raise ApiException(http_resp=http_resp, body=body, data=data)
|
|
@@ -188,6 +195,16 @@ class ServiceException(ApiException):
|
|
|
188
195
|
pass
|
|
189
196
|
|
|
190
197
|
|
|
198
|
+
class ConflictException(ApiException):
|
|
199
|
+
"""Exception for HTTP 409 Conflict."""
|
|
200
|
+
pass
|
|
201
|
+
|
|
202
|
+
|
|
203
|
+
class UnprocessableEntityException(ApiException):
|
|
204
|
+
"""Exception for HTTP 422 Unprocessable Entity."""
|
|
205
|
+
pass
|
|
206
|
+
|
|
207
|
+
|
|
191
208
|
def render_path(path_to_item):
|
|
192
209
|
"""Returns a string representation of a path"""
|
|
193
210
|
result = ""
|
|
@@ -4,65 +4,267 @@
|
|
|
4
4
|
"""
|
|
5
5
|
Shaped API
|
|
6
6
|
|
|
7
|
-
Welcome to Shaped's API reference docs. These provide a
|
|
7
|
+
Welcome to Shaped's API reference docs. These provide a detailed view of the endpoints and CLI commands that Shaped provides and brief explanations of how they should be used. The Shaped API has four main endpoints: **Tables** - Provision and manage batch and real-time data connectors. **Views** - Configure SQL transformations and AI enrichment on your input data. Use SQL to combine multiple data sources or use an LLM to add new categories, extract specific attributes from descriptions, etc. **Engines** - Deploy and manage your relevance engines. The Engine API exposes configuration for indexing logic, input datasets, externam embeddings, and more. **Query** - Execute queries against your engines, to return data based on an input query or rerank an existing list. The Query API exposes the retrieve, filter, score, and ranking steps of the 4-stage ranking architecture. The base URL for each endpoint is: `https://api.shaped.ai/v2`
|
|
8
8
|
|
|
9
|
-
The version of the OpenAPI document:
|
|
9
|
+
The version of the OpenAPI document: 2.0.0
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
12
12
|
Do not edit the class manually.
|
|
13
13
|
""" # noqa: E501
|
|
14
14
|
|
|
15
|
-
|
|
16
15
|
# import models into model package
|
|
17
|
-
from shaped.autogen.models.
|
|
18
|
-
from shaped.autogen.models.
|
|
19
|
-
from shaped.autogen.models.
|
|
20
|
-
from shaped.autogen.models.
|
|
21
|
-
from shaped.autogen.models.
|
|
22
|
-
from shaped.autogen.models.
|
|
23
|
-
from shaped.autogen.models.
|
|
24
|
-
from shaped.autogen.models.
|
|
25
|
-
from shaped.autogen.models.
|
|
26
|
-
from shaped.autogen.models.
|
|
27
|
-
from shaped.autogen.models.
|
|
28
|
-
from shaped.autogen.models.
|
|
29
|
-
from shaped.autogen.models.
|
|
30
|
-
from shaped.autogen.models.
|
|
31
|
-
from shaped.autogen.models.
|
|
32
|
-
from shaped.autogen.models.
|
|
33
|
-
from shaped.autogen.models.
|
|
34
|
-
from shaped.autogen.models.
|
|
35
|
-
from shaped.autogen.models.
|
|
36
|
-
from shaped.autogen.models.
|
|
16
|
+
from shaped.autogen.models.ai_enrichment_view_config import AIEnrichmentViewConfig
|
|
17
|
+
from shaped.autogen.models.aws_pinpoint_table_config import AWSPinpointTableConfig
|
|
18
|
+
from shaped.autogen.models.algorithm import Algorithm
|
|
19
|
+
from shaped.autogen.models.amplitude_table_config import AmplitudeTableConfig
|
|
20
|
+
from shaped.autogen.models.ascending import Ascending
|
|
21
|
+
from shaped.autogen.models.attn_dropout_prob import AttnDropoutProb
|
|
22
|
+
from shaped.autogen.models.attribute_journey import AttributeJourney
|
|
23
|
+
from shaped.autogen.models.attribute_value import AttributeValue
|
|
24
|
+
from shaped.autogen.models.autoscaling_config import AutoscalingConfig
|
|
25
|
+
from shaped.autogen.models.batch_size import BatchSize
|
|
26
|
+
from shaped.autogen.models.batch_size1 import BatchSize1
|
|
27
|
+
from shaped.autogen.models.batch_size2 import BatchSize2
|
|
28
|
+
from shaped.autogen.models.big_query_table_config import BigQueryTableConfig
|
|
29
|
+
from shaped.autogen.models.bm25 import Bm25
|
|
30
|
+
from shaped.autogen.models.boosted_reorder_step import BoostedReorderStep
|
|
31
|
+
from shaped.autogen.models.canary_rollout import CanaryRollout
|
|
32
|
+
from shaped.autogen.models.candidate_attributes_retrieve_step import CandidateAttributesRetrieveStep
|
|
33
|
+
from shaped.autogen.models.candidate_ids_retrieve_step import CandidateIdsRetrieveStep
|
|
34
|
+
from shaped.autogen.models.candidate_retrieval_strategy import CandidateRetrievalStrategy
|
|
35
|
+
from shaped.autogen.models.clickhouse_table_config import ClickhouseTableConfig
|
|
36
|
+
from shaped.autogen.models.column_order_retrieve_step import ColumnOrderRetrieveStep
|
|
37
|
+
from shaped.autogen.models.column_ordering import ColumnOrdering
|
|
38
|
+
from shaped.autogen.models.create_table_response import CreateTableResponse
|
|
39
|
+
from shaped.autogen.models.create_view_response import CreateViewResponse
|
|
40
|
+
from shaped.autogen.models.custom_table_config import CustomTableConfig
|
|
41
|
+
from shaped.autogen.models.data_compute_config import DataComputeConfig
|
|
42
|
+
from shaped.autogen.models.data_config import DataConfig
|
|
43
|
+
from shaped.autogen.models.data_config_interaction_table import DataConfigInteractionTable
|
|
44
|
+
from shaped.autogen.models.data_split_config import DataSplitConfig
|
|
45
|
+
from shaped.autogen.models.data_split_strategy import DataSplitStrategy
|
|
46
|
+
from shaped.autogen.models.data_tier import DataTier
|
|
47
|
+
from shaped.autogen.models.default import Default
|
|
48
|
+
from shaped.autogen.models.delete_engine_response import DeleteEngineResponse
|
|
49
|
+
from shaped.autogen.models.delete_table_response import DeleteTableResponse
|
|
50
|
+
from shaped.autogen.models.delete_view_response import DeleteViewResponse
|
|
51
|
+
from shaped.autogen.models.deployment_config import DeploymentConfig
|
|
52
|
+
from shaped.autogen.models.distance_function import DistanceFunction
|
|
53
|
+
from shaped.autogen.models.diversity_reorder_step import DiversityReorderStep
|
|
54
|
+
from shaped.autogen.models.dropout_rate import DropoutRate
|
|
55
|
+
from shaped.autogen.models.dynamo_db_table_config import DynamoDBTableConfig
|
|
56
|
+
from shaped.autogen.models.dynamo_db_table_config_scan_kwargs_value import DynamoDBTableConfigScanKwargsValue
|
|
57
|
+
from shaped.autogen.models.embedder_batch_size import EmbedderBatchSize
|
|
58
|
+
from shaped.autogen.models.embedding_config import EmbeddingConfig
|
|
59
|
+
from shaped.autogen.models.embedding_dim import EmbeddingDim
|
|
60
|
+
from shaped.autogen.models.embedding_dims import EmbeddingDims
|
|
61
|
+
from shaped.autogen.models.embedding_size import EmbeddingSize
|
|
62
|
+
from shaped.autogen.models.encoder import Encoder
|
|
63
|
+
from shaped.autogen.models.encoding_pooling_strategy import EncodingPoolingStrategy
|
|
64
|
+
from shaped.autogen.models.engine import Engine
|
|
65
|
+
from shaped.autogen.models.engine_config_v2 import EngineConfigV2
|
|
66
|
+
from shaped.autogen.models.engine_details_response import EngineDetailsResponse
|
|
67
|
+
from shaped.autogen.models.engine_schema import EngineSchema
|
|
68
|
+
from shaped.autogen.models.engine_schema_user_inner import EngineSchemaUserInner
|
|
69
|
+
from shaped.autogen.models.entity_config import EntityConfig
|
|
70
|
+
from shaped.autogen.models.entity_journey import EntityJourney
|
|
71
|
+
from shaped.autogen.models.entity_type import EntityType
|
|
72
|
+
from shaped.autogen.models.evaluation_config import EvaluationConfig
|
|
73
|
+
from shaped.autogen.models.exploration_reorder_step import ExplorationReorderStep
|
|
74
|
+
from shaped.autogen.models.expression_filter_step import ExpressionFilterStep
|
|
75
|
+
from shaped.autogen.models.factors import Factors
|
|
76
|
+
from shaped.autogen.models.factors1 import Factors1
|
|
77
|
+
from shaped.autogen.models.feature import Feature
|
|
78
|
+
from shaped.autogen.models.feature_type import FeatureType
|
|
79
|
+
from shaped.autogen.models.file_table_config import FileTableConfig
|
|
80
|
+
from shaped.autogen.models.filter_config import FilterConfig
|
|
81
|
+
from shaped.autogen.models.filter_dataset import FilterDataset
|
|
82
|
+
from shaped.autogen.models.filter_index_type import FilterIndexType
|
|
83
|
+
from shaped.autogen.models.filter_retrieve_step import FilterRetrieveStep
|
|
84
|
+
from shaped.autogen.models.global_filter import GlobalFilter
|
|
37
85
|
from shaped.autogen.models.http_validation_error import HTTPValidationError
|
|
38
|
-
from shaped.autogen.models.
|
|
39
|
-
from shaped.autogen.models.
|
|
40
|
-
from shaped.autogen.models.
|
|
41
|
-
from shaped.autogen.models.
|
|
42
|
-
from shaped.autogen.models.
|
|
43
|
-
from shaped.autogen.models.
|
|
44
|
-
from shaped.autogen.models.
|
|
45
|
-
from shaped.autogen.models.
|
|
46
|
-
from shaped.autogen.models.
|
|
47
|
-
from shaped.autogen.models.
|
|
48
|
-
from shaped.autogen.models.
|
|
49
|
-
from shaped.autogen.models.
|
|
50
|
-
from shaped.autogen.models.
|
|
51
|
-
from shaped.autogen.models.
|
|
52
|
-
from shaped.autogen.models.
|
|
53
|
-
from shaped.autogen.models.
|
|
54
|
-
from shaped.autogen.models.
|
|
55
|
-
from shaped.autogen.models.
|
|
56
|
-
from shaped.autogen.models.
|
|
57
|
-
from shaped.autogen.models.
|
|
58
|
-
from shaped.autogen.models.
|
|
59
|
-
from shaped.autogen.models.
|
|
60
|
-
from shaped.autogen.models.
|
|
61
|
-
from shaped.autogen.models.
|
|
62
|
-
from shaped.autogen.models.
|
|
63
|
-
from shaped.autogen.models.
|
|
64
|
-
from shaped.autogen.models.
|
|
65
|
-
from shaped.autogen.models.
|
|
86
|
+
from shaped.autogen.models.hidden_dropout_prob import HiddenDropoutProb
|
|
87
|
+
from shaped.autogen.models.hidden_size import HiddenSize
|
|
88
|
+
from shaped.autogen.models.hidden_size1 import HiddenSize1
|
|
89
|
+
from shaped.autogen.models.http_problem_response import HttpProblemResponse
|
|
90
|
+
from shaped.autogen.models.hugging_face_encoder import HuggingFaceEncoder
|
|
91
|
+
from shaped.autogen.models.iceberg_table_config import IcebergTableConfig
|
|
92
|
+
from shaped.autogen.models.index_config import IndexConfig
|
|
93
|
+
from shaped.autogen.models.inner_size import InnerSize
|
|
94
|
+
from shaped.autogen.models.inner_size1 import InnerSize1
|
|
95
|
+
from shaped.autogen.models.interaction_config import InteractionConfig
|
|
96
|
+
from shaped.autogen.models.interaction_pooling_encoder import InteractionPoolingEncoder
|
|
97
|
+
from shaped.autogen.models.interaction_round_robin_encoder import InteractionRoundRobinEncoder
|
|
98
|
+
from shaped.autogen.models.item_attribute_pooling_encoder import ItemAttributePoolingEncoder
|
|
99
|
+
from shaped.autogen.models.journey import Journey
|
|
100
|
+
from shaped.autogen.models.kafka_table_config import KafkaTableConfig
|
|
101
|
+
from shaped.autogen.models.kinesis_table_config import KinesisTableConfig
|
|
102
|
+
from shaped.autogen.models.kinesis_table_config_column_schema_value import KinesisTableConfigColumnSchemaValue
|
|
103
|
+
from shaped.autogen.models.label import Label
|
|
104
|
+
from shaped.autogen.models.label_type import LabelType
|
|
105
|
+
from shaped.autogen.models.laplace_smoothing import LaplaceSmoothing
|
|
106
|
+
from shaped.autogen.models.latency_scaling_policy import LatencyScalingPolicy
|
|
107
|
+
from shaped.autogen.models.learning_rate import LearningRate
|
|
108
|
+
from shaped.autogen.models.learning_rate1 import LearningRate1
|
|
109
|
+
from shaped.autogen.models.learning_rate2 import LearningRate2
|
|
110
|
+
from shaped.autogen.models.learning_rate3 import LearningRate3
|
|
111
|
+
from shaped.autogen.models.lexical_search_mode import LexicalSearchMode
|
|
112
|
+
from shaped.autogen.models.list_engines_response import ListEnginesResponse
|
|
113
|
+
from shaped.autogen.models.list_tables_response import ListTablesResponse
|
|
114
|
+
from shaped.autogen.models.list_views_response import ListViewsResponse
|
|
115
|
+
from shaped.autogen.models.loss_types import LossTypes
|
|
116
|
+
from shaped.autogen.models.lr import Lr
|
|
117
|
+
from shaped.autogen.models.lr1 import Lr1
|
|
118
|
+
from shaped.autogen.models.lr2 import Lr2
|
|
119
|
+
from shaped.autogen.models.mssql_table_config import MSSQLTableConfig
|
|
120
|
+
from shaped.autogen.models.max_depth import MaxDepth
|
|
121
|
+
from shaped.autogen.models.max_leaves import MaxLeaves
|
|
122
|
+
from shaped.autogen.models.max_seq_length import MaxSeqLength
|
|
123
|
+
from shaped.autogen.models.max_seq_length1 import MaxSeqLength1
|
|
124
|
+
from shaped.autogen.models.max_seq_length2 import MaxSeqLength2
|
|
125
|
+
from shaped.autogen.models.mode import Mode
|
|
126
|
+
from shaped.autogen.models.mode1 import Mode1
|
|
127
|
+
from shaped.autogen.models.mode2 import Mode2
|
|
128
|
+
from shaped.autogen.models.mongo_db_table_config import MongoDBTableConfig
|
|
129
|
+
from shaped.autogen.models.my_sql_table_config import MySQLTableConfig
|
|
130
|
+
from shaped.autogen.models.n_epochs import NEpochs
|
|
131
|
+
from shaped.autogen.models.n_epochs1 import NEpochs1
|
|
132
|
+
from shaped.autogen.models.n_epochs2 import NEpochs2
|
|
133
|
+
from shaped.autogen.models.n_estimators import NEstimators
|
|
134
|
+
from shaped.autogen.models.n_heads import NHeads
|
|
135
|
+
from shaped.autogen.models.n_layers import NLayers
|
|
136
|
+
from shaped.autogen.models.neg_per_positive import NegPerPositive
|
|
137
|
+
from shaped.autogen.models.negative_samples_count import NegativeSamplesCount
|
|
138
|
+
from shaped.autogen.models.ngram_tokenizer import NgramTokenizer
|
|
139
|
+
from shaped.autogen.models.no_op_config import NoOpConfig
|
|
140
|
+
from shaped.autogen.models.num_blocks import NumBlocks
|
|
141
|
+
from shaped.autogen.models.num_heads import NumHeads
|
|
142
|
+
from shaped.autogen.models.num_leaves import NumLeaves
|
|
143
|
+
from shaped.autogen.models.objective import Objective
|
|
144
|
+
from shaped.autogen.models.objective1 import Objective1
|
|
145
|
+
from shaped.autogen.models.online_store_config import OnlineStoreConfig
|
|
146
|
+
from shaped.autogen.models.pagination_config import PaginationConfig
|
|
147
|
+
from shaped.autogen.models.parameter_definition import ParameterDefinition
|
|
148
|
+
from shaped.autogen.models.parameters_value import ParametersValue
|
|
149
|
+
from shaped.autogen.models.passthrough_score import PassthroughScore
|
|
150
|
+
from shaped.autogen.models.personal_filter import PersonalFilter
|
|
151
|
+
from shaped.autogen.models.pipeline_stage_explanation import PipelineStageExplanation
|
|
152
|
+
from shaped.autogen.models.policy import Policy
|
|
153
|
+
from shaped.autogen.models.pool_fn import PoolFn
|
|
154
|
+
from shaped.autogen.models.pooling_function import PoolingFunction
|
|
155
|
+
from shaped.autogen.models.postgres_table_config import PostgresTableConfig
|
|
156
|
+
from shaped.autogen.models.posthog_table_config import PosthogTableConfig
|
|
157
|
+
from shaped.autogen.models.prebuilt_filter_step import PrebuiltFilterStep
|
|
158
|
+
from shaped.autogen.models.precomputed_item_embedding import PrecomputedItemEmbedding
|
|
159
|
+
from shaped.autogen.models.precomputed_user_embedding import PrecomputedUserEmbedding
|
|
160
|
+
from shaped.autogen.models.query import Query
|
|
161
|
+
from shaped.autogen.models.query1 import Query1
|
|
162
|
+
from shaped.autogen.models.query_any_of import QueryAnyOf
|
|
163
|
+
from shaped.autogen.models.query_definition import QueryDefinition
|
|
164
|
+
from shaped.autogen.models.query_encoder import QueryEncoder
|
|
165
|
+
from shaped.autogen.models.query_explanation import QueryExplanation
|
|
166
|
+
from shaped.autogen.models.query_request import QueryRequest
|
|
167
|
+
from shaped.autogen.models.query_result import QueryResult
|
|
168
|
+
from shaped.autogen.models.query_table_config import QueryTableConfig
|
|
169
|
+
from shaped.autogen.models.rank_item_attribute_values_query_config import RankItemAttributeValuesQueryConfig
|
|
170
|
+
from shaped.autogen.models.rank_query_config import RankQueryConfig
|
|
171
|
+
from shaped.autogen.models.rank_query_config_filter_inner import RankQueryConfigFilterInner
|
|
172
|
+
from shaped.autogen.models.rank_query_config_reorder_inner import RankQueryConfigReorderInner
|
|
173
|
+
from shaped.autogen.models.rank_query_config_retrieve_inner import RankQueryConfigRetrieveInner
|
|
174
|
+
from shaped.autogen.models.recreate_rollout import RecreateRollout
|
|
175
|
+
from shaped.autogen.models.redshift_table_config import RedshiftTableConfig
|
|
176
|
+
from shaped.autogen.models.reference_table_config import ReferenceTableConfig
|
|
177
|
+
from shaped.autogen.models.regularization import Regularization
|
|
178
|
+
from shaped.autogen.models.request import Request
|
|
179
|
+
from shaped.autogen.models.request1 import Request1
|
|
180
|
+
from shaped.autogen.models.requests_per_second_scaling_policy import RequestsPerSecondScalingPolicy
|
|
181
|
+
from shaped.autogen.models.response_get_view_details_views_view_name_get import ResponseGetViewDetailsViewsViewNameGet
|
|
182
|
+
from shaped.autogen.models.result import Result
|
|
183
|
+
from shaped.autogen.models.result_embeddings_value import ResultEmbeddingsValue
|
|
184
|
+
from shaped.autogen.models.retriever import Retriever
|
|
185
|
+
from shaped.autogen.models.retriever1 import Retriever1
|
|
186
|
+
from shaped.autogen.models.rollout_config import RolloutConfig
|
|
187
|
+
from shaped.autogen.models.rudderstack_table_config import RudderstackTableConfig
|
|
188
|
+
from shaped.autogen.models.sql_transform_type import SQLTransformType
|
|
189
|
+
from shaped.autogen.models.sql_view_config import SQLViewConfig
|
|
190
|
+
from shaped.autogen.models.sampling_strategy import SamplingStrategy
|
|
191
|
+
from shaped.autogen.models.saved_query_info_response import SavedQueryInfoResponse
|
|
192
|
+
from shaped.autogen.models.saved_query_list_response import SavedQueryListResponse
|
|
193
|
+
from shaped.autogen.models.saved_query_request import SavedQueryRequest
|
|
194
|
+
from shaped.autogen.models.schema_config import SchemaConfig
|
|
195
|
+
from shaped.autogen.models.score import Score
|
|
196
|
+
from shaped.autogen.models.score_ensemble import ScoreEnsemble
|
|
197
|
+
from shaped.autogen.models.score_ensemble_policy_config import ScoreEnsemblePolicyConfig
|
|
198
|
+
from shaped.autogen.models.score_ensemble_policy_config_policies_inner import ScoreEnsemblePolicyConfigPoliciesInner
|
|
199
|
+
from shaped.autogen.models.search_config import SearchConfig
|
|
200
|
+
from shaped.autogen.models.segment_table_config import SegmentTableConfig
|
|
201
|
+
from shaped.autogen.models.sequence_length import SequenceLength
|
|
202
|
+
from shaped.autogen.models.server_config import ServerConfig
|
|
203
|
+
from shaped.autogen.models.setup_engine_response import SetupEngineResponse
|
|
204
|
+
from shaped.autogen.models.shaped_internal_recsys_policies_als_model_policy_als_model_policy_config import ShapedInternalRecsysPoliciesAlsModelPolicyALSModelPolicyConfig
|
|
205
|
+
from shaped.autogen.models.shaped_internal_recsys_policies_beeformer_model_policy_beeformer_model_policy_beeformer_model_policy_config import ShapedInternalRecsysPoliciesBeeformerModelPolicyBeeformerModelPolicyBeeformerModelPolicyConfig
|
|
206
|
+
from shaped.autogen.models.shaped_internal_recsys_policies_bert_model_policy_bert_model_policy_bert_model_policy_config import ShapedInternalRecsysPoliciesBertModelPolicyBertModelPolicyBERTModelPolicyConfig
|
|
207
|
+
from shaped.autogen.models.shaped_internal_recsys_policies_chronological_model_policy_chronological_model_policy_config import ShapedInternalRecsysPoliciesChronologicalModelPolicyChronologicalModelPolicyConfig
|
|
208
|
+
from shaped.autogen.models.shaped_internal_recsys_policies_elsa_model_policy_elsa_model_policy_elsa_model_policy_config import ShapedInternalRecsysPoliciesElsaModelPolicyElsaModelPolicyELSAModelPolicyConfig
|
|
209
|
+
from shaped.autogen.models.shaped_internal_recsys_policies_gsasrec_model_policy_gsasrec_model_policy_gsas_rec_model_policy_config import ShapedInternalRecsysPoliciesGsasrecModelPolicyGsasrecModelPolicyGSASRecModelPolicyConfig
|
|
210
|
+
from shaped.autogen.models.shaped_internal_recsys_policies_item2vec_model_policy_item2_vec_model_policy_config import ShapedInternalRecsysPoliciesItem2vecModelPolicyItem2VecModelPolicyConfig
|
|
211
|
+
from shaped.autogen.models.shaped_internal_recsys_policies_item_content_similarity_model_policy_item_content_similarity_model_policy_config import ShapedInternalRecsysPoliciesItemContentSimilarityModelPolicyItemContentSimilarityModelPolicyConfig
|
|
212
|
+
from shaped.autogen.models.shaped_internal_recsys_policies_lightgbm_model_policy_lightgbm_model_policy_light_gbm_model_policy_config import ShapedInternalRecsysPoliciesLightgbmModelPolicyLightgbmModelPolicyLightGBMModelPolicyConfig
|
|
213
|
+
from shaped.autogen.models.shaped_internal_recsys_policies_ngram_model_policy_ngram_model_policy_config import ShapedInternalRecsysPoliciesNgramModelPolicyNgramModelPolicyConfig
|
|
214
|
+
from shaped.autogen.models.shaped_internal_recsys_policies_popular_model_policy_popular_model_policy_config import ShapedInternalRecsysPoliciesPopularModelPolicyPopularModelPolicyConfig
|
|
215
|
+
from shaped.autogen.models.shaped_internal_recsys_policies_random_model_policy_random_model_policy_config import ShapedInternalRecsysPoliciesRandomModelPolicyRandomModelPolicyConfig
|
|
216
|
+
from shaped.autogen.models.shaped_internal_recsys_policies_recently_popular_policy_recently_popular_policy_config import ShapedInternalRecsysPoliciesRecentlyPopularPolicyRecentlyPopularPolicyConfig
|
|
217
|
+
from shaped.autogen.models.shaped_internal_recsys_policies_rising_popular_policy_rising_popular_policy_config import ShapedInternalRecsysPoliciesRisingPopularPolicyRisingPopularPolicyConfig
|
|
218
|
+
from shaped.autogen.models.shaped_internal_recsys_policies_sasrec_model_policy_sasrec_model_policy_sas_rec_model_policy_config import ShapedInternalRecsysPoliciesSasrecModelPolicySasrecModelPolicySASRecModelPolicyConfig
|
|
219
|
+
from shaped.autogen.models.shaped_internal_recsys_policies_svd_model_policy_svd_model_policy_config import ShapedInternalRecsysPoliciesSvdModelPolicySVDModelPolicyConfig
|
|
220
|
+
from shaped.autogen.models.shaped_internal_recsys_policies_two_tower_model_policy_two_tower_model_policy_two_tower_model_policy_config import ShapedInternalRecsysPoliciesTwoTowerModelPolicyTwoTowerModelPolicyTwoTowerModelPolicyConfig
|
|
221
|
+
from shaped.autogen.models.shaped_internal_recsys_policies_user_item_content_similarity_model_policy_user_item_content_similarity_model_policy_config import ShapedInternalRecsysPoliciesUserItemContentSimilarityModelPolicyUserItemContentSimilarityModelPolicyConfig
|
|
222
|
+
from shaped.autogen.models.shaped_internal_recsys_policies_widedeep_model_policy_wide_deep_model_policy_config import ShapedInternalRecsysPoliciesWidedeepModelPolicyWideDeepModelPolicyConfig
|
|
223
|
+
from shaped.autogen.models.shaped_internal_recsys_policies_xgboost_model_policy_xg_boost_model_policy_config import ShapedInternalRecsysPoliciesXgboostModelPolicyXGBoostModelPolicyConfig
|
|
224
|
+
from shaped.autogen.models.shopify_table_config import ShopifyTableConfig
|
|
225
|
+
from shaped.autogen.models.similarity_retrieve_step import SimilarityRetrieveStep
|
|
226
|
+
from shaped.autogen.models.snowflake_table_config import SnowflakeTableConfig
|
|
227
|
+
from shaped.autogen.models.stemmer_tokenizer import StemmerTokenizer
|
|
228
|
+
from shaped.autogen.models.step_explanation import StepExplanation
|
|
229
|
+
from shaped.autogen.models.strategy import Strategy
|
|
230
|
+
from shaped.autogen.models.table import Table
|
|
231
|
+
from shaped.autogen.models.table_deployment_type import TableDeploymentType
|
|
232
|
+
from shaped.autogen.models.table_insert_arguments import TableInsertArguments
|
|
233
|
+
from shaped.autogen.models.table_insert_response import TableInsertResponse
|
|
234
|
+
from shaped.autogen.models.text_encoding import TextEncoding
|
|
235
|
+
from shaped.autogen.models.text_search_retrieve_step import TextSearchRetrieveStep
|
|
236
|
+
from shaped.autogen.models.time_frequency import TimeFrequency
|
|
237
|
+
from shaped.autogen.models.time_window import TimeWindow
|
|
238
|
+
from shaped.autogen.models.time_window_in_days import TimeWindowInDays
|
|
239
|
+
from shaped.autogen.models.tokenizer import Tokenizer
|
|
240
|
+
from shaped.autogen.models.trained_model_encoder import TrainedModelEncoder
|
|
241
|
+
from shaped.autogen.models.training_compute_config import TrainingComputeConfig
|
|
242
|
+
from shaped.autogen.models.training_config import TrainingConfig
|
|
243
|
+
from shaped.autogen.models.training_config_models_inner import TrainingConfigModelsInner
|
|
244
|
+
from shaped.autogen.models.training_strategy import TrainingStrategy
|
|
245
|
+
from shaped.autogen.models.trending_mode import TrendingMode
|
|
246
|
+
from shaped.autogen.models.truncate_filter_step import TruncateFilterStep
|
|
247
|
+
from shaped.autogen.models.tunable_bool import TunableBool
|
|
248
|
+
from shaped.autogen.models.tunable_float import TunableFloat
|
|
249
|
+
from shaped.autogen.models.tunable_int import TunableInt
|
|
250
|
+
from shaped.autogen.models.tunable_int_categorical import TunableIntCategorical
|
|
251
|
+
from shaped.autogen.models.tunable_string import TunableString
|
|
252
|
+
from shaped.autogen.models.tuning_config import TuningConfig
|
|
253
|
+
from shaped.autogen.models.type import Type
|
|
254
|
+
from shaped.autogen.models.update_table_response import UpdateTableResponse
|
|
255
|
+
from shaped.autogen.models.update_view_response import UpdateViewResponse
|
|
256
|
+
from shaped.autogen.models.user_attribute_pooling_encoder import UserAttributePoolingEncoder
|
|
257
|
+
from shaped.autogen.models.val_split import ValSplit
|
|
66
258
|
from shaped.autogen.models.validation_error import ValidationError
|
|
259
|
+
from shaped.autogen.models.validation_error_loc_inner import ValidationErrorLocInner
|
|
67
260
|
from shaped.autogen.models.value_type import ValueType
|
|
68
|
-
from shaped.autogen.models.
|
|
261
|
+
from shaped.autogen.models.vector_search_mode import VectorSearchMode
|
|
262
|
+
from shaped.autogen.models.view import View
|
|
263
|
+
from shaped.autogen.models.view_details_ai import ViewDetailsAI
|
|
264
|
+
from shaped.autogen.models.view_details_ai_schema_value import ViewDetailsAISchemaValue
|
|
265
|
+
from shaped.autogen.models.view_details_sql import ViewDetailsSQL
|
|
266
|
+
from shaped.autogen.models.view_status import ViewStatus
|
|
267
|
+
from shaped.autogen.models.weight_decay import WeightDecay
|
|
268
|
+
from shaped.autogen.models.whitespace_tokenizer import WhitespaceTokenizer
|
|
269
|
+
from shaped.autogen.models.window_size import WindowSize
|
|
270
|
+
|