truefoundry 0.5.10rc1__py3-none-any.whl → 0.5.11rc1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of truefoundry might be problematic. Click here for more details.
- truefoundry/__init__.py +19 -0
- truefoundry/_client.py +36 -0
- truefoundry/cli/display_util.py +1 -1
- truefoundry/common/utils.py +9 -0
- truefoundry/deploy/__init__.py +2 -2
- truefoundry/deploy/_autogen/models.py +1591 -0
- truefoundry/deploy/builder/__init__.py +1 -1
- truefoundry/deploy/builder/builders/dockerfile.py +1 -1
- truefoundry/deploy/builder/builders/tfy_notebook_buildpack/__init__.py +1 -1
- truefoundry/deploy/builder/builders/tfy_python_buildpack/__init__.py +1 -1
- truefoundry/deploy/builder/builders/tfy_python_buildpack/dockerfile_template.py +1 -1
- truefoundry/deploy/io/output_callback.py +13 -6
- truefoundry/deploy/io/rich_output_callback.py +8 -4
- truefoundry/deploy/lib/clients/servicefoundry_client.py +117 -138
- truefoundry/deploy/lib/dao/apply.py +2 -2
- truefoundry/deploy/lib/dao/delete.py +2 -2
- truefoundry/deploy/lib/model/entity.py +37 -24
- truefoundry/deploy/v2/lib/deploy.py +7 -7
- truefoundry/deploy/v2/lib/deploy_workflow.py +9 -9
- truefoundry/deploy/v2/lib/deployable_patched_models.py +1 -1
- truefoundry/deploy/v2/lib/patched_models.py +7 -7
- truefoundry/deploy/v2/lib/source.py +1 -1
- truefoundry/ml/__init__.py +2 -2
- truefoundry/ml/_autogen/client/__init__.py +457 -0
- truefoundry/ml/_autogen/client/api/__init__.py +16 -0
- truefoundry/ml/{autogen → _autogen}/client/api/auth_api.py +6 -6
- truefoundry/ml/{autogen → _autogen}/client/api/deprecated_api.py +12 -345
- truefoundry/ml/{autogen → _autogen}/client/api/experiments_api.py +89 -44
- truefoundry/ml/{autogen → _autogen}/client/api/generate_code_snippet_api.py +10 -10
- truefoundry/ml/{autogen → _autogen}/client/api/health_api.py +5 -5
- truefoundry/ml/{autogen → _autogen}/client/api/metrics_api.py +10 -10
- truefoundry/ml/{autogen → _autogen}/client/api/mlfoundry_artifacts_api.py +589 -197
- truefoundry/ml/{autogen → _autogen}/client/api/run_artifacts_api.py +14 -9
- truefoundry/ml/{autogen → _autogen}/client/api/runs_api.py +41 -41
- truefoundry/ml/{autogen → _autogen}/client/api_client.py +8 -8
- truefoundry/ml/{autogen → _autogen}/client/configuration.py +30 -58
- truefoundry/ml/{autogen → _autogen}/client/exceptions.py +2 -2
- truefoundry/ml/_autogen/client/models/__init__.py +428 -0
- truefoundry/ml/{autogen → _autogen}/client/models/agent_app.py +14 -7
- truefoundry/ml/{autogen/client/models/agent.py → _autogen/client/models/agent_manifest.py} +37 -35
- truefoundry/ml/{autogen/client/models/agent_open_api_tool.py → _autogen/client/models/agent_open_api_tool_manifest.py} +50 -37
- truefoundry/ml/{autogen → _autogen}/client/models/agent_open_api_tool_with_fqn.py +45 -32
- truefoundry/ml/{autogen → _autogen}/client/models/agent_with_fqn.py +32 -30
- truefoundry/ml/_autogen/client/models/apply_request_dto.py +75 -0
- truefoundry/ml/_autogen/client/models/apply_response_dto.py +79 -0
- truefoundry/ml/{autogen → _autogen}/client/models/artifact_dto.py +7 -5
- truefoundry/ml/{autogen/client/models/artifact_version_manifest.py → _autogen/client/models/artifact_manifest.py} +39 -31
- truefoundry/ml/_autogen/client/models/artifact_path.py +70 -0
- truefoundry/ml/{autogen → _autogen}/client/models/artifact_response_dto.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/artifact_type.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/artifact_version_dto.py +10 -18
- truefoundry/ml/{autogen → _autogen}/client/models/artifact_version_response_dto.py +5 -3
- truefoundry/ml/{autogen → _autogen}/client/models/artifact_version_serialization_format.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/artifact_version_status.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/assistant_message.py +6 -6
- truefoundry/ml/{autogen → _autogen}/client/models/authorize_user_for_model_request_dto.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/authorize_user_for_model_version_request_dto.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/blob_storage_reference.py +6 -9
- truefoundry/ml/{autogen → _autogen}/client/models/body_get_search_runs_get.py +2 -2
- truefoundry/ml/{autogen/client/models/chat_prompt.py → _autogen/client/models/chat_prompt_manifest.py} +39 -37
- truefoundry/ml/{autogen/client/models/chat_prompt_messages_inner.py → _autogen/client/models/chat_prompt_manifest_messages_inner.py} +15 -15
- truefoundry/ml/{autogen → _autogen}/client/models/columns_dto.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/command.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/content.py +4 -4
- truefoundry/ml/{autogen → _autogen}/client/models/content1.py +4 -4
- truefoundry/ml/{autogen → _autogen}/client/models/content2.py +5 -5
- truefoundry/ml/{autogen → _autogen}/client/models/content2_any_of_inner.py +4 -4
- truefoundry/ml/{autogen → _autogen}/client/models/create_artifact_request_dto.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/create_artifact_response_dto.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/create_artifact_version_request_dto.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/create_artifact_version_response_dto.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/create_dataset_request_dto.py +21 -5
- truefoundry/ml/{autogen → _autogen}/client/models/create_experiment_request_dto.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/create_experiment_response_dto.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/create_model_version_request_dto.py +4 -12
- truefoundry/ml/{autogen → _autogen}/client/models/create_multi_part_upload_for_dataset_request_dto.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/create_multi_part_upload_for_dataset_response_dto.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/create_multi_part_upload_request_dto.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/create_python_deployment_config_request_dto.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/create_python_deployment_config_response_dto.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/create_run_request_dto.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/create_run_response_dto.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/create_workflow_task_config_request_dto.py +2 -2
- truefoundry/ml/_autogen/client/models/data_directory_manifest.py +124 -0
- truefoundry/ml/{autogen → _autogen}/client/models/dataset_dto.py +15 -4
- truefoundry/ml/{autogen → _autogen}/client/models/dataset_response_dto.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/delete_artifact_versions_request_dto.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/delete_dataset_request_dto.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/delete_files_for_dataset_request_dto.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/delete_model_version_request_dto.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/delete_run_request.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/delete_tag_request_dto.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/experiment_dto.py +5 -5
- truefoundry/ml/{autogen → _autogen}/client/models/experiment_id_request_dto.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/experiment_response_dto.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/experiment_tag_dto.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/export_deployment_files_request_dto.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/external_blob_storage_source.py +17 -9
- truefoundry/ml/{autogen → _autogen}/client/models/fast_ai_framework.py +4 -7
- truefoundry/ml/{autogen → _autogen}/client/models/file_info_dto.py +6 -3
- truefoundry/ml/{autogen → _autogen}/client/models/finalize_artifact_version_request_dto.py +7 -15
- truefoundry/ml/{autogen → _autogen}/client/models/framework.py +17 -17
- truefoundry/ml/{autogen → _autogen}/client/models/get_artifact_version_aliases_response_dto.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/get_experiment_response_dto.py +4 -4
- truefoundry/ml/{autogen → _autogen}/client/models/get_latest_run_log_response_dto.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/get_metric_history_response.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/get_signed_url_for_dataset_write_request_dto.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/get_signed_urls_for_artifact_version_read_request_dto.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/get_signed_urls_for_artifact_version_read_response_dto.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/get_signed_urls_for_artifact_version_write_request_dto.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/get_signed_urls_for_artifact_version_write_response_dto.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/get_signed_urls_for_dataset_read_request_dto.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/get_signed_urls_for_dataset_read_response_dto.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/get_signed_urls_for_dataset_write_response_dto.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/get_tenant_id_response_dto.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/gluon_framework.py +4 -6
- truefoundry/ml/{autogen → _autogen}/client/models/h2_o_framework.py +4 -6
- truefoundry/ml/{autogen → _autogen}/client/models/http_validation_error.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/image_content_part.py +6 -7
- truefoundry/ml/{autogen → _autogen}/client/models/image_url.py +4 -4
- truefoundry/ml/{autogen → _autogen}/client/models/infer_method_name.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/keras_framework.py +4 -6
- truefoundry/ml/{autogen → _autogen}/client/models/latest_run_log_dto.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/library_name.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/light_gbm_framework.py +4 -7
- truefoundry/ml/{autogen → _autogen}/client/models/list_artifact_versions_request_dto.py +4 -4
- truefoundry/ml/{autogen → _autogen}/client/models/list_artifact_versions_response_dto.py +5 -3
- truefoundry/ml/{autogen → _autogen}/client/models/list_artifacts_request_dto.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/list_artifacts_response_dto.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/list_colums_response_dto.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/list_datasets_request_dto.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/list_datasets_response_dto.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/list_experiments_response_dto.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/list_files_for_artifact_version_request_dto.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/list_files_for_artifact_versions_response_dto.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/list_files_for_dataset_request_dto.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/list_files_for_dataset_response_dto.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/list_latest_run_logs_response_dto.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/list_metric_history_request_dto.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/list_metric_history_response_dto.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/list_model_version_response_dto.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/list_model_versions_request_dto.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/list_models_request_dto.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/list_models_response_dto.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/list_run_artifacts_response_dto.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/list_run_logs_response_dto.py +3 -3
- truefoundry/ml/_autogen/client/models/local_artifact_source.py +91 -0
- truefoundry/ml/_autogen/client/models/local_model_source.py +77 -0
- truefoundry/ml/{autogen → _autogen}/client/models/log_batch_request_dto.py +5 -5
- truefoundry/ml/{autogen → _autogen}/client/models/log_metric_request_dto.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/log_param_request_dto.py +2 -2
- truefoundry/ml/_autogen/client/models/manifest.py +229 -0
- truefoundry/ml/_autogen/client/models/manifest1.py +217 -0
- truefoundry/ml/{autogen/client/models/internal_metadata.py → _autogen/client/models/manifest2.py} +68 -50
- truefoundry/ml/{autogen → _autogen}/client/models/method.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/metric_collection_dto.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/metric_dto.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/mime_type.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/model_configuration.py +8 -9
- truefoundry/ml/{autogen → _autogen}/client/models/model_dto.py +6 -6
- truefoundry/ml/{autogen/client/models/model_version_manifest.py → _autogen/client/models/model_manifest.py} +43 -35
- truefoundry/ml/{autogen → _autogen}/client/models/model_response_dto.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/model_server.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/model_version_dto.py +9 -11
- truefoundry/ml/{autogen → _autogen}/client/models/model_version_environment.py +5 -7
- truefoundry/ml/{autogen → _autogen}/client/models/model_version_response_dto.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/multi_part_upload_dto.py +4 -4
- truefoundry/ml/{autogen → _autogen}/client/models/multi_part_upload_response_dto.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/multi_part_upload_storage_provider.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/notify_artifact_version_failure_dto.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/onnx_framework.py +4 -6
- truefoundry/ml/{autogen → _autogen}/client/models/openapi_spec.py +4 -4
- truefoundry/ml/{autogen → _autogen}/client/models/paddle_framework.py +4 -7
- truefoundry/ml/{autogen → _autogen}/client/models/param_dto.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/parameters.py +4 -4
- truefoundry/ml/{autogen → _autogen}/client/models/py_torch_framework.py +4 -7
- truefoundry/ml/{autogen → _autogen}/client/models/resolve_agent_app_response_dto.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/restore_run_request_dto.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/run_data_dto.py +5 -5
- truefoundry/ml/{autogen → _autogen}/client/models/run_dto.py +4 -4
- truefoundry/ml/{autogen → _autogen}/client/models/run_info_dto.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/run_log_dto.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/run_log_input_dto.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/run_response_dto.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/run_tag_dto.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/search_runs_request_dto.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/search_runs_response_dto.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/set_experiment_tag_request_dto.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/set_tag_request_dto.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/signed_url_dto.py +3 -4
- truefoundry/ml/{autogen → _autogen}/client/models/sklearn_framework.py +9 -10
- truefoundry/ml/{autogen → _autogen}/client/models/sklearn_model_schema.py +7 -8
- truefoundry/ml/{autogen → _autogen}/client/models/sklearn_serialization_format.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/source.py +34 -9
- truefoundry/ml/{autogen → _autogen}/client/models/source1.py +5 -5
- truefoundry/ml/_autogen/client/models/source2.py +177 -0
- truefoundry/ml/{autogen → _autogen}/client/models/spa_cy_framework.py +4 -6
- truefoundry/ml/{autogen → _autogen}/client/models/stats_models_framework.py +4 -7
- truefoundry/ml/{autogen → _autogen}/client/models/stop.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/store_run_logs_request_dto.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/subject.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/subject_type.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/system_message.py +6 -8
- truefoundry/ml/{autogen → _autogen}/client/models/tensor_flow_framework.py +4 -7
- truefoundry/ml/{autogen → _autogen}/client/models/text.py +4 -4
- truefoundry/ml/{autogen → _autogen}/client/models/text_content_part.py +5 -5
- truefoundry/ml/{autogen → _autogen}/client/models/transformers_framework.py +8 -12
- truefoundry/ml/{autogen → _autogen}/client/models/trigger_job_run_config_request_dto.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/trigger_job_run_config_response_dto.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/true_foundry_managed_source.py +18 -12
- truefoundry/ml/{autogen → _autogen}/client/models/update_artifact_version_request_dto.py +5 -7
- truefoundry/ml/{autogen → _autogen}/client/models/update_dataset_request_dto.py +13 -3
- truefoundry/ml/{autogen → _autogen}/client/models/update_experiment_request_dto.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/update_model_version_request_dto.py +5 -7
- truefoundry/ml/{autogen → _autogen}/client/models/update_run_request_dto.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/update_run_response_dto.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/url.py +4 -4
- truefoundry/ml/{autogen → _autogen}/client/models/user_message.py +6 -6
- truefoundry/ml/{autogen → _autogen}/client/models/validate_external_storage_root_request_dto.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/validate_external_storage_root_response_dto.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/validation_error.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/validation_error_loc_inner.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/xg_boost_framework.py +7 -10
- truefoundry/ml/{autogen → _autogen}/client/models/xg_boost_model_schema.py +6 -7
- truefoundry/ml/{autogen → _autogen}/client/models/xg_boost_serialization_format.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/rest.py +3 -3
- truefoundry/ml/_autogen/client_README.md +359 -0
- truefoundry/ml/_autogen/entities/artifacts.py +558 -0
- truefoundry/ml/artifact/truefoundry_artifact_repo.py +1 -1
- truefoundry/ml/cli/commands/model_init.py +1 -1
- truefoundry/ml/clients/servicefoundry_client.py +7 -2
- truefoundry/ml/entities.py +1 -1
- truefoundry/ml/log_types/artifacts/artifact.py +22 -85
- truefoundry/ml/log_types/artifacts/dataset.py +5 -5
- truefoundry/ml/log_types/artifacts/general_artifact.py +1 -1
- truefoundry/ml/log_types/artifacts/model.py +12 -13
- truefoundry/ml/log_types/artifacts/utils.py +18 -2
- truefoundry/ml/log_types/image/image.py +1 -1
- truefoundry/ml/log_types/plot.py +1 -1
- truefoundry/ml/mlfoundry_api.py +2 -42
- truefoundry/ml/mlfoundry_run.py +1 -1
- truefoundry/ml/model_framework.py +3 -3
- truefoundry/ml/session.py +7 -4
- truefoundry/ml/validation_utils.py +1 -1
- truefoundry/workflow/map_task.py +5 -2
- {truefoundry-0.5.10rc1.dist-info → truefoundry-0.5.11rc1.dist-info}/METADATA +2 -1
- truefoundry-0.5.11rc1.dist-info/RECORD +377 -0
- truefoundry/deploy/auto_gen/models.py +0 -1915
- truefoundry/ml/autogen/client/__init__.py +0 -445
- truefoundry/ml/autogen/client/api/__init__.py +0 -16
- truefoundry/ml/autogen/client/models/__init__.py +0 -416
- truefoundry/ml/autogen/client/models/add_custom_metrics_to_model_version_request_dto.py +0 -69
- truefoundry/ml/autogen/client/models/add_features_to_model_version_request_dto.py +0 -69
- truefoundry/ml/autogen/client/models/manifest.py +0 -154
- truefoundry/ml/autogen/client_README.md +0 -361
- truefoundry/ml/autogen/entities/artifacts.py +0 -670
- truefoundry-0.5.10rc1.dist-info/RECORD +0 -370
- /truefoundry/ml/{autogen → _autogen}/__init__.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/api_response.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/models/__init__.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/models/exceptions.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/models/schema.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/models/signature.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/models/utils.py +0 -0
- {truefoundry-0.5.10rc1.dist-info → truefoundry-0.5.11rc1.dist-info}/WHEEL +0 -0
- {truefoundry-0.5.10rc1.dist-info → truefoundry-0.5.11rc1.dist-info}/entry_points.txt +0 -0
|
@@ -1,50 +1,51 @@
|
|
|
1
1
|
# coding: utf-8
|
|
2
2
|
|
|
3
3
|
"""
|
|
4
|
-
|
|
4
|
+
TrueFoundry ML API
|
|
5
5
|
|
|
6
6
|
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document:
|
|
8
|
+
The version of the OpenAPI document: 1.0.0
|
|
9
9
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
10
|
|
|
11
11
|
Do not edit the class manually.
|
|
12
12
|
""" # noqa: E501
|
|
13
13
|
|
|
14
14
|
import re # noqa: F401
|
|
15
|
+
import warnings
|
|
15
16
|
from typing import Optional
|
|
16
17
|
|
|
17
|
-
from truefoundry.ml.
|
|
18
|
-
from truefoundry.ml.
|
|
19
|
-
from truefoundry.ml.
|
|
18
|
+
from truefoundry.ml._autogen.client.api_client import ApiClient
|
|
19
|
+
from truefoundry.ml._autogen.client.api_response import ApiResponse
|
|
20
|
+
from truefoundry.ml._autogen.client.exceptions import ( # noqa: F401
|
|
20
21
|
ApiTypeError,
|
|
21
22
|
ApiValueError,
|
|
22
23
|
)
|
|
23
|
-
from truefoundry.ml.
|
|
24
|
+
from truefoundry.ml._autogen.client.models.create_experiment_request_dto import (
|
|
24
25
|
CreateExperimentRequestDto,
|
|
25
26
|
)
|
|
26
|
-
from truefoundry.ml.
|
|
27
|
+
from truefoundry.ml._autogen.client.models.create_experiment_response_dto import (
|
|
27
28
|
CreateExperimentResponseDto,
|
|
28
29
|
)
|
|
29
|
-
from truefoundry.ml.
|
|
30
|
+
from truefoundry.ml._autogen.client.models.experiment_id_request_dto import (
|
|
30
31
|
ExperimentIdRequestDto,
|
|
31
32
|
)
|
|
32
|
-
from truefoundry.ml.
|
|
33
|
+
from truefoundry.ml._autogen.client.models.experiment_response_dto import (
|
|
33
34
|
ExperimentResponseDto,
|
|
34
35
|
)
|
|
35
|
-
from truefoundry.ml.
|
|
36
|
+
from truefoundry.ml._autogen.client.models.get_experiment_response_dto import (
|
|
36
37
|
GetExperimentResponseDto,
|
|
37
38
|
)
|
|
38
|
-
from truefoundry.ml.
|
|
39
|
+
from truefoundry.ml._autogen.client.models.list_colums_response_dto import (
|
|
39
40
|
ListColumsResponseDto,
|
|
40
41
|
)
|
|
41
|
-
from truefoundry.ml.
|
|
42
|
+
from truefoundry.ml._autogen.client.models.list_experiments_response_dto import (
|
|
42
43
|
ListExperimentsResponseDto,
|
|
43
44
|
)
|
|
44
|
-
from truefoundry.ml.
|
|
45
|
+
from truefoundry.ml._autogen.client.models.set_experiment_tag_request_dto import (
|
|
45
46
|
SetExperimentTagRequestDto,
|
|
46
47
|
)
|
|
47
|
-
from truefoundry.ml.
|
|
48
|
+
from truefoundry.ml._autogen.client.models.update_experiment_request_dto import (
|
|
48
49
|
UpdateExperimentRequestDto,
|
|
49
50
|
)
|
|
50
51
|
from truefoundry.pydantic_v1 import (
|
|
@@ -70,7 +71,7 @@ class ExperimentsApi:
|
|
|
70
71
|
def create_experiment_post(
|
|
71
72
|
self, create_experiment_request_dto: CreateExperimentRequestDto, **kwargs
|
|
72
73
|
) -> CreateExperimentResponseDto: # noqa: E501
|
|
73
|
-
"""Create Experiment # noqa: E501
|
|
74
|
+
"""(Deprecated) Create Experiment # noqa: E501
|
|
74
75
|
|
|
75
76
|
Create Experiment # noqa: E501
|
|
76
77
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -104,7 +105,7 @@ class ExperimentsApi:
|
|
|
104
105
|
def create_experiment_post_with_http_info(
|
|
105
106
|
self, create_experiment_request_dto: CreateExperimentRequestDto, **kwargs
|
|
106
107
|
) -> ApiResponse: # noqa: E501
|
|
107
|
-
"""Create Experiment # noqa: E501
|
|
108
|
+
"""(Deprecated) Create Experiment # noqa: E501
|
|
108
109
|
|
|
109
110
|
Create Experiment # noqa: E501
|
|
110
111
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -140,6 +141,10 @@ class ExperimentsApi:
|
|
|
140
141
|
:rtype: tuple(CreateExperimentResponseDto, status_code(int), headers(HTTPHeaderDict))
|
|
141
142
|
"""
|
|
142
143
|
|
|
144
|
+
warnings.warn(
|
|
145
|
+
"POST /api/2.0/mlflow/experiments/create is deprecated.", DeprecationWarning
|
|
146
|
+
)
|
|
147
|
+
|
|
143
148
|
_params = locals()
|
|
144
149
|
|
|
145
150
|
_all_params = ["create_experiment_request_dto"]
|
|
@@ -196,7 +201,7 @@ class ExperimentsApi:
|
|
|
196
201
|
_header_params["Content-Type"] = _content_types_list
|
|
197
202
|
|
|
198
203
|
# authentication setting
|
|
199
|
-
_auth_settings = ["
|
|
204
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
200
205
|
|
|
201
206
|
_response_types_map = {
|
|
202
207
|
"200": "CreateExperimentResponseDto",
|
|
@@ -226,7 +231,7 @@ class ExperimentsApi:
|
|
|
226
231
|
def delete_experiment_post(
|
|
227
232
|
self, experiment_id_request_dto: ExperimentIdRequestDto, **kwargs
|
|
228
233
|
) -> object: # noqa: E501
|
|
229
|
-
"""Delete Experiment # noqa: E501
|
|
234
|
+
"""(Deprecated) Delete Experiment # noqa: E501
|
|
230
235
|
|
|
231
236
|
Delete Experiment # noqa: E501
|
|
232
237
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -260,7 +265,7 @@ class ExperimentsApi:
|
|
|
260
265
|
def delete_experiment_post_with_http_info(
|
|
261
266
|
self, experiment_id_request_dto: ExperimentIdRequestDto, **kwargs
|
|
262
267
|
) -> ApiResponse: # noqa: E501
|
|
263
|
-
"""Delete Experiment # noqa: E501
|
|
268
|
+
"""(Deprecated) Delete Experiment # noqa: E501
|
|
264
269
|
|
|
265
270
|
Delete Experiment # noqa: E501
|
|
266
271
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -296,6 +301,10 @@ class ExperimentsApi:
|
|
|
296
301
|
:rtype: tuple(object, status_code(int), headers(HTTPHeaderDict))
|
|
297
302
|
"""
|
|
298
303
|
|
|
304
|
+
warnings.warn(
|
|
305
|
+
"POST /api/2.0/mlflow/experiments/delete is deprecated.", DeprecationWarning
|
|
306
|
+
)
|
|
307
|
+
|
|
299
308
|
_params = locals()
|
|
300
309
|
|
|
301
310
|
_all_params = ["experiment_id_request_dto"]
|
|
@@ -352,7 +361,7 @@ class ExperimentsApi:
|
|
|
352
361
|
_header_params["Content-Type"] = _content_types_list
|
|
353
362
|
|
|
354
363
|
# authentication setting
|
|
355
|
-
_auth_settings = ["
|
|
364
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
356
365
|
|
|
357
366
|
_response_types_map = {
|
|
358
367
|
"200": "object",
|
|
@@ -382,7 +391,7 @@ class ExperimentsApi:
|
|
|
382
391
|
def get_experiment_by_name_get(
|
|
383
392
|
self, experiment_name: StrictStr, **kwargs
|
|
384
393
|
) -> ExperimentResponseDto: # noqa: E501
|
|
385
|
-
"""Get Experiment By Name # noqa: E501
|
|
394
|
+
"""(Deprecated) Get Experiment By Name # noqa: E501
|
|
386
395
|
|
|
387
396
|
Get Experiment By Name # noqa: E501
|
|
388
397
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -414,7 +423,7 @@ class ExperimentsApi:
|
|
|
414
423
|
def get_experiment_by_name_get_with_http_info(
|
|
415
424
|
self, experiment_name: StrictStr, **kwargs
|
|
416
425
|
) -> ApiResponse: # noqa: E501
|
|
417
|
-
"""Get Experiment By Name # noqa: E501
|
|
426
|
+
"""(Deprecated) Get Experiment By Name # noqa: E501
|
|
418
427
|
|
|
419
428
|
Get Experiment By Name # noqa: E501
|
|
420
429
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -450,6 +459,11 @@ class ExperimentsApi:
|
|
|
450
459
|
:rtype: tuple(ExperimentResponseDto, status_code(int), headers(HTTPHeaderDict))
|
|
451
460
|
"""
|
|
452
461
|
|
|
462
|
+
warnings.warn(
|
|
463
|
+
"GET /api/2.0/mlflow/experiments/get-by-name is deprecated.",
|
|
464
|
+
DeprecationWarning,
|
|
465
|
+
)
|
|
466
|
+
|
|
453
467
|
_params = locals()
|
|
454
468
|
|
|
455
469
|
_all_params = ["experiment_name"]
|
|
@@ -498,7 +512,7 @@ class ExperimentsApi:
|
|
|
498
512
|
) # noqa: E501
|
|
499
513
|
|
|
500
514
|
# authentication setting
|
|
501
|
-
_auth_settings = ["
|
|
515
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
502
516
|
|
|
503
517
|
_response_types_map = {
|
|
504
518
|
"200": "ExperimentResponseDto",
|
|
@@ -528,7 +542,7 @@ class ExperimentsApi:
|
|
|
528
542
|
def get_experiment_get(
|
|
529
543
|
self, experiment_id: StrictStr, **kwargs
|
|
530
544
|
) -> GetExperimentResponseDto: # noqa: E501
|
|
531
|
-
"""Get Experiment # noqa: E501
|
|
545
|
+
"""(Deprecated) Get Experiment # noqa: E501
|
|
532
546
|
|
|
533
547
|
Get Experiment # noqa: E501
|
|
534
548
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -560,7 +574,7 @@ class ExperimentsApi:
|
|
|
560
574
|
def get_experiment_get_with_http_info(
|
|
561
575
|
self, experiment_id: StrictStr, **kwargs
|
|
562
576
|
) -> ApiResponse: # noqa: E501
|
|
563
|
-
"""Get Experiment # noqa: E501
|
|
577
|
+
"""(Deprecated) Get Experiment # noqa: E501
|
|
564
578
|
|
|
565
579
|
Get Experiment # noqa: E501
|
|
566
580
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -596,6 +610,10 @@ class ExperimentsApi:
|
|
|
596
610
|
:rtype: tuple(GetExperimentResponseDto, status_code(int), headers(HTTPHeaderDict))
|
|
597
611
|
"""
|
|
598
612
|
|
|
613
|
+
warnings.warn(
|
|
614
|
+
"GET /api/2.0/mlflow/experiments/get is deprecated.", DeprecationWarning
|
|
615
|
+
)
|
|
616
|
+
|
|
599
617
|
_params = locals()
|
|
600
618
|
|
|
601
619
|
_all_params = ["experiment_id"]
|
|
@@ -644,7 +662,7 @@ class ExperimentsApi:
|
|
|
644
662
|
) # noqa: E501
|
|
645
663
|
|
|
646
664
|
# authentication setting
|
|
647
|
-
_auth_settings = ["
|
|
665
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
648
666
|
|
|
649
667
|
_response_types_map = {
|
|
650
668
|
"200": "GetExperimentResponseDto",
|
|
@@ -674,7 +692,7 @@ class ExperimentsApi:
|
|
|
674
692
|
def hard_delete_experiment_post(
|
|
675
693
|
self, experiment_id_request_dto: ExperimentIdRequestDto, **kwargs
|
|
676
694
|
) -> object: # noqa: E501
|
|
677
|
-
"""Hard Delete Experiment # noqa: E501
|
|
695
|
+
"""(Deprecated) Hard Delete Experiment # noqa: E501
|
|
678
696
|
|
|
679
697
|
Hard Delete Experiment # noqa: E501
|
|
680
698
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -708,7 +726,7 @@ class ExperimentsApi:
|
|
|
708
726
|
def hard_delete_experiment_post_with_http_info(
|
|
709
727
|
self, experiment_id_request_dto: ExperimentIdRequestDto, **kwargs
|
|
710
728
|
) -> ApiResponse: # noqa: E501
|
|
711
|
-
"""Hard Delete Experiment # noqa: E501
|
|
729
|
+
"""(Deprecated) Hard Delete Experiment # noqa: E501
|
|
712
730
|
|
|
713
731
|
Hard Delete Experiment # noqa: E501
|
|
714
732
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -744,6 +762,11 @@ class ExperimentsApi:
|
|
|
744
762
|
:rtype: tuple(object, status_code(int), headers(HTTPHeaderDict))
|
|
745
763
|
"""
|
|
746
764
|
|
|
765
|
+
warnings.warn(
|
|
766
|
+
"POST /api/2.0/mlflow/experiments/hard-delete is deprecated.",
|
|
767
|
+
DeprecationWarning,
|
|
768
|
+
)
|
|
769
|
+
|
|
747
770
|
_params = locals()
|
|
748
771
|
|
|
749
772
|
_all_params = ["experiment_id_request_dto"]
|
|
@@ -800,7 +823,7 @@ class ExperimentsApi:
|
|
|
800
823
|
_header_params["Content-Type"] = _content_types_list
|
|
801
824
|
|
|
802
825
|
# authentication setting
|
|
803
|
-
_auth_settings = ["
|
|
826
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
804
827
|
|
|
805
828
|
_response_types_map = {
|
|
806
829
|
"200": "object",
|
|
@@ -830,7 +853,7 @@ class ExperimentsApi:
|
|
|
830
853
|
def list_experiment_columns_get(
|
|
831
854
|
self, experiment_id: StrictStr, **kwargs
|
|
832
855
|
) -> ListColumsResponseDto: # noqa: E501
|
|
833
|
-
"""List Experiment Columns # noqa: E501
|
|
856
|
+
"""(Deprecated) List Experiment Columns # noqa: E501
|
|
834
857
|
|
|
835
858
|
List all the columns required for an experiment. # noqa: E501
|
|
836
859
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -862,7 +885,7 @@ class ExperimentsApi:
|
|
|
862
885
|
def list_experiment_columns_get_with_http_info(
|
|
863
886
|
self, experiment_id: StrictStr, **kwargs
|
|
864
887
|
) -> ApiResponse: # noqa: E501
|
|
865
|
-
"""List Experiment Columns # noqa: E501
|
|
888
|
+
"""(Deprecated) List Experiment Columns # noqa: E501
|
|
866
889
|
|
|
867
890
|
List all the columns required for an experiment. # noqa: E501
|
|
868
891
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -898,6 +921,10 @@ class ExperimentsApi:
|
|
|
898
921
|
:rtype: tuple(ListColumsResponseDto, status_code(int), headers(HTTPHeaderDict))
|
|
899
922
|
"""
|
|
900
923
|
|
|
924
|
+
warnings.warn(
|
|
925
|
+
"GET /api/2.0/mlflow/experiments/columns is deprecated.", DeprecationWarning
|
|
926
|
+
)
|
|
927
|
+
|
|
901
928
|
_params = locals()
|
|
902
929
|
|
|
903
930
|
_all_params = ["experiment_id"]
|
|
@@ -946,7 +973,7 @@ class ExperimentsApi:
|
|
|
946
973
|
) # noqa: E501
|
|
947
974
|
|
|
948
975
|
# authentication setting
|
|
949
|
-
_auth_settings = ["
|
|
976
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
950
977
|
|
|
951
978
|
_response_types_map = {
|
|
952
979
|
"200": "ListColumsResponseDto",
|
|
@@ -983,7 +1010,7 @@ class ExperimentsApi:
|
|
|
983
1010
|
filter_name: Optional[StrictStr] = None,
|
|
984
1011
|
**kwargs,
|
|
985
1012
|
) -> ListExperimentsResponseDto: # noqa: E501
|
|
986
|
-
"""List Experiments # noqa: E501
|
|
1013
|
+
"""(Deprecated) List Experiments # noqa: E501
|
|
987
1014
|
|
|
988
1015
|
List Experiments # noqa: E501
|
|
989
1016
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -1040,7 +1067,7 @@ class ExperimentsApi:
|
|
|
1040
1067
|
filter_name: Optional[StrictStr] = None,
|
|
1041
1068
|
**kwargs,
|
|
1042
1069
|
) -> ApiResponse: # noqa: E501
|
|
1043
|
-
"""List Experiments # noqa: E501
|
|
1070
|
+
"""(Deprecated) List Experiments # noqa: E501
|
|
1044
1071
|
|
|
1045
1072
|
List Experiments # noqa: E501
|
|
1046
1073
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -1086,6 +1113,10 @@ class ExperimentsApi:
|
|
|
1086
1113
|
:rtype: tuple(ListExperimentsResponseDto, status_code(int), headers(HTTPHeaderDict))
|
|
1087
1114
|
"""
|
|
1088
1115
|
|
|
1116
|
+
warnings.warn(
|
|
1117
|
+
"GET /api/2.0/mlflow/experiments/list is deprecated.", DeprecationWarning
|
|
1118
|
+
)
|
|
1119
|
+
|
|
1089
1120
|
_params = locals()
|
|
1090
1121
|
|
|
1091
1122
|
_all_params = [
|
|
@@ -1156,7 +1187,7 @@ class ExperimentsApi:
|
|
|
1156
1187
|
) # noqa: E501
|
|
1157
1188
|
|
|
1158
1189
|
# authentication setting
|
|
1159
|
-
_auth_settings = ["
|
|
1190
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
1160
1191
|
|
|
1161
1192
|
_response_types_map = {
|
|
1162
1193
|
"200": "ListExperimentsResponseDto",
|
|
@@ -1186,7 +1217,7 @@ class ExperimentsApi:
|
|
|
1186
1217
|
def restore_experiment_post(
|
|
1187
1218
|
self, experiment_id_request_dto: ExperimentIdRequestDto, **kwargs
|
|
1188
1219
|
) -> object: # noqa: E501
|
|
1189
|
-
"""Restore Experiment # noqa: E501
|
|
1220
|
+
"""(Deprecated) Restore Experiment # noqa: E501
|
|
1190
1221
|
|
|
1191
1222
|
Restore Experiment # noqa: E501
|
|
1192
1223
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -1220,7 +1251,7 @@ class ExperimentsApi:
|
|
|
1220
1251
|
def restore_experiment_post_with_http_info(
|
|
1221
1252
|
self, experiment_id_request_dto: ExperimentIdRequestDto, **kwargs
|
|
1222
1253
|
) -> ApiResponse: # noqa: E501
|
|
1223
|
-
"""Restore Experiment # noqa: E501
|
|
1254
|
+
"""(Deprecated) Restore Experiment # noqa: E501
|
|
1224
1255
|
|
|
1225
1256
|
Restore Experiment # noqa: E501
|
|
1226
1257
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -1256,6 +1287,11 @@ class ExperimentsApi:
|
|
|
1256
1287
|
:rtype: tuple(object, status_code(int), headers(HTTPHeaderDict))
|
|
1257
1288
|
"""
|
|
1258
1289
|
|
|
1290
|
+
warnings.warn(
|
|
1291
|
+
"POST /api/2.0/mlflow/experiments/restore is deprecated.",
|
|
1292
|
+
DeprecationWarning,
|
|
1293
|
+
)
|
|
1294
|
+
|
|
1259
1295
|
_params = locals()
|
|
1260
1296
|
|
|
1261
1297
|
_all_params = ["experiment_id_request_dto"]
|
|
@@ -1312,7 +1348,7 @@ class ExperimentsApi:
|
|
|
1312
1348
|
_header_params["Content-Type"] = _content_types_list
|
|
1313
1349
|
|
|
1314
1350
|
# authentication setting
|
|
1315
|
-
_auth_settings = ["
|
|
1351
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
1316
1352
|
|
|
1317
1353
|
_response_types_map = {
|
|
1318
1354
|
"200": "object",
|
|
@@ -1342,7 +1378,7 @@ class ExperimentsApi:
|
|
|
1342
1378
|
def set_experiment_tag_post(
|
|
1343
1379
|
self, set_experiment_tag_request_dto: SetExperimentTagRequestDto, **kwargs
|
|
1344
1380
|
) -> object: # noqa: E501
|
|
1345
|
-
"""Set Experiment Tag # noqa: E501
|
|
1381
|
+
"""(Deprecated) Set Experiment Tag # noqa: E501
|
|
1346
1382
|
|
|
1347
1383
|
Set Experiment Tag # noqa: E501
|
|
1348
1384
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -1376,7 +1412,7 @@ class ExperimentsApi:
|
|
|
1376
1412
|
def set_experiment_tag_post_with_http_info(
|
|
1377
1413
|
self, set_experiment_tag_request_dto: SetExperimentTagRequestDto, **kwargs
|
|
1378
1414
|
) -> ApiResponse: # noqa: E501
|
|
1379
|
-
"""Set Experiment Tag # noqa: E501
|
|
1415
|
+
"""(Deprecated) Set Experiment Tag # noqa: E501
|
|
1380
1416
|
|
|
1381
1417
|
Set Experiment Tag # noqa: E501
|
|
1382
1418
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -1412,6 +1448,11 @@ class ExperimentsApi:
|
|
|
1412
1448
|
:rtype: tuple(object, status_code(int), headers(HTTPHeaderDict))
|
|
1413
1449
|
"""
|
|
1414
1450
|
|
|
1451
|
+
warnings.warn(
|
|
1452
|
+
"POST /api/2.0/mlflow/experiments/set-experiment-tag is deprecated.",
|
|
1453
|
+
DeprecationWarning,
|
|
1454
|
+
)
|
|
1455
|
+
|
|
1415
1456
|
_params = locals()
|
|
1416
1457
|
|
|
1417
1458
|
_all_params = ["set_experiment_tag_request_dto"]
|
|
@@ -1468,7 +1509,7 @@ class ExperimentsApi:
|
|
|
1468
1509
|
_header_params["Content-Type"] = _content_types_list
|
|
1469
1510
|
|
|
1470
1511
|
# authentication setting
|
|
1471
|
-
_auth_settings = ["
|
|
1512
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
1472
1513
|
|
|
1473
1514
|
_response_types_map = {
|
|
1474
1515
|
"200": "object",
|
|
@@ -1498,7 +1539,7 @@ class ExperimentsApi:
|
|
|
1498
1539
|
def update_experiment_post(
|
|
1499
1540
|
self, update_experiment_request_dto: UpdateExperimentRequestDto, **kwargs
|
|
1500
1541
|
) -> object: # noqa: E501
|
|
1501
|
-
"""Update Experiment # noqa: E501
|
|
1542
|
+
"""(Deprecated) Update Experiment # noqa: E501
|
|
1502
1543
|
|
|
1503
1544
|
Update Experiment # noqa: E501
|
|
1504
1545
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -1532,7 +1573,7 @@ class ExperimentsApi:
|
|
|
1532
1573
|
def update_experiment_post_with_http_info(
|
|
1533
1574
|
self, update_experiment_request_dto: UpdateExperimentRequestDto, **kwargs
|
|
1534
1575
|
) -> ApiResponse: # noqa: E501
|
|
1535
|
-
"""Update Experiment # noqa: E501
|
|
1576
|
+
"""(Deprecated) Update Experiment # noqa: E501
|
|
1536
1577
|
|
|
1537
1578
|
Update Experiment # noqa: E501
|
|
1538
1579
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -1568,6 +1609,10 @@ class ExperimentsApi:
|
|
|
1568
1609
|
:rtype: tuple(object, status_code(int), headers(HTTPHeaderDict))
|
|
1569
1610
|
"""
|
|
1570
1611
|
|
|
1612
|
+
warnings.warn(
|
|
1613
|
+
"POST /api/2.0/mlflow/experiments/update is deprecated.", DeprecationWarning
|
|
1614
|
+
)
|
|
1615
|
+
|
|
1571
1616
|
_params = locals()
|
|
1572
1617
|
|
|
1573
1618
|
_all_params = ["update_experiment_request_dto"]
|
|
@@ -1624,7 +1669,7 @@ class ExperimentsApi:
|
|
|
1624
1669
|
_header_params["Content-Type"] = _content_types_list
|
|
1625
1670
|
|
|
1626
1671
|
# authentication setting
|
|
1627
|
-
_auth_settings = ["
|
|
1672
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
1628
1673
|
|
|
1629
1674
|
_response_types_map = {
|
|
1630
1675
|
"200": "object",
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
# coding: utf-8
|
|
2
2
|
|
|
3
3
|
"""
|
|
4
|
-
|
|
4
|
+
TrueFoundry ML API
|
|
5
5
|
|
|
6
6
|
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document:
|
|
8
|
+
The version of the OpenAPI document: 1.0.0
|
|
9
9
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
10
|
|
|
11
11
|
Do not edit the class manually.
|
|
@@ -13,25 +13,25 @@ Do not edit the class manually.
|
|
|
13
13
|
|
|
14
14
|
import re # noqa: F401
|
|
15
15
|
|
|
16
|
-
from truefoundry.ml.
|
|
17
|
-
from truefoundry.ml.
|
|
18
|
-
from truefoundry.ml.
|
|
16
|
+
from truefoundry.ml._autogen.client.api_client import ApiClient
|
|
17
|
+
from truefoundry.ml._autogen.client.api_response import ApiResponse
|
|
18
|
+
from truefoundry.ml._autogen.client.exceptions import ( # noqa: F401
|
|
19
19
|
ApiTypeError,
|
|
20
20
|
ApiValueError,
|
|
21
21
|
)
|
|
22
|
-
from truefoundry.ml.
|
|
22
|
+
from truefoundry.ml._autogen.client.models.create_python_deployment_config_request_dto import (
|
|
23
23
|
CreatePythonDeploymentConfigRequestDto,
|
|
24
24
|
)
|
|
25
|
-
from truefoundry.ml.
|
|
25
|
+
from truefoundry.ml._autogen.client.models.create_python_deployment_config_response_dto import (
|
|
26
26
|
CreatePythonDeploymentConfigResponseDto,
|
|
27
27
|
)
|
|
28
|
-
from truefoundry.ml.
|
|
28
|
+
from truefoundry.ml._autogen.client.models.create_workflow_task_config_request_dto import (
|
|
29
29
|
CreateWorkflowTaskConfigRequestDto,
|
|
30
30
|
)
|
|
31
|
-
from truefoundry.ml.
|
|
31
|
+
from truefoundry.ml._autogen.client.models.trigger_job_run_config_request_dto import (
|
|
32
32
|
TriggerJobRunConfigRequestDto,
|
|
33
33
|
)
|
|
34
|
-
from truefoundry.ml.
|
|
34
|
+
from truefoundry.ml._autogen.client.models.trigger_job_run_config_response_dto import (
|
|
35
35
|
TriggerJobRunConfigResponseDto,
|
|
36
36
|
)
|
|
37
37
|
from truefoundry.pydantic_v1 import validate_arguments
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
# coding: utf-8
|
|
2
2
|
|
|
3
3
|
"""
|
|
4
|
-
|
|
4
|
+
TrueFoundry ML API
|
|
5
5
|
|
|
6
6
|
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document:
|
|
8
|
+
The version of the OpenAPI document: 1.0.0
|
|
9
9
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
10
|
|
|
11
11
|
Do not edit the class manually.
|
|
@@ -13,9 +13,9 @@ Do not edit the class manually.
|
|
|
13
13
|
|
|
14
14
|
import re # noqa: F401
|
|
15
15
|
|
|
16
|
-
from truefoundry.ml.
|
|
17
|
-
from truefoundry.ml.
|
|
18
|
-
from truefoundry.ml.
|
|
16
|
+
from truefoundry.ml._autogen.client.api_client import ApiClient
|
|
17
|
+
from truefoundry.ml._autogen.client.api_response import ApiResponse
|
|
18
|
+
from truefoundry.ml._autogen.client.exceptions import ( # noqa: F401
|
|
19
19
|
ApiTypeError,
|
|
20
20
|
ApiValueError,
|
|
21
21
|
)
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
# coding: utf-8
|
|
2
2
|
|
|
3
3
|
"""
|
|
4
|
-
|
|
4
|
+
TrueFoundry ML API
|
|
5
5
|
|
|
6
6
|
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document:
|
|
8
|
+
The version of the OpenAPI document: 1.0.0
|
|
9
9
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
10
|
|
|
11
11
|
Do not edit the class manually.
|
|
@@ -14,19 +14,19 @@ Do not edit the class manually.
|
|
|
14
14
|
import re # noqa: F401
|
|
15
15
|
from typing import Optional
|
|
16
16
|
|
|
17
|
-
from truefoundry.ml.
|
|
18
|
-
from truefoundry.ml.
|
|
19
|
-
from truefoundry.ml.
|
|
17
|
+
from truefoundry.ml._autogen.client.api_client import ApiClient
|
|
18
|
+
from truefoundry.ml._autogen.client.api_response import ApiResponse
|
|
19
|
+
from truefoundry.ml._autogen.client.exceptions import ( # noqa: F401
|
|
20
20
|
ApiTypeError,
|
|
21
21
|
ApiValueError,
|
|
22
22
|
)
|
|
23
|
-
from truefoundry.ml.
|
|
23
|
+
from truefoundry.ml._autogen.client.models.get_metric_history_response import (
|
|
24
24
|
GetMetricHistoryResponse,
|
|
25
25
|
)
|
|
26
|
-
from truefoundry.ml.
|
|
26
|
+
from truefoundry.ml._autogen.client.models.list_metric_history_request_dto import (
|
|
27
27
|
ListMetricHistoryRequestDto,
|
|
28
28
|
)
|
|
29
|
-
from truefoundry.ml.
|
|
29
|
+
from truefoundry.ml._autogen.client.models.list_metric_history_response_dto import (
|
|
30
30
|
ListMetricHistoryResponseDto,
|
|
31
31
|
)
|
|
32
32
|
from truefoundry.pydantic_v1 import StrictStr, validate_arguments
|
|
@@ -188,7 +188,7 @@ class MetricsApi:
|
|
|
188
188
|
) # noqa: E501
|
|
189
189
|
|
|
190
190
|
# authentication setting
|
|
191
|
-
_auth_settings = ["
|
|
191
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
192
192
|
|
|
193
193
|
_response_types_map = {
|
|
194
194
|
"200": "GetMetricHistoryResponse",
|
|
@@ -344,7 +344,7 @@ class MetricsApi:
|
|
|
344
344
|
_header_params["Content-Type"] = _content_types_list
|
|
345
345
|
|
|
346
346
|
# authentication setting
|
|
347
|
-
_auth_settings = ["
|
|
347
|
+
_auth_settings = ["APIKey"] # noqa: E501
|
|
348
348
|
|
|
349
349
|
_response_types_map = {
|
|
350
350
|
"200": "ListMetricHistoryResponseDto",
|