shaped 2.0.1__py3-none-any.whl → 2.0.4__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 +59 -4
- shaped/autogen/__init__.py +527 -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} +159 -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 +18 -11
- shaped/autogen/configuration.py +22 -9
- shaped/autogen/exceptions.py +25 -5
- shaped/autogen/models/__init__.py +247 -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 +148 -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 +113 -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 +117 -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 +146 -0
- shaped/autogen/models/entity_config.py +109 -0
- shaped/autogen/models/entity_journey.py +161 -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 +164 -0
- shaped/autogen/models/filter_index_type.py +36 -0
- shaped/autogen/models/filter_retrieve_step.py +113 -0
- shaped/autogen/models/filter_step_explanation.py +165 -0
- shaped/autogen/models/filter_table.py +140 -0
- shaped/autogen/models/filter_type.py +134 -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 +115 -0
- shaped/autogen/models/iceberg_table_config.py +154 -0
- shaped/autogen/models/index_config.py +101 -0
- shaped/autogen/models/inner_entity_id.py +144 -0
- shaped/autogen/models/inner_size.py +136 -0
- shaped/autogen/models/inner_size1.py +136 -0
- shaped/autogen/models/inner_uid.py +144 -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 +111 -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 +36 -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/location_inner.py +138 -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 +136 -0
- shaped/autogen/models/mode2.py +150 -0
- shaped/autogen/models/models_inner.py +308 -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 +152 -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 +172 -0
- shaped/autogen/models/query_config.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 +201 -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 +186 -0
- shaped/autogen/models/rank_query_config_retrieve_inner.py +265 -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/reorder_inner.py +149 -0
- shaped/autogen/models/reorder_step_explanation.py +207 -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/resource_config.py +100 -0
- shaped/autogen/models/response_get_view_details_views_view_name_get.py +134 -0
- shaped/autogen/models/result.py +132 -0
- shaped/autogen/models/result_embeddings_value.py +127 -0
- shaped/autogen/models/retrieval_scores_value.py +127 -0
- shaped/autogen/models/retrieve_inner.py +196 -0
- shaped/autogen/models/retrieve_step_explanation.py +172 -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 +103 -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 +127 -0
- shaped/autogen/models/score_ensemble_policy_config.py +165 -0
- shaped/autogen/models/score_ensemble_policy_config_policies_inner.py +755 -0
- shaped/autogen/models/score_step_explanation.py +224 -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 +100 -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 +154 -0
- shaped/autogen/models/shaped_internal_recsys_policies_beeformer_model_policy_beeformer_model_policy_beeformer_model_policy_config.py +160 -0
- shaped/autogen/models/shaped_internal_recsys_policies_bert_model_policy_bert_model_policy_bert_model_policy_config.py +215 -0
- shaped/autogen/models/shaped_internal_recsys_policies_chronological_model_policy_chronological_model_policy_config.py +156 -0
- shaped/autogen/models/shaped_internal_recsys_policies_elsa_model_policy_elsa_model_policy_elsa_model_policy_config.py +141 -0
- shaped/autogen/models/shaped_internal_recsys_policies_gsasrec_model_policy_gsasrec_model_policy_gsas_rec_model_policy_config.py +211 -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 +195 -0
- shaped/autogen/models/shaped_internal_recsys_policies_lightgbm_model_policy_lightgbm_model_policy_light_gbm_model_policy_config.py +245 -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 +161 -0
- shaped/autogen/models/shaped_internal_recsys_policies_random_model_policy_random_model_policy_config.py +108 -0
- shaped/autogen/models/shaped_internal_recsys_policies_recently_popular_policy_recently_popular_policy_config.py +143 -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 +230 -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 +165 -0
- shaped/autogen/models/shaped_internal_recsys_policies_user_item_content_similarity_model_policy_user_item_content_similarity_model_policy_config.py +153 -0
- shaped/autogen/models/shaped_internal_recsys_policies_widedeep_model_policy_wide_deep_model_policy_config.py +137 -0
- shaped/autogen/models/shaped_internal_recsys_policies_xgboost_model_policy_xg_boost_model_policy_config.py +155 -0
- shaped/autogen/models/shopify_table_config.py +156 -0
- shaped/autogen/models/similarity_retrieve_step.py +123 -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/steps_inner.py +179 -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 +148 -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 +154 -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 +540 -0
- shaped/autogen/models/training_strategy.py +37 -0
- shaped/autogen/models/transform_status.py +41 -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 +150 -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/user_inner.py +134 -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 +150 -0
- shaped/autogen/models/value_type.py +7 -5
- shaped/autogen/models/vector_search_mode.py +101 -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 +10 -4
- shaped/cli/shaped_cli.py +163 -35
- shaped/client.py +591 -171
- shaped/config_builders.py +705 -0
- shaped/query_builder.py +781 -0
- {shaped-2.0.1.dist-info → shaped-2.0.4.dist-info}/METADATA +141 -6
- shaped-2.0.4.dist-info/RECORD +296 -0
- {shaped-2.0.1.dist-info → shaped-2.0.4.dist-info}/WHEEL +1 -1
- shaped-2.0.4.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.4.dist-info}/top_level.txt +0 -0
- {shaped-2.0.1.dist-info → shaped-2.0.4.dist-info}/zip-safe +0 -0
|
@@ -0,0 +1,540 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
Shaped API
|
|
5
|
+
|
|
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
|
+
|
|
8
|
+
The version of the OpenAPI document: 2.0.0
|
|
9
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
|
+
|
|
11
|
+
Do not edit the class manually.
|
|
12
|
+
""" # noqa: E501
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
from __future__ import annotations
|
|
16
|
+
|
|
17
|
+
import json
|
|
18
|
+
import pprint
|
|
19
|
+
from typing import Any, Dict, Optional, Set, Union
|
|
20
|
+
|
|
21
|
+
from pydantic import BaseModel, ConfigDict, ValidationError, field_validator
|
|
22
|
+
from shaped.autogen.models.shaped_internal_recsys_policies_als_model_policy_als_model_policy_config import (
|
|
23
|
+
ShapedInternalRecsysPoliciesAlsModelPolicyALSModelPolicyConfig,
|
|
24
|
+
)
|
|
25
|
+
from shaped.autogen.models.shaped_internal_recsys_policies_beeformer_model_policy_beeformer_model_policy_beeformer_model_policy_config import (
|
|
26
|
+
ShapedInternalRecsysPoliciesBeeformerModelPolicyBeeformerModelPolicyBeeformerModelPolicyConfig,
|
|
27
|
+
)
|
|
28
|
+
from shaped.autogen.models.shaped_internal_recsys_policies_bert_model_policy_bert_model_policy_bert_model_policy_config import (
|
|
29
|
+
ShapedInternalRecsysPoliciesBertModelPolicyBertModelPolicyBERTModelPolicyConfig,
|
|
30
|
+
)
|
|
31
|
+
from shaped.autogen.models.shaped_internal_recsys_policies_elsa_model_policy_elsa_model_policy_elsa_model_policy_config import (
|
|
32
|
+
ShapedInternalRecsysPoliciesElsaModelPolicyElsaModelPolicyELSAModelPolicyConfig,
|
|
33
|
+
)
|
|
34
|
+
from shaped.autogen.models.shaped_internal_recsys_policies_gsasrec_model_policy_gsasrec_model_policy_gsas_rec_model_policy_config import (
|
|
35
|
+
ShapedInternalRecsysPoliciesGsasrecModelPolicyGsasrecModelPolicyGSASRecModelPolicyConfig,
|
|
36
|
+
)
|
|
37
|
+
from shaped.autogen.models.shaped_internal_recsys_policies_item2vec_model_policy_item2_vec_model_policy_config import (
|
|
38
|
+
ShapedInternalRecsysPoliciesItem2vecModelPolicyItem2VecModelPolicyConfig,
|
|
39
|
+
)
|
|
40
|
+
from shaped.autogen.models.shaped_internal_recsys_policies_lightgbm_model_policy_lightgbm_model_policy_light_gbm_model_policy_config import (
|
|
41
|
+
ShapedInternalRecsysPoliciesLightgbmModelPolicyLightgbmModelPolicyLightGBMModelPolicyConfig,
|
|
42
|
+
)
|
|
43
|
+
from shaped.autogen.models.shaped_internal_recsys_policies_ngram_model_policy_ngram_model_policy_config import (
|
|
44
|
+
ShapedInternalRecsysPoliciesNgramModelPolicyNgramModelPolicyConfig,
|
|
45
|
+
)
|
|
46
|
+
from shaped.autogen.models.shaped_internal_recsys_policies_rising_popular_policy_rising_popular_policy_config import (
|
|
47
|
+
ShapedInternalRecsysPoliciesRisingPopularPolicyRisingPopularPolicyConfig,
|
|
48
|
+
)
|
|
49
|
+
from shaped.autogen.models.shaped_internal_recsys_policies_sasrec_model_policy_sasrec_model_policy_sas_rec_model_policy_config import (
|
|
50
|
+
ShapedInternalRecsysPoliciesSasrecModelPolicySasrecModelPolicySASRecModelPolicyConfig,
|
|
51
|
+
)
|
|
52
|
+
from shaped.autogen.models.shaped_internal_recsys_policies_svd_model_policy_svd_model_policy_config import (
|
|
53
|
+
ShapedInternalRecsysPoliciesSvdModelPolicySVDModelPolicyConfig,
|
|
54
|
+
)
|
|
55
|
+
from shaped.autogen.models.shaped_internal_recsys_policies_two_tower_model_policy_two_tower_model_policy_two_tower_model_policy_config import (
|
|
56
|
+
ShapedInternalRecsysPoliciesTwoTowerModelPolicyTwoTowerModelPolicyTwoTowerModelPolicyConfig,
|
|
57
|
+
)
|
|
58
|
+
from shaped.autogen.models.shaped_internal_recsys_policies_widedeep_model_policy_wide_deep_model_policy_config import (
|
|
59
|
+
ShapedInternalRecsysPoliciesWidedeepModelPolicyWideDeepModelPolicyConfig,
|
|
60
|
+
)
|
|
61
|
+
from shaped.autogen.models.shaped_internal_recsys_policies_xgboost_model_policy_xg_boost_model_policy_config import (
|
|
62
|
+
ShapedInternalRecsysPoliciesXgboostModelPolicyXGBoostModelPolicyConfig,
|
|
63
|
+
)
|
|
64
|
+
from typing_extensions import Self
|
|
65
|
+
|
|
66
|
+
TRAININGCONFIGMODELSINNER_ONE_OF_SCHEMAS = [
|
|
67
|
+
"ShapedInternalRecsysPoliciesAlsModelPolicyALSModelPolicyConfig",
|
|
68
|
+
"ShapedInternalRecsysPoliciesBeeformerModelPolicyBeeformerModelPolicyBeeformerModelPolicyConfig",
|
|
69
|
+
"ShapedInternalRecsysPoliciesBertModelPolicyBertModelPolicyBERTModelPolicyConfig",
|
|
70
|
+
"ShapedInternalRecsysPoliciesElsaModelPolicyElsaModelPolicyELSAModelPolicyConfig",
|
|
71
|
+
"ShapedInternalRecsysPoliciesGsasrecModelPolicyGsasrecModelPolicyGSASRecModelPolicyConfig",
|
|
72
|
+
"ShapedInternalRecsysPoliciesItem2vecModelPolicyItem2VecModelPolicyConfig",
|
|
73
|
+
"ShapedInternalRecsysPoliciesLightgbmModelPolicyLightgbmModelPolicyLightGBMModelPolicyConfig",
|
|
74
|
+
"ShapedInternalRecsysPoliciesNgramModelPolicyNgramModelPolicyConfig",
|
|
75
|
+
"ShapedInternalRecsysPoliciesRisingPopularPolicyRisingPopularPolicyConfig",
|
|
76
|
+
"ShapedInternalRecsysPoliciesSasrecModelPolicySasrecModelPolicySASRecModelPolicyConfig",
|
|
77
|
+
"ShapedInternalRecsysPoliciesSvdModelPolicySVDModelPolicyConfig",
|
|
78
|
+
"ShapedInternalRecsysPoliciesTwoTowerModelPolicyTwoTowerModelPolicyTwoTowerModelPolicyConfig",
|
|
79
|
+
"ShapedInternalRecsysPoliciesWidedeepModelPolicyWideDeepModelPolicyConfig",
|
|
80
|
+
"ShapedInternalRecsysPoliciesXgboostModelPolicyXGBoostModelPolicyConfig",
|
|
81
|
+
]
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
class TrainingConfigModelsInner(BaseModel):
|
|
85
|
+
"""
|
|
86
|
+
TrainingConfigModelsInner
|
|
87
|
+
"""
|
|
88
|
+
|
|
89
|
+
# data type: ShapedInternalRecsysPoliciesElsaModelPolicyElsaModelPolicyELSAModelPolicyConfig
|
|
90
|
+
oneof_schema_1_validator: Optional[
|
|
91
|
+
ShapedInternalRecsysPoliciesElsaModelPolicyElsaModelPolicyELSAModelPolicyConfig
|
|
92
|
+
] = None
|
|
93
|
+
# data type: ShapedInternalRecsysPoliciesLightgbmModelPolicyLightgbmModelPolicyLightGBMModelPolicyConfig
|
|
94
|
+
oneof_schema_2_validator: Optional[
|
|
95
|
+
ShapedInternalRecsysPoliciesLightgbmModelPolicyLightgbmModelPolicyLightGBMModelPolicyConfig
|
|
96
|
+
] = None
|
|
97
|
+
# data type: ShapedInternalRecsysPoliciesAlsModelPolicyALSModelPolicyConfig
|
|
98
|
+
oneof_schema_3_validator: Optional[
|
|
99
|
+
ShapedInternalRecsysPoliciesAlsModelPolicyALSModelPolicyConfig
|
|
100
|
+
] = None
|
|
101
|
+
# data type: ShapedInternalRecsysPoliciesSvdModelPolicySVDModelPolicyConfig
|
|
102
|
+
oneof_schema_4_validator: Optional[
|
|
103
|
+
ShapedInternalRecsysPoliciesSvdModelPolicySVDModelPolicyConfig
|
|
104
|
+
] = None
|
|
105
|
+
# data type: ShapedInternalRecsysPoliciesSasrecModelPolicySasrecModelPolicySASRecModelPolicyConfig
|
|
106
|
+
oneof_schema_5_validator: Optional[
|
|
107
|
+
ShapedInternalRecsysPoliciesSasrecModelPolicySasrecModelPolicySASRecModelPolicyConfig
|
|
108
|
+
] = None
|
|
109
|
+
# data type: ShapedInternalRecsysPoliciesGsasrecModelPolicyGsasrecModelPolicyGSASRecModelPolicyConfig
|
|
110
|
+
oneof_schema_6_validator: Optional[
|
|
111
|
+
ShapedInternalRecsysPoliciesGsasrecModelPolicyGsasrecModelPolicyGSASRecModelPolicyConfig
|
|
112
|
+
] = None
|
|
113
|
+
# data type: ShapedInternalRecsysPoliciesBertModelPolicyBertModelPolicyBERTModelPolicyConfig
|
|
114
|
+
oneof_schema_7_validator: Optional[
|
|
115
|
+
ShapedInternalRecsysPoliciesBertModelPolicyBertModelPolicyBERTModelPolicyConfig
|
|
116
|
+
] = None
|
|
117
|
+
# data type: ShapedInternalRecsysPoliciesTwoTowerModelPolicyTwoTowerModelPolicyTwoTowerModelPolicyConfig
|
|
118
|
+
oneof_schema_8_validator: Optional[
|
|
119
|
+
ShapedInternalRecsysPoliciesTwoTowerModelPolicyTwoTowerModelPolicyTwoTowerModelPolicyConfig
|
|
120
|
+
] = None
|
|
121
|
+
# data type: ShapedInternalRecsysPoliciesRisingPopularPolicyRisingPopularPolicyConfig
|
|
122
|
+
oneof_schema_9_validator: Optional[
|
|
123
|
+
ShapedInternalRecsysPoliciesRisingPopularPolicyRisingPopularPolicyConfig
|
|
124
|
+
] = None
|
|
125
|
+
# data type: ShapedInternalRecsysPoliciesNgramModelPolicyNgramModelPolicyConfig
|
|
126
|
+
oneof_schema_10_validator: Optional[
|
|
127
|
+
ShapedInternalRecsysPoliciesNgramModelPolicyNgramModelPolicyConfig
|
|
128
|
+
] = None
|
|
129
|
+
# data type: ShapedInternalRecsysPoliciesWidedeepModelPolicyWideDeepModelPolicyConfig
|
|
130
|
+
oneof_schema_11_validator: Optional[
|
|
131
|
+
ShapedInternalRecsysPoliciesWidedeepModelPolicyWideDeepModelPolicyConfig
|
|
132
|
+
] = None
|
|
133
|
+
# data type: ShapedInternalRecsysPoliciesItem2vecModelPolicyItem2VecModelPolicyConfig
|
|
134
|
+
oneof_schema_12_validator: Optional[
|
|
135
|
+
ShapedInternalRecsysPoliciesItem2vecModelPolicyItem2VecModelPolicyConfig
|
|
136
|
+
] = None
|
|
137
|
+
# data type: ShapedInternalRecsysPoliciesXgboostModelPolicyXGBoostModelPolicyConfig
|
|
138
|
+
oneof_schema_13_validator: Optional[
|
|
139
|
+
ShapedInternalRecsysPoliciesXgboostModelPolicyXGBoostModelPolicyConfig
|
|
140
|
+
] = None
|
|
141
|
+
# data type: ShapedInternalRecsysPoliciesBeeformerModelPolicyBeeformerModelPolicyBeeformerModelPolicyConfig
|
|
142
|
+
oneof_schema_14_validator: Optional[
|
|
143
|
+
ShapedInternalRecsysPoliciesBeeformerModelPolicyBeeformerModelPolicyBeeformerModelPolicyConfig
|
|
144
|
+
] = None
|
|
145
|
+
actual_instance: Optional[
|
|
146
|
+
Union[
|
|
147
|
+
ShapedInternalRecsysPoliciesAlsModelPolicyALSModelPolicyConfig,
|
|
148
|
+
ShapedInternalRecsysPoliciesBeeformerModelPolicyBeeformerModelPolicyBeeformerModelPolicyConfig,
|
|
149
|
+
ShapedInternalRecsysPoliciesBertModelPolicyBertModelPolicyBERTModelPolicyConfig,
|
|
150
|
+
ShapedInternalRecsysPoliciesElsaModelPolicyElsaModelPolicyELSAModelPolicyConfig,
|
|
151
|
+
ShapedInternalRecsysPoliciesGsasrecModelPolicyGsasrecModelPolicyGSASRecModelPolicyConfig,
|
|
152
|
+
ShapedInternalRecsysPoliciesItem2vecModelPolicyItem2VecModelPolicyConfig,
|
|
153
|
+
ShapedInternalRecsysPoliciesLightgbmModelPolicyLightgbmModelPolicyLightGBMModelPolicyConfig,
|
|
154
|
+
ShapedInternalRecsysPoliciesNgramModelPolicyNgramModelPolicyConfig,
|
|
155
|
+
ShapedInternalRecsysPoliciesRisingPopularPolicyRisingPopularPolicyConfig,
|
|
156
|
+
ShapedInternalRecsysPoliciesSasrecModelPolicySasrecModelPolicySASRecModelPolicyConfig,
|
|
157
|
+
ShapedInternalRecsysPoliciesSvdModelPolicySVDModelPolicyConfig,
|
|
158
|
+
ShapedInternalRecsysPoliciesTwoTowerModelPolicyTwoTowerModelPolicyTwoTowerModelPolicyConfig,
|
|
159
|
+
ShapedInternalRecsysPoliciesWidedeepModelPolicyWideDeepModelPolicyConfig,
|
|
160
|
+
ShapedInternalRecsysPoliciesXgboostModelPolicyXGBoostModelPolicyConfig,
|
|
161
|
+
]
|
|
162
|
+
] = None
|
|
163
|
+
one_of_schemas: Set[str] = {
|
|
164
|
+
"ShapedInternalRecsysPoliciesAlsModelPolicyALSModelPolicyConfig",
|
|
165
|
+
"ShapedInternalRecsysPoliciesBeeformerModelPolicyBeeformerModelPolicyBeeformerModelPolicyConfig",
|
|
166
|
+
"ShapedInternalRecsysPoliciesBertModelPolicyBertModelPolicyBERTModelPolicyConfig",
|
|
167
|
+
"ShapedInternalRecsysPoliciesElsaModelPolicyElsaModelPolicyELSAModelPolicyConfig",
|
|
168
|
+
"ShapedInternalRecsysPoliciesGsasrecModelPolicyGsasrecModelPolicyGSASRecModelPolicyConfig",
|
|
169
|
+
"ShapedInternalRecsysPoliciesItem2vecModelPolicyItem2VecModelPolicyConfig",
|
|
170
|
+
"ShapedInternalRecsysPoliciesLightgbmModelPolicyLightgbmModelPolicyLightGBMModelPolicyConfig",
|
|
171
|
+
"ShapedInternalRecsysPoliciesNgramModelPolicyNgramModelPolicyConfig",
|
|
172
|
+
"ShapedInternalRecsysPoliciesRisingPopularPolicyRisingPopularPolicyConfig",
|
|
173
|
+
"ShapedInternalRecsysPoliciesSasrecModelPolicySasrecModelPolicySASRecModelPolicyConfig",
|
|
174
|
+
"ShapedInternalRecsysPoliciesSvdModelPolicySVDModelPolicyConfig",
|
|
175
|
+
"ShapedInternalRecsysPoliciesTwoTowerModelPolicyTwoTowerModelPolicyTwoTowerModelPolicyConfig",
|
|
176
|
+
"ShapedInternalRecsysPoliciesWidedeepModelPolicyWideDeepModelPolicyConfig",
|
|
177
|
+
"ShapedInternalRecsysPoliciesXgboostModelPolicyXGBoostModelPolicyConfig",
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
model_config = ConfigDict(
|
|
181
|
+
validate_assignment=True,
|
|
182
|
+
protected_namespaces=(),
|
|
183
|
+
)
|
|
184
|
+
|
|
185
|
+
discriminator_value_class_map: Dict[str, str] = {}
|
|
186
|
+
|
|
187
|
+
def __init__(self, *args, **kwargs) -> None:
|
|
188
|
+
if args:
|
|
189
|
+
if len(args) > 1:
|
|
190
|
+
raise ValueError(
|
|
191
|
+
"If a position argument is used, only 1 is allowed to set `actual_instance`"
|
|
192
|
+
)
|
|
193
|
+
if kwargs:
|
|
194
|
+
raise ValueError(
|
|
195
|
+
"If a position argument is used, keyword arguments cannot be used."
|
|
196
|
+
)
|
|
197
|
+
super().__init__(actual_instance=args[0])
|
|
198
|
+
else:
|
|
199
|
+
super().__init__(**kwargs)
|
|
200
|
+
|
|
201
|
+
@field_validator("actual_instance")
|
|
202
|
+
def actual_instance_must_validate_oneof(cls, v):
|
|
203
|
+
instance = TrainingConfigModelsInner.model_construct()
|
|
204
|
+
error_messages = []
|
|
205
|
+
match = 0
|
|
206
|
+
# validate data type: ShapedInternalRecsysPoliciesElsaModelPolicyElsaModelPolicyELSAModelPolicyConfig
|
|
207
|
+
if not isinstance(
|
|
208
|
+
v,
|
|
209
|
+
ShapedInternalRecsysPoliciesElsaModelPolicyElsaModelPolicyELSAModelPolicyConfig,
|
|
210
|
+
):
|
|
211
|
+
error_messages.append(
|
|
212
|
+
f"Error! Input type `{type(v)}` is not `ShapedInternalRecsysPoliciesElsaModelPolicyElsaModelPolicyELSAModelPolicyConfig`"
|
|
213
|
+
)
|
|
214
|
+
else:
|
|
215
|
+
match += 1
|
|
216
|
+
# validate data type: ShapedInternalRecsysPoliciesLightgbmModelPolicyLightgbmModelPolicyLightGBMModelPolicyConfig
|
|
217
|
+
if not isinstance(
|
|
218
|
+
v,
|
|
219
|
+
ShapedInternalRecsysPoliciesLightgbmModelPolicyLightgbmModelPolicyLightGBMModelPolicyConfig,
|
|
220
|
+
):
|
|
221
|
+
error_messages.append(
|
|
222
|
+
f"Error! Input type `{type(v)}` is not `ShapedInternalRecsysPoliciesLightgbmModelPolicyLightgbmModelPolicyLightGBMModelPolicyConfig`"
|
|
223
|
+
)
|
|
224
|
+
else:
|
|
225
|
+
match += 1
|
|
226
|
+
# validate data type: ShapedInternalRecsysPoliciesAlsModelPolicyALSModelPolicyConfig
|
|
227
|
+
if not isinstance(
|
|
228
|
+
v, ShapedInternalRecsysPoliciesAlsModelPolicyALSModelPolicyConfig
|
|
229
|
+
):
|
|
230
|
+
error_messages.append(
|
|
231
|
+
f"Error! Input type `{type(v)}` is not `ShapedInternalRecsysPoliciesAlsModelPolicyALSModelPolicyConfig`"
|
|
232
|
+
)
|
|
233
|
+
else:
|
|
234
|
+
match += 1
|
|
235
|
+
# validate data type: ShapedInternalRecsysPoliciesSvdModelPolicySVDModelPolicyConfig
|
|
236
|
+
if not isinstance(
|
|
237
|
+
v, ShapedInternalRecsysPoliciesSvdModelPolicySVDModelPolicyConfig
|
|
238
|
+
):
|
|
239
|
+
error_messages.append(
|
|
240
|
+
f"Error! Input type `{type(v)}` is not `ShapedInternalRecsysPoliciesSvdModelPolicySVDModelPolicyConfig`"
|
|
241
|
+
)
|
|
242
|
+
else:
|
|
243
|
+
match += 1
|
|
244
|
+
# validate data type: ShapedInternalRecsysPoliciesSasrecModelPolicySasrecModelPolicySASRecModelPolicyConfig
|
|
245
|
+
if not isinstance(
|
|
246
|
+
v,
|
|
247
|
+
ShapedInternalRecsysPoliciesSasrecModelPolicySasrecModelPolicySASRecModelPolicyConfig,
|
|
248
|
+
):
|
|
249
|
+
error_messages.append(
|
|
250
|
+
f"Error! Input type `{type(v)}` is not `ShapedInternalRecsysPoliciesSasrecModelPolicySasrecModelPolicySASRecModelPolicyConfig`"
|
|
251
|
+
)
|
|
252
|
+
else:
|
|
253
|
+
match += 1
|
|
254
|
+
# validate data type: ShapedInternalRecsysPoliciesGsasrecModelPolicyGsasrecModelPolicyGSASRecModelPolicyConfig
|
|
255
|
+
if not isinstance(
|
|
256
|
+
v,
|
|
257
|
+
ShapedInternalRecsysPoliciesGsasrecModelPolicyGsasrecModelPolicyGSASRecModelPolicyConfig,
|
|
258
|
+
):
|
|
259
|
+
error_messages.append(
|
|
260
|
+
f"Error! Input type `{type(v)}` is not `ShapedInternalRecsysPoliciesGsasrecModelPolicyGsasrecModelPolicyGSASRecModelPolicyConfig`"
|
|
261
|
+
)
|
|
262
|
+
else:
|
|
263
|
+
match += 1
|
|
264
|
+
# validate data type: ShapedInternalRecsysPoliciesBertModelPolicyBertModelPolicyBERTModelPolicyConfig
|
|
265
|
+
if not isinstance(
|
|
266
|
+
v,
|
|
267
|
+
ShapedInternalRecsysPoliciesBertModelPolicyBertModelPolicyBERTModelPolicyConfig,
|
|
268
|
+
):
|
|
269
|
+
error_messages.append(
|
|
270
|
+
f"Error! Input type `{type(v)}` is not `ShapedInternalRecsysPoliciesBertModelPolicyBertModelPolicyBERTModelPolicyConfig`"
|
|
271
|
+
)
|
|
272
|
+
else:
|
|
273
|
+
match += 1
|
|
274
|
+
# validate data type: ShapedInternalRecsysPoliciesTwoTowerModelPolicyTwoTowerModelPolicyTwoTowerModelPolicyConfig
|
|
275
|
+
if not isinstance(
|
|
276
|
+
v,
|
|
277
|
+
ShapedInternalRecsysPoliciesTwoTowerModelPolicyTwoTowerModelPolicyTwoTowerModelPolicyConfig,
|
|
278
|
+
):
|
|
279
|
+
error_messages.append(
|
|
280
|
+
f"Error! Input type `{type(v)}` is not `ShapedInternalRecsysPoliciesTwoTowerModelPolicyTwoTowerModelPolicyTwoTowerModelPolicyConfig`"
|
|
281
|
+
)
|
|
282
|
+
else:
|
|
283
|
+
match += 1
|
|
284
|
+
# validate data type: ShapedInternalRecsysPoliciesRisingPopularPolicyRisingPopularPolicyConfig
|
|
285
|
+
if not isinstance(
|
|
286
|
+
v, ShapedInternalRecsysPoliciesRisingPopularPolicyRisingPopularPolicyConfig
|
|
287
|
+
):
|
|
288
|
+
error_messages.append(
|
|
289
|
+
f"Error! Input type `{type(v)}` is not `ShapedInternalRecsysPoliciesRisingPopularPolicyRisingPopularPolicyConfig`"
|
|
290
|
+
)
|
|
291
|
+
else:
|
|
292
|
+
match += 1
|
|
293
|
+
# validate data type: ShapedInternalRecsysPoliciesNgramModelPolicyNgramModelPolicyConfig
|
|
294
|
+
if not isinstance(
|
|
295
|
+
v, ShapedInternalRecsysPoliciesNgramModelPolicyNgramModelPolicyConfig
|
|
296
|
+
):
|
|
297
|
+
error_messages.append(
|
|
298
|
+
f"Error! Input type `{type(v)}` is not `ShapedInternalRecsysPoliciesNgramModelPolicyNgramModelPolicyConfig`"
|
|
299
|
+
)
|
|
300
|
+
else:
|
|
301
|
+
match += 1
|
|
302
|
+
# validate data type: ShapedInternalRecsysPoliciesWidedeepModelPolicyWideDeepModelPolicyConfig
|
|
303
|
+
if not isinstance(
|
|
304
|
+
v, ShapedInternalRecsysPoliciesWidedeepModelPolicyWideDeepModelPolicyConfig
|
|
305
|
+
):
|
|
306
|
+
error_messages.append(
|
|
307
|
+
f"Error! Input type `{type(v)}` is not `ShapedInternalRecsysPoliciesWidedeepModelPolicyWideDeepModelPolicyConfig`"
|
|
308
|
+
)
|
|
309
|
+
else:
|
|
310
|
+
match += 1
|
|
311
|
+
# validate data type: ShapedInternalRecsysPoliciesItem2vecModelPolicyItem2VecModelPolicyConfig
|
|
312
|
+
if not isinstance(
|
|
313
|
+
v, ShapedInternalRecsysPoliciesItem2vecModelPolicyItem2VecModelPolicyConfig
|
|
314
|
+
):
|
|
315
|
+
error_messages.append(
|
|
316
|
+
f"Error! Input type `{type(v)}` is not `ShapedInternalRecsysPoliciesItem2vecModelPolicyItem2VecModelPolicyConfig`"
|
|
317
|
+
)
|
|
318
|
+
else:
|
|
319
|
+
match += 1
|
|
320
|
+
# validate data type: ShapedInternalRecsysPoliciesXgboostModelPolicyXGBoostModelPolicyConfig
|
|
321
|
+
if not isinstance(
|
|
322
|
+
v, ShapedInternalRecsysPoliciesXgboostModelPolicyXGBoostModelPolicyConfig
|
|
323
|
+
):
|
|
324
|
+
error_messages.append(
|
|
325
|
+
f"Error! Input type `{type(v)}` is not `ShapedInternalRecsysPoliciesXgboostModelPolicyXGBoostModelPolicyConfig`"
|
|
326
|
+
)
|
|
327
|
+
else:
|
|
328
|
+
match += 1
|
|
329
|
+
# validate data type: ShapedInternalRecsysPoliciesBeeformerModelPolicyBeeformerModelPolicyBeeformerModelPolicyConfig
|
|
330
|
+
if not isinstance(
|
|
331
|
+
v,
|
|
332
|
+
ShapedInternalRecsysPoliciesBeeformerModelPolicyBeeformerModelPolicyBeeformerModelPolicyConfig,
|
|
333
|
+
):
|
|
334
|
+
error_messages.append(
|
|
335
|
+
f"Error! Input type `{type(v)}` is not `ShapedInternalRecsysPoliciesBeeformerModelPolicyBeeformerModelPolicyBeeformerModelPolicyConfig`"
|
|
336
|
+
)
|
|
337
|
+
else:
|
|
338
|
+
match += 1
|
|
339
|
+
if match > 1:
|
|
340
|
+
# more than 1 match
|
|
341
|
+
raise ValueError(
|
|
342
|
+
"Multiple matches found when setting `actual_instance` in TrainingConfigModelsInner with oneOf schemas: ShapedInternalRecsysPoliciesAlsModelPolicyALSModelPolicyConfig, ShapedInternalRecsysPoliciesBeeformerModelPolicyBeeformerModelPolicyBeeformerModelPolicyConfig, ShapedInternalRecsysPoliciesBertModelPolicyBertModelPolicyBERTModelPolicyConfig, ShapedInternalRecsysPoliciesElsaModelPolicyElsaModelPolicyELSAModelPolicyConfig, ShapedInternalRecsysPoliciesGsasrecModelPolicyGsasrecModelPolicyGSASRecModelPolicyConfig, ShapedInternalRecsysPoliciesItem2vecModelPolicyItem2VecModelPolicyConfig, ShapedInternalRecsysPoliciesLightgbmModelPolicyLightgbmModelPolicyLightGBMModelPolicyConfig, ShapedInternalRecsysPoliciesNgramModelPolicyNgramModelPolicyConfig, ShapedInternalRecsysPoliciesRisingPopularPolicyRisingPopularPolicyConfig, ShapedInternalRecsysPoliciesSasrecModelPolicySasrecModelPolicySASRecModelPolicyConfig, ShapedInternalRecsysPoliciesSvdModelPolicySVDModelPolicyConfig, ShapedInternalRecsysPoliciesTwoTowerModelPolicyTwoTowerModelPolicyTwoTowerModelPolicyConfig, ShapedInternalRecsysPoliciesWidedeepModelPolicyWideDeepModelPolicyConfig, ShapedInternalRecsysPoliciesXgboostModelPolicyXGBoostModelPolicyConfig. Details: "
|
|
343
|
+
+ ", ".join(error_messages)
|
|
344
|
+
)
|
|
345
|
+
elif match == 0:
|
|
346
|
+
# no match
|
|
347
|
+
raise ValueError(
|
|
348
|
+
"No match found when setting `actual_instance` in TrainingConfigModelsInner with oneOf schemas: ShapedInternalRecsysPoliciesAlsModelPolicyALSModelPolicyConfig, ShapedInternalRecsysPoliciesBeeformerModelPolicyBeeformerModelPolicyBeeformerModelPolicyConfig, ShapedInternalRecsysPoliciesBertModelPolicyBertModelPolicyBERTModelPolicyConfig, ShapedInternalRecsysPoliciesElsaModelPolicyElsaModelPolicyELSAModelPolicyConfig, ShapedInternalRecsysPoliciesGsasrecModelPolicyGsasrecModelPolicyGSASRecModelPolicyConfig, ShapedInternalRecsysPoliciesItem2vecModelPolicyItem2VecModelPolicyConfig, ShapedInternalRecsysPoliciesLightgbmModelPolicyLightgbmModelPolicyLightGBMModelPolicyConfig, ShapedInternalRecsysPoliciesNgramModelPolicyNgramModelPolicyConfig, ShapedInternalRecsysPoliciesRisingPopularPolicyRisingPopularPolicyConfig, ShapedInternalRecsysPoliciesSasrecModelPolicySasrecModelPolicySASRecModelPolicyConfig, ShapedInternalRecsysPoliciesSvdModelPolicySVDModelPolicyConfig, ShapedInternalRecsysPoliciesTwoTowerModelPolicyTwoTowerModelPolicyTwoTowerModelPolicyConfig, ShapedInternalRecsysPoliciesWidedeepModelPolicyWideDeepModelPolicyConfig, ShapedInternalRecsysPoliciesXgboostModelPolicyXGBoostModelPolicyConfig. Details: "
|
|
349
|
+
+ ", ".join(error_messages)
|
|
350
|
+
)
|
|
351
|
+
else:
|
|
352
|
+
return v
|
|
353
|
+
|
|
354
|
+
@classmethod
|
|
355
|
+
def from_dict(cls, obj: Union[str, Dict[str, Any]]) -> Self:
|
|
356
|
+
return cls.from_json(json.dumps(obj))
|
|
357
|
+
|
|
358
|
+
@classmethod
|
|
359
|
+
def from_json(cls, json_str: str) -> Self:
|
|
360
|
+
"""Returns the object represented by the json string"""
|
|
361
|
+
instance = cls.model_construct()
|
|
362
|
+
error_messages = []
|
|
363
|
+
match = 0
|
|
364
|
+
|
|
365
|
+
# deserialize data into ShapedInternalRecsysPoliciesElsaModelPolicyElsaModelPolicyELSAModelPolicyConfig
|
|
366
|
+
try:
|
|
367
|
+
instance.actual_instance = ShapedInternalRecsysPoliciesElsaModelPolicyElsaModelPolicyELSAModelPolicyConfig.from_json(
|
|
368
|
+
json_str
|
|
369
|
+
)
|
|
370
|
+
match += 1
|
|
371
|
+
except (ValidationError, ValueError) as e:
|
|
372
|
+
error_messages.append(str(e))
|
|
373
|
+
# deserialize data into ShapedInternalRecsysPoliciesLightgbmModelPolicyLightgbmModelPolicyLightGBMModelPolicyConfig
|
|
374
|
+
try:
|
|
375
|
+
instance.actual_instance = ShapedInternalRecsysPoliciesLightgbmModelPolicyLightgbmModelPolicyLightGBMModelPolicyConfig.from_json(
|
|
376
|
+
json_str
|
|
377
|
+
)
|
|
378
|
+
match += 1
|
|
379
|
+
except (ValidationError, ValueError) as e:
|
|
380
|
+
error_messages.append(str(e))
|
|
381
|
+
# deserialize data into ShapedInternalRecsysPoliciesAlsModelPolicyALSModelPolicyConfig
|
|
382
|
+
try:
|
|
383
|
+
instance.actual_instance = ShapedInternalRecsysPoliciesAlsModelPolicyALSModelPolicyConfig.from_json(
|
|
384
|
+
json_str
|
|
385
|
+
)
|
|
386
|
+
match += 1
|
|
387
|
+
except (ValidationError, ValueError) as e:
|
|
388
|
+
error_messages.append(str(e))
|
|
389
|
+
# deserialize data into ShapedInternalRecsysPoliciesSvdModelPolicySVDModelPolicyConfig
|
|
390
|
+
try:
|
|
391
|
+
instance.actual_instance = ShapedInternalRecsysPoliciesSvdModelPolicySVDModelPolicyConfig.from_json(
|
|
392
|
+
json_str
|
|
393
|
+
)
|
|
394
|
+
match += 1
|
|
395
|
+
except (ValidationError, ValueError) as e:
|
|
396
|
+
error_messages.append(str(e))
|
|
397
|
+
# deserialize data into ShapedInternalRecsysPoliciesSasrecModelPolicySasrecModelPolicySASRecModelPolicyConfig
|
|
398
|
+
try:
|
|
399
|
+
instance.actual_instance = ShapedInternalRecsysPoliciesSasrecModelPolicySasrecModelPolicySASRecModelPolicyConfig.from_json(
|
|
400
|
+
json_str
|
|
401
|
+
)
|
|
402
|
+
match += 1
|
|
403
|
+
except (ValidationError, ValueError) as e:
|
|
404
|
+
error_messages.append(str(e))
|
|
405
|
+
# deserialize data into ShapedInternalRecsysPoliciesGsasrecModelPolicyGsasrecModelPolicyGSASRecModelPolicyConfig
|
|
406
|
+
try:
|
|
407
|
+
instance.actual_instance = ShapedInternalRecsysPoliciesGsasrecModelPolicyGsasrecModelPolicyGSASRecModelPolicyConfig.from_json(
|
|
408
|
+
json_str
|
|
409
|
+
)
|
|
410
|
+
match += 1
|
|
411
|
+
except (ValidationError, ValueError) as e:
|
|
412
|
+
error_messages.append(str(e))
|
|
413
|
+
# deserialize data into ShapedInternalRecsysPoliciesBertModelPolicyBertModelPolicyBERTModelPolicyConfig
|
|
414
|
+
try:
|
|
415
|
+
instance.actual_instance = ShapedInternalRecsysPoliciesBertModelPolicyBertModelPolicyBERTModelPolicyConfig.from_json(
|
|
416
|
+
json_str
|
|
417
|
+
)
|
|
418
|
+
match += 1
|
|
419
|
+
except (ValidationError, ValueError) as e:
|
|
420
|
+
error_messages.append(str(e))
|
|
421
|
+
# deserialize data into ShapedInternalRecsysPoliciesTwoTowerModelPolicyTwoTowerModelPolicyTwoTowerModelPolicyConfig
|
|
422
|
+
try:
|
|
423
|
+
instance.actual_instance = ShapedInternalRecsysPoliciesTwoTowerModelPolicyTwoTowerModelPolicyTwoTowerModelPolicyConfig.from_json(
|
|
424
|
+
json_str
|
|
425
|
+
)
|
|
426
|
+
match += 1
|
|
427
|
+
except (ValidationError, ValueError) as e:
|
|
428
|
+
error_messages.append(str(e))
|
|
429
|
+
# deserialize data into ShapedInternalRecsysPoliciesRisingPopularPolicyRisingPopularPolicyConfig
|
|
430
|
+
try:
|
|
431
|
+
instance.actual_instance = ShapedInternalRecsysPoliciesRisingPopularPolicyRisingPopularPolicyConfig.from_json(
|
|
432
|
+
json_str
|
|
433
|
+
)
|
|
434
|
+
match += 1
|
|
435
|
+
except (ValidationError, ValueError) as e:
|
|
436
|
+
error_messages.append(str(e))
|
|
437
|
+
# deserialize data into ShapedInternalRecsysPoliciesNgramModelPolicyNgramModelPolicyConfig
|
|
438
|
+
try:
|
|
439
|
+
instance.actual_instance = ShapedInternalRecsysPoliciesNgramModelPolicyNgramModelPolicyConfig.from_json(
|
|
440
|
+
json_str
|
|
441
|
+
)
|
|
442
|
+
match += 1
|
|
443
|
+
except (ValidationError, ValueError) as e:
|
|
444
|
+
error_messages.append(str(e))
|
|
445
|
+
# deserialize data into ShapedInternalRecsysPoliciesWidedeepModelPolicyWideDeepModelPolicyConfig
|
|
446
|
+
try:
|
|
447
|
+
instance.actual_instance = ShapedInternalRecsysPoliciesWidedeepModelPolicyWideDeepModelPolicyConfig.from_json(
|
|
448
|
+
json_str
|
|
449
|
+
)
|
|
450
|
+
match += 1
|
|
451
|
+
except (ValidationError, ValueError) as e:
|
|
452
|
+
error_messages.append(str(e))
|
|
453
|
+
# deserialize data into ShapedInternalRecsysPoliciesItem2vecModelPolicyItem2VecModelPolicyConfig
|
|
454
|
+
try:
|
|
455
|
+
instance.actual_instance = ShapedInternalRecsysPoliciesItem2vecModelPolicyItem2VecModelPolicyConfig.from_json(
|
|
456
|
+
json_str
|
|
457
|
+
)
|
|
458
|
+
match += 1
|
|
459
|
+
except (ValidationError, ValueError) as e:
|
|
460
|
+
error_messages.append(str(e))
|
|
461
|
+
# deserialize data into ShapedInternalRecsysPoliciesXgboostModelPolicyXGBoostModelPolicyConfig
|
|
462
|
+
try:
|
|
463
|
+
instance.actual_instance = ShapedInternalRecsysPoliciesXgboostModelPolicyXGBoostModelPolicyConfig.from_json(
|
|
464
|
+
json_str
|
|
465
|
+
)
|
|
466
|
+
match += 1
|
|
467
|
+
except (ValidationError, ValueError) as e:
|
|
468
|
+
error_messages.append(str(e))
|
|
469
|
+
# deserialize data into ShapedInternalRecsysPoliciesBeeformerModelPolicyBeeformerModelPolicyBeeformerModelPolicyConfig
|
|
470
|
+
try:
|
|
471
|
+
instance.actual_instance = ShapedInternalRecsysPoliciesBeeformerModelPolicyBeeformerModelPolicyBeeformerModelPolicyConfig.from_json(
|
|
472
|
+
json_str
|
|
473
|
+
)
|
|
474
|
+
match += 1
|
|
475
|
+
except (ValidationError, ValueError) as e:
|
|
476
|
+
error_messages.append(str(e))
|
|
477
|
+
|
|
478
|
+
if match > 1:
|
|
479
|
+
# more than 1 match
|
|
480
|
+
raise ValueError(
|
|
481
|
+
"Multiple matches found when deserializing the JSON string into TrainingConfigModelsInner with oneOf schemas: ShapedInternalRecsysPoliciesAlsModelPolicyALSModelPolicyConfig, ShapedInternalRecsysPoliciesBeeformerModelPolicyBeeformerModelPolicyBeeformerModelPolicyConfig, ShapedInternalRecsysPoliciesBertModelPolicyBertModelPolicyBERTModelPolicyConfig, ShapedInternalRecsysPoliciesElsaModelPolicyElsaModelPolicyELSAModelPolicyConfig, ShapedInternalRecsysPoliciesGsasrecModelPolicyGsasrecModelPolicyGSASRecModelPolicyConfig, ShapedInternalRecsysPoliciesItem2vecModelPolicyItem2VecModelPolicyConfig, ShapedInternalRecsysPoliciesLightgbmModelPolicyLightgbmModelPolicyLightGBMModelPolicyConfig, ShapedInternalRecsysPoliciesNgramModelPolicyNgramModelPolicyConfig, ShapedInternalRecsysPoliciesRisingPopularPolicyRisingPopularPolicyConfig, ShapedInternalRecsysPoliciesSasrecModelPolicySasrecModelPolicySASRecModelPolicyConfig, ShapedInternalRecsysPoliciesSvdModelPolicySVDModelPolicyConfig, ShapedInternalRecsysPoliciesTwoTowerModelPolicyTwoTowerModelPolicyTwoTowerModelPolicyConfig, ShapedInternalRecsysPoliciesWidedeepModelPolicyWideDeepModelPolicyConfig, ShapedInternalRecsysPoliciesXgboostModelPolicyXGBoostModelPolicyConfig. Details: "
|
|
482
|
+
+ ", ".join(error_messages)
|
|
483
|
+
)
|
|
484
|
+
elif match == 0:
|
|
485
|
+
# no match
|
|
486
|
+
raise ValueError(
|
|
487
|
+
"No match found when deserializing the JSON string into TrainingConfigModelsInner with oneOf schemas: ShapedInternalRecsysPoliciesAlsModelPolicyALSModelPolicyConfig, ShapedInternalRecsysPoliciesBeeformerModelPolicyBeeformerModelPolicyBeeformerModelPolicyConfig, ShapedInternalRecsysPoliciesBertModelPolicyBertModelPolicyBERTModelPolicyConfig, ShapedInternalRecsysPoliciesElsaModelPolicyElsaModelPolicyELSAModelPolicyConfig, ShapedInternalRecsysPoliciesGsasrecModelPolicyGsasrecModelPolicyGSASRecModelPolicyConfig, ShapedInternalRecsysPoliciesItem2vecModelPolicyItem2VecModelPolicyConfig, ShapedInternalRecsysPoliciesLightgbmModelPolicyLightgbmModelPolicyLightGBMModelPolicyConfig, ShapedInternalRecsysPoliciesNgramModelPolicyNgramModelPolicyConfig, ShapedInternalRecsysPoliciesRisingPopularPolicyRisingPopularPolicyConfig, ShapedInternalRecsysPoliciesSasrecModelPolicySasrecModelPolicySASRecModelPolicyConfig, ShapedInternalRecsysPoliciesSvdModelPolicySVDModelPolicyConfig, ShapedInternalRecsysPoliciesTwoTowerModelPolicyTwoTowerModelPolicyTwoTowerModelPolicyConfig, ShapedInternalRecsysPoliciesWidedeepModelPolicyWideDeepModelPolicyConfig, ShapedInternalRecsysPoliciesXgboostModelPolicyXGBoostModelPolicyConfig. Details: "
|
|
488
|
+
+ ", ".join(error_messages)
|
|
489
|
+
)
|
|
490
|
+
else:
|
|
491
|
+
return instance
|
|
492
|
+
|
|
493
|
+
def to_json(self) -> str:
|
|
494
|
+
"""Returns the JSON representation of the actual instance"""
|
|
495
|
+
if self.actual_instance is None:
|
|
496
|
+
return "null"
|
|
497
|
+
|
|
498
|
+
if hasattr(self.actual_instance, "to_json") and callable(
|
|
499
|
+
self.actual_instance.to_json
|
|
500
|
+
):
|
|
501
|
+
return self.actual_instance.to_json()
|
|
502
|
+
else:
|
|
503
|
+
return json.dumps(self.actual_instance)
|
|
504
|
+
|
|
505
|
+
def to_dict(
|
|
506
|
+
self,
|
|
507
|
+
) -> Optional[
|
|
508
|
+
Union[
|
|
509
|
+
Dict[str, Any],
|
|
510
|
+
ShapedInternalRecsysPoliciesAlsModelPolicyALSModelPolicyConfig,
|
|
511
|
+
ShapedInternalRecsysPoliciesBeeformerModelPolicyBeeformerModelPolicyBeeformerModelPolicyConfig,
|
|
512
|
+
ShapedInternalRecsysPoliciesBertModelPolicyBertModelPolicyBERTModelPolicyConfig,
|
|
513
|
+
ShapedInternalRecsysPoliciesElsaModelPolicyElsaModelPolicyELSAModelPolicyConfig,
|
|
514
|
+
ShapedInternalRecsysPoliciesGsasrecModelPolicyGsasrecModelPolicyGSASRecModelPolicyConfig,
|
|
515
|
+
ShapedInternalRecsysPoliciesItem2vecModelPolicyItem2VecModelPolicyConfig,
|
|
516
|
+
ShapedInternalRecsysPoliciesLightgbmModelPolicyLightgbmModelPolicyLightGBMModelPolicyConfig,
|
|
517
|
+
ShapedInternalRecsysPoliciesNgramModelPolicyNgramModelPolicyConfig,
|
|
518
|
+
ShapedInternalRecsysPoliciesRisingPopularPolicyRisingPopularPolicyConfig,
|
|
519
|
+
ShapedInternalRecsysPoliciesSasrecModelPolicySasrecModelPolicySASRecModelPolicyConfig,
|
|
520
|
+
ShapedInternalRecsysPoliciesSvdModelPolicySVDModelPolicyConfig,
|
|
521
|
+
ShapedInternalRecsysPoliciesTwoTowerModelPolicyTwoTowerModelPolicyTwoTowerModelPolicyConfig,
|
|
522
|
+
ShapedInternalRecsysPoliciesWidedeepModelPolicyWideDeepModelPolicyConfig,
|
|
523
|
+
ShapedInternalRecsysPoliciesXgboostModelPolicyXGBoostModelPolicyConfig,
|
|
524
|
+
]
|
|
525
|
+
]:
|
|
526
|
+
"""Returns the dict representation of the actual instance"""
|
|
527
|
+
if self.actual_instance is None:
|
|
528
|
+
return None
|
|
529
|
+
|
|
530
|
+
if hasattr(self.actual_instance, "to_dict") and callable(
|
|
531
|
+
self.actual_instance.to_dict
|
|
532
|
+
):
|
|
533
|
+
return self.actual_instance.to_dict()
|
|
534
|
+
else:
|
|
535
|
+
# primitive type
|
|
536
|
+
return self.actual_instance
|
|
537
|
+
|
|
538
|
+
def to_str(self) -> str:
|
|
539
|
+
"""Returns the string representation of the actual instance"""
|
|
540
|
+
return pprint.pformat(self.model_dump())
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
Shaped API
|
|
5
|
+
|
|
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
|
+
|
|
8
|
+
The version of the OpenAPI document: 2.0.4
|
|
9
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
|
+
|
|
11
|
+
Do not edit the class manually.
|
|
12
|
+
""" # noqa: E501
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
from __future__ import annotations
|
|
16
|
+
import json
|
|
17
|
+
from enum import Enum
|
|
18
|
+
from typing_extensions import Self
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
class TrainingStrategy(str, Enum):
|
|
22
|
+
"""
|
|
23
|
+
TrainingStrategy
|
|
24
|
+
"""
|
|
25
|
+
|
|
26
|
+
"""
|
|
27
|
+
allowed enum values
|
|
28
|
+
"""
|
|
29
|
+
DEFAULT = 'default'
|
|
30
|
+
EARLY_STOPPING = 'early_stopping'
|
|
31
|
+
|
|
32
|
+
@classmethod
|
|
33
|
+
def from_json(cls, json_str: str) -> Self:
|
|
34
|
+
"""Create an instance of TrainingStrategy from a JSON string"""
|
|
35
|
+
return cls(json.loads(json_str))
|
|
36
|
+
|
|
37
|
+
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
Shaped API
|
|
5
|
+
|
|
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
|
+
|
|
8
|
+
The version of the OpenAPI document: 2.0.4
|
|
9
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
|
+
|
|
11
|
+
Do not edit the class manually.
|
|
12
|
+
""" # noqa: E501
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
from __future__ import annotations
|
|
16
|
+
import json
|
|
17
|
+
from enum import Enum
|
|
18
|
+
from typing_extensions import Self
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
class TransformStatus(str, Enum):
|
|
22
|
+
"""
|
|
23
|
+
TransformStatus
|
|
24
|
+
"""
|
|
25
|
+
|
|
26
|
+
"""
|
|
27
|
+
allowed enum values
|
|
28
|
+
"""
|
|
29
|
+
ACTIVE = 'ACTIVE'
|
|
30
|
+
SCHEDULING = 'SCHEDULING'
|
|
31
|
+
BACKFILLING = 'BACKFILLING'
|
|
32
|
+
DESTROYING = 'DESTROYING'
|
|
33
|
+
INACTIVE = 'INACTIVE'
|
|
34
|
+
ERROR = 'ERROR'
|
|
35
|
+
|
|
36
|
+
@classmethod
|
|
37
|
+
def from_json(cls, json_str: str) -> Self:
|
|
38
|
+
"""Create an instance of TransformStatus from a JSON string"""
|
|
39
|
+
return cls(json.loads(json_str))
|
|
40
|
+
|
|
41
|
+
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
Shaped API
|
|
5
|
+
|
|
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
|
+
|
|
8
|
+
The version of the OpenAPI document: 2.0.0
|
|
9
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
|
+
|
|
11
|
+
Do not edit the class manually.
|
|
12
|
+
""" # noqa: E501
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
from __future__ import annotations
|
|
16
|
+
|
|
17
|
+
import json
|
|
18
|
+
from enum import Enum
|
|
19
|
+
|
|
20
|
+
from typing_extensions import Self
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
class TrendingMode(str, Enum):
|
|
24
|
+
"""
|
|
25
|
+
TrendingMode
|
|
26
|
+
"""
|
|
27
|
+
|
|
28
|
+
"""
|
|
29
|
+
allowed enum values
|
|
30
|
+
"""
|
|
31
|
+
HACKERNEWS = "hackernews"
|
|
32
|
+
REDDIT = "reddit"
|
|
33
|
+
|
|
34
|
+
@classmethod
|
|
35
|
+
def from_json(cls, json_str: str) -> Self:
|
|
36
|
+
"""Create an instance of TrendingMode from a JSON string"""
|
|
37
|
+
return cls(json.loads(json_str))
|