truefoundry 0.5.10rc2__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/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/lib/clients/servicefoundry_client.py +41 -35
- 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 +4 -4
- truefoundry/ml/{autogen → _autogen}/client/api/deprecated_api.py +7 -7
- truefoundry/ml/{autogen → _autogen}/client/api/experiments_api.py +12 -12
- truefoundry/ml/{autogen → _autogen}/client/api/generate_code_snippet_api.py +8 -8
- truefoundry/ml/{autogen → _autogen}/client/api/health_api.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/api/metrics_api.py +6 -6
- truefoundry/ml/{autogen → _autogen}/client/api/mlfoundry_artifacts_api.py +61 -59
- truefoundry/ml/{autogen → _autogen}/client/api/run_artifacts_api.py +4 -4
- truefoundry/ml/{autogen → _autogen}/client/api/runs_api.py +21 -21
- truefoundry/ml/{autogen → _autogen}/client/api_client.py +6 -6
- truefoundry/ml/{autogen → _autogen}/client/configuration.py +1 -1
- truefoundry/ml/_autogen/client/models/__init__.py +428 -0
- truefoundry/ml/{autogen → _autogen}/client/models/agent_app.py +5 -6
- truefoundry/ml/{autogen → _autogen}/client/models/agent_manifest.py +10 -17
- truefoundry/ml/{autogen → _autogen}/client/models/agent_open_api_tool_manifest.py +12 -18
- truefoundry/ml/{autogen → _autogen}/client/models/agent_open_api_tool_with_fqn.py +15 -23
- truefoundry/ml/{autogen → _autogen}/client/models/agent_with_fqn.py +13 -22
- truefoundry/ml/{autogen → _autogen}/client/models/apply_request_dto.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/apply_response_dto.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/artifact_dto.py +5 -3
- truefoundry/ml/{autogen/client/models/artifact_version_manifest.py → _autogen/client/models/artifact_manifest.py} +16 -21
- truefoundry/ml/{autogen → _autogen}/client/models/artifact_path.py +2 -4
- truefoundry/ml/{autogen → _autogen}/client/models/artifact_response_dto.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/artifact_version_dto.py +4 -4
- truefoundry/ml/{autogen → _autogen}/client/models/artifact_version_response_dto.py +3 -1
- truefoundry/ml/{autogen → _autogen}/client/models/assistant_message.py +4 -8
- truefoundry/ml/{autogen → _autogen}/client/models/blob_storage_reference.py +5 -8
- truefoundry/ml/{autogen → _autogen}/client/models/chat_prompt_manifest.py +10 -15
- truefoundry/ml/{autogen → _autogen}/client/models/chat_prompt_manifest_messages_inner.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/content.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/content1.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/content2.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/content2_any_of_inner.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/create_artifact_request_dto.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/create_artifact_version_request_dto.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/create_dataset_request_dto.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/create_experiment_request_dto.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/create_multi_part_upload_for_dataset_response_dto.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/create_run_request_dto.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/create_run_response_dto.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/data_directory_manifest.py +5 -7
- truefoundry/ml/{autogen → _autogen}/client/models/dataset_dto.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/dataset_response_dto.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/experiment_dto.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/experiment_response_dto.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/export_deployment_files_request_dto.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/external_blob_storage_source.py +14 -7
- truefoundry/ml/{autogen → _autogen}/client/models/fast_ai_framework.py +2 -5
- truefoundry/ml/{autogen → _autogen}/client/models/file_info_dto.py +4 -1
- truefoundry/ml/{autogen → _autogen}/client/models/finalize_artifact_version_request_dto.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/framework.py +15 -15
- truefoundry/ml/{autogen → _autogen}/client/models/get_experiment_response_dto.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/get_latest_run_log_response_dto.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/get_metric_history_response.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/get_signed_urls_for_artifact_version_read_response_dto.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/get_signed_urls_for_artifact_version_write_response_dto.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/get_signed_urls_for_dataset_read_response_dto.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/get_signed_urls_for_dataset_write_response_dto.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/gluon_framework.py +2 -4
- truefoundry/ml/{autogen → _autogen}/client/models/h2_o_framework.py +2 -4
- truefoundry/ml/{autogen → _autogen}/client/models/http_validation_error.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/image_content_part.py +4 -7
- truefoundry/ml/{autogen → _autogen}/client/models/image_url.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/infer_method_name.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/keras_framework.py +2 -4
- truefoundry/ml/{autogen → _autogen}/client/models/latest_run_log_dto.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/library_name.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/light_gbm_framework.py +2 -5
- truefoundry/ml/{autogen → _autogen}/client/models/list_artifact_versions_request_dto.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/list_artifact_versions_response_dto.py +3 -1
- truefoundry/ml/{autogen → _autogen}/client/models/list_artifacts_request_dto.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/list_artifacts_response_dto.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/list_colums_response_dto.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/list_datasets_response_dto.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/list_experiments_response_dto.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/list_files_for_artifact_versions_response_dto.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/list_files_for_dataset_response_dto.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/list_latest_run_logs_response_dto.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/list_metric_history_response_dto.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/list_model_version_response_dto.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/list_model_versions_request_dto.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/list_models_response_dto.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/list_run_artifacts_response_dto.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/list_run_logs_response_dto.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/local_artifact_source.py +3 -5
- truefoundry/ml/{autogen → _autogen}/client/models/local_model_source.py +2 -5
- truefoundry/ml/{autogen → _autogen}/client/models/log_batch_request_dto.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/manifest.py +28 -30
- truefoundry/ml/{autogen → _autogen}/client/models/manifest1.py +26 -28
- truefoundry/ml/{autogen → _autogen}/client/models/manifest2.py +16 -16
- truefoundry/ml/{autogen → _autogen}/client/models/method.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/metric_collection_dto.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/mime_type.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/model_configuration.py +6 -7
- truefoundry/ml/{autogen → _autogen}/client/models/model_dto.py +4 -4
- truefoundry/ml/{autogen/client/models/model_version_manifest.py → _autogen/client/models/model_manifest.py} +18 -23
- truefoundry/ml/{autogen → _autogen}/client/models/model_response_dto.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/model_version_dto.py +7 -9
- truefoundry/ml/{autogen → _autogen}/client/models/model_version_environment.py +3 -5
- truefoundry/ml/{autogen → _autogen}/client/models/model_version_response_dto.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/multi_part_upload_dto.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/multi_part_upload_response_dto.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/onnx_framework.py +2 -4
- truefoundry/ml/{autogen → _autogen}/client/models/openapi_spec.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/paddle_framework.py +2 -5
- truefoundry/ml/{autogen → _autogen}/client/models/parameters.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/py_torch_framework.py +2 -5
- truefoundry/ml/{autogen → _autogen}/client/models/resolve_agent_app_response_dto.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/run_data_dto.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/run_dto.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/run_info_dto.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/run_response_dto.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/search_runs_response_dto.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/signed_url_dto.py +1 -2
- truefoundry/ml/{autogen → _autogen}/client/models/sklearn_framework.py +7 -8
- truefoundry/ml/{autogen → _autogen}/client/models/sklearn_model_schema.py +5 -8
- truefoundry/ml/{autogen → _autogen}/client/models/sklearn_serialization_format.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/source.py +4 -4
- truefoundry/ml/{autogen → _autogen}/client/models/source1.py +3 -3
- truefoundry/ml/{autogen → _autogen}/client/models/source2.py +4 -4
- truefoundry/ml/{autogen → _autogen}/client/models/spa_cy_framework.py +2 -4
- truefoundry/ml/{autogen → _autogen}/client/models/stats_models_framework.py +2 -5
- truefoundry/ml/{autogen → _autogen}/client/models/store_run_logs_request_dto.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/subject.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/system_message.py +4 -9
- truefoundry/ml/{autogen → _autogen}/client/models/tensor_flow_framework.py +2 -5
- truefoundry/ml/{autogen → _autogen}/client/models/text.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/text_content_part.py +3 -5
- truefoundry/ml/{autogen → _autogen}/client/models/transformers_framework.py +6 -10
- truefoundry/ml/{autogen → _autogen}/client/models/trigger_job_run_config_request_dto.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/true_foundry_managed_source.py +16 -10
- truefoundry/ml/{autogen → _autogen}/client/models/update_artifact_version_request_dto.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/update_dataset_request_dto.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/update_model_version_request_dto.py +3 -5
- truefoundry/ml/{autogen → _autogen}/client/models/update_run_response_dto.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/url.py +2 -2
- truefoundry/ml/{autogen → _autogen}/client/models/user_message.py +4 -7
- truefoundry/ml/{autogen → _autogen}/client/models/validation_error.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/models/xg_boost_framework.py +5 -8
- truefoundry/ml/{autogen → _autogen}/client/models/xg_boost_model_schema.py +4 -7
- truefoundry/ml/{autogen → _autogen}/client/models/xg_boost_serialization_format.py +1 -1
- truefoundry/ml/{autogen → _autogen}/client/rest.py +1 -1
- 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 +4 -0
- truefoundry/ml/entities.py +1 -1
- truefoundry/ml/log_types/artifacts/artifact.py +9 -9
- 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 +9 -9
- truefoundry/ml/log_types/image/image.py +1 -1
- truefoundry/ml/log_types/plot.py +1 -1
- truefoundry/ml/mlfoundry_api.py +2 -2
- 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.10rc2.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 -453
- truefoundry/ml/autogen/client/api/__init__.py +0 -16
- truefoundry/ml/autogen/client/models/__init__.py +0 -424
- truefoundry/ml/autogen/client_README.md +0 -359
- truefoundry/ml/autogen/entities/artifacts.py +0 -795
- truefoundry-0.5.10rc2.dist-info/RECORD +0 -376
- /truefoundry/ml/{autogen → _autogen}/__init__.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/api_response.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/exceptions.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/artifact_type.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/artifact_version_serialization_format.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/artifact_version_status.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/authorize_user_for_model_request_dto.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/authorize_user_for_model_version_request_dto.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/body_get_search_runs_get.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/columns_dto.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/command.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/create_artifact_response_dto.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/create_artifact_version_response_dto.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/create_experiment_response_dto.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/create_model_version_request_dto.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/create_multi_part_upload_for_dataset_request_dto.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/create_multi_part_upload_request_dto.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/create_python_deployment_config_request_dto.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/create_python_deployment_config_response_dto.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/create_workflow_task_config_request_dto.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/delete_artifact_versions_request_dto.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/delete_dataset_request_dto.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/delete_files_for_dataset_request_dto.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/delete_model_version_request_dto.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/delete_run_request.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/delete_tag_request_dto.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/experiment_id_request_dto.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/experiment_tag_dto.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/get_artifact_version_aliases_response_dto.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/get_signed_url_for_dataset_write_request_dto.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/get_signed_urls_for_artifact_version_read_request_dto.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/get_signed_urls_for_artifact_version_write_request_dto.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/get_signed_urls_for_dataset_read_request_dto.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/get_tenant_id_response_dto.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/list_datasets_request_dto.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/list_files_for_artifact_version_request_dto.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/list_files_for_dataset_request_dto.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/list_metric_history_request_dto.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/list_models_request_dto.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/log_metric_request_dto.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/log_param_request_dto.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/metric_dto.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/model_server.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/multi_part_upload_storage_provider.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/notify_artifact_version_failure_dto.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/param_dto.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/restore_run_request_dto.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/run_log_dto.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/run_log_input_dto.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/run_tag_dto.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/search_runs_request_dto.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/set_experiment_tag_request_dto.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/set_tag_request_dto.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/stop.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/subject_type.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/trigger_job_run_config_response_dto.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/update_experiment_request_dto.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/update_run_request_dto.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/validate_external_storage_root_request_dto.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/validate_external_storage_root_response_dto.py +0 -0
- /truefoundry/ml/{autogen → _autogen}/client/models/validation_error_loc_inner.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.10rc2.dist-info → truefoundry-0.5.11rc1.dist-info}/WHEEL +0 -0
- {truefoundry-0.5.10rc2.dist-info → truefoundry-0.5.11rc1.dist-info}/entry_points.txt +0 -0
|
@@ -18,22 +18,19 @@ import pprint
|
|
|
18
18
|
import re # noqa: F401
|
|
19
19
|
from typing import Optional
|
|
20
20
|
|
|
21
|
-
from truefoundry.ml.
|
|
21
|
+
from truefoundry.ml._autogen.client.models.content2 import Content2
|
|
22
22
|
from truefoundry.pydantic_v1 import BaseModel, Field, StrictStr, validator
|
|
23
23
|
|
|
24
24
|
|
|
25
25
|
class UserMessage(BaseModel):
|
|
26
26
|
"""
|
|
27
|
-
|
|
27
|
+
User message turn # noqa: E501
|
|
28
28
|
"""
|
|
29
29
|
|
|
30
|
-
role: StrictStr = Field(
|
|
31
|
-
default=..., description="+value=user +usage=Role of the message +uiType=Ignore"
|
|
32
|
-
)
|
|
30
|
+
role: StrictStr = Field(default=..., description="Role of the message")
|
|
33
31
|
content: Content2 = Field(...)
|
|
34
32
|
name: Optional[StrictStr] = Field(
|
|
35
|
-
default=None,
|
|
36
|
-
description="+label=Name +usage=Name of the user this message is from",
|
|
33
|
+
default=None, description="Name of the user this message is from"
|
|
37
34
|
)
|
|
38
35
|
__properties = ["role", "content", "name"]
|
|
39
36
|
|
|
@@ -17,7 +17,7 @@ import json
|
|
|
17
17
|
import pprint
|
|
18
18
|
import re # noqa: F401
|
|
19
19
|
|
|
20
|
-
from truefoundry.ml.
|
|
20
|
+
from truefoundry.ml._autogen.client.models.validation_error_loc_inner import (
|
|
21
21
|
ValidationErrorLocInner,
|
|
22
22
|
)
|
|
23
23
|
from truefoundry.pydantic_v1 import BaseModel, Field, StrictStr, conlist
|
|
@@ -18,10 +18,10 @@ import pprint
|
|
|
18
18
|
import re # noqa: F401
|
|
19
19
|
from typing import Optional
|
|
20
20
|
|
|
21
|
-
from truefoundry.ml.
|
|
21
|
+
from truefoundry.ml._autogen.client.models.xg_boost_model_schema import (
|
|
22
22
|
XGBoostModelSchema,
|
|
23
23
|
)
|
|
24
|
-
from truefoundry.ml.
|
|
24
|
+
from truefoundry.ml._autogen.client.models.xg_boost_serialization_format import (
|
|
25
25
|
XGBoostSerializationFormat,
|
|
26
26
|
)
|
|
27
27
|
from truefoundry.pydantic_v1 import BaseModel, Field, StrictStr, validator
|
|
@@ -29,17 +29,14 @@ from truefoundry.pydantic_v1 import BaseModel, Field, StrictStr, validator
|
|
|
29
29
|
|
|
30
30
|
class XGBoostFramework(BaseModel):
|
|
31
31
|
"""
|
|
32
|
-
|
|
32
|
+
XGBoostFramework
|
|
33
33
|
"""
|
|
34
34
|
|
|
35
|
-
type: StrictStr = Field(
|
|
36
|
-
default=...,
|
|
37
|
-
description="+label=Type +usage=Type of the framework +value=xgboost",
|
|
38
|
-
)
|
|
35
|
+
type: StrictStr = Field(default=..., description="Type of the framework")
|
|
39
36
|
serialization_format: Optional[XGBoostSerializationFormat] = None
|
|
40
37
|
model_filepath: Optional[StrictStr] = Field(
|
|
41
38
|
default=None,
|
|
42
|
-
description="
|
|
39
|
+
description="Relative path to the model file in the model version contents",
|
|
43
40
|
)
|
|
44
41
|
model_schema: Optional[XGBoostModelSchema] = None
|
|
45
42
|
__properties = ["type", "serialization_format", "model_filepath", "model_schema"]
|
|
@@ -23,20 +23,17 @@ from truefoundry.pydantic_v1 import BaseModel, Field, StrictStr, conlist, valida
|
|
|
23
23
|
|
|
24
24
|
class XGBoostModelSchema(BaseModel):
|
|
25
25
|
"""
|
|
26
|
-
|
|
26
|
+
Schema of the XGBoost model # noqa: E501
|
|
27
27
|
"""
|
|
28
28
|
|
|
29
29
|
infer_method_name: StrictStr = Field(
|
|
30
|
-
default=...,
|
|
31
|
-
description="+label=Inference Method Name +usage=Name of the method used for inference",
|
|
30
|
+
default=..., description="Name of the method used for inference"
|
|
32
31
|
)
|
|
33
32
|
inputs: conlist(Dict[str, Any]) = Field(
|
|
34
|
-
default=...,
|
|
35
|
-
description='+label= Input Schema +usage=Schema of the input +uiProps={"descriptionInline":true}',
|
|
33
|
+
default=..., description="Schema of the input"
|
|
36
34
|
)
|
|
37
35
|
outputs: conlist(Dict[str, Any]) = Field(
|
|
38
|
-
default=...,
|
|
39
|
-
description='+label= Output Schema +usage=Schema of the output +uiProps={"descriptionInline":true}',
|
|
36
|
+
default=..., description="Schema of the output"
|
|
40
37
|
)
|
|
41
38
|
__properties = ["infer_method_name", "inputs", "outputs"]
|
|
42
39
|
|
|
@@ -0,0 +1,359 @@
|
|
|
1
|
+
# client
|
|
2
|
+
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
3
|
+
|
|
4
|
+
The `truefoundry.ml._autogen.client` package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
5
|
+
|
|
6
|
+
- API version: 1.0.0
|
|
7
|
+
- Package version: 0.1.0
|
|
8
|
+
- Generator version: 7.10.0
|
|
9
|
+
- Build package: org.openapitools.codegen.languages.PythonPydanticV1ClientCodegen
|
|
10
|
+
|
|
11
|
+
## Requirements.
|
|
12
|
+
|
|
13
|
+
Python 3.7+
|
|
14
|
+
|
|
15
|
+
## Installation & Usage
|
|
16
|
+
|
|
17
|
+
This python library package is generated without supporting files like setup.py or requirements files
|
|
18
|
+
|
|
19
|
+
To be able to use it, you will need these dependencies in your own package that uses this library:
|
|
20
|
+
|
|
21
|
+
* urllib3 >= 1.25.3
|
|
22
|
+
* python-dateutil
|
|
23
|
+
* pydantic
|
|
24
|
+
* aenum
|
|
25
|
+
|
|
26
|
+
## Getting Started
|
|
27
|
+
|
|
28
|
+
In your own code, to use this library to connect and interact with client,
|
|
29
|
+
you can run the following:
|
|
30
|
+
|
|
31
|
+
```python
|
|
32
|
+
|
|
33
|
+
import time
|
|
34
|
+
import truefoundry.ml._autogen.client
|
|
35
|
+
from truefoundry.ml._autogen.client.rest import ApiException
|
|
36
|
+
from pprint import pprint
|
|
37
|
+
|
|
38
|
+
# Defining the host is optional and defaults to http://localhost
|
|
39
|
+
# See configuration.py for a list of all supported configuration parameters.
|
|
40
|
+
configuration = truefoundry.ml._autogen.client.Configuration(
|
|
41
|
+
host = "http://localhost"
|
|
42
|
+
)
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
# Enter a context with an instance of the API client
|
|
47
|
+
with truefoundry.ml._autogen.client.ApiClient(configuration) as api_client:
|
|
48
|
+
# Create an instance of the API class
|
|
49
|
+
api_instance = truefoundry.ml._autogen.client.AuthApi(api_client)
|
|
50
|
+
host_name = 'host_name_example' # str |
|
|
51
|
+
|
|
52
|
+
try:
|
|
53
|
+
# Get Tenant Id
|
|
54
|
+
api_response = api_instance.get_tenant_id_get(host_name)
|
|
55
|
+
print("The response of AuthApi->get_tenant_id_get:\n")
|
|
56
|
+
pprint(api_response)
|
|
57
|
+
except ApiException as e:
|
|
58
|
+
print("Exception when calling AuthApi->get_tenant_id_get: %s\n" % e)
|
|
59
|
+
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
## Documentation for API Endpoints
|
|
63
|
+
|
|
64
|
+
All URIs are relative to *http://localhost*
|
|
65
|
+
|
|
66
|
+
Class | Method | HTTP request | Description
|
|
67
|
+
------------ | ------------- | ------------- | -------------
|
|
68
|
+
*AuthApi* | [**get_tenant_id_get**](truefoundry/ml/_autogen/client/docs/AuthApi.md#get_tenant_id_get) | **GET** /api/2.0/mlflow/tenant-id | Get Tenant Id
|
|
69
|
+
*DeprecatedApi* | [**get_run_by_name_get**](truefoundry/ml/_autogen/client/docs/DeprecatedApi.md#get_run_by_name_get) | **GET** /api/2.0mlflow/runs/get-by-name | Get Run By Name
|
|
70
|
+
*DeprecatedApi* | [**get_search_runs_get**](truefoundry/ml/_autogen/client/docs/DeprecatedApi.md#get_search_runs_get) | **GET** /api/2.0/preview/mlflow/runs/search | Get Search Runs
|
|
71
|
+
*DeprecatedApi* | [**get_signed_urls_for_dataset_write_deprecated_get**](truefoundry/ml/_autogen/client/docs/DeprecatedApi.md#get_signed_urls_for_dataset_write_deprecated_get) | **GET** /api/2.0/mlflow/mlfoundry-artifacts/datasets/get-signed-urls-for-write | Get Signed Urls For Dataset Write Deprecated
|
|
72
|
+
*ExperimentsApi* | [**create_experiment_post**](truefoundry/ml/_autogen/client/docs/ExperimentsApi.md#create_experiment_post) | **POST** /api/2.0/mlflow/experiments/create | Create Experiment
|
|
73
|
+
*ExperimentsApi* | [**delete_experiment_post**](truefoundry/ml/_autogen/client/docs/ExperimentsApi.md#delete_experiment_post) | **POST** /api/2.0/mlflow/experiments/delete | Delete Experiment
|
|
74
|
+
*ExperimentsApi* | [**get_experiment_by_name_get**](truefoundry/ml/_autogen/client/docs/ExperimentsApi.md#get_experiment_by_name_get) | **GET** /api/2.0/mlflow/experiments/get-by-name | Get Experiment By Name
|
|
75
|
+
*ExperimentsApi* | [**get_experiment_get**](truefoundry/ml/_autogen/client/docs/ExperimentsApi.md#get_experiment_get) | **GET** /api/2.0/mlflow/experiments/get | Get Experiment
|
|
76
|
+
*ExperimentsApi* | [**hard_delete_experiment_post**](truefoundry/ml/_autogen/client/docs/ExperimentsApi.md#hard_delete_experiment_post) | **POST** /api/2.0/mlflow/experiments/hard-delete | Hard Delete Experiment
|
|
77
|
+
*ExperimentsApi* | [**list_experiment_columns_get**](truefoundry/ml/_autogen/client/docs/ExperimentsApi.md#list_experiment_columns_get) | **GET** /api/2.0/mlflow/experiments/columns | List Experiment Columns
|
|
78
|
+
*ExperimentsApi* | [**list_experiments_get**](truefoundry/ml/_autogen/client/docs/ExperimentsApi.md#list_experiments_get) | **GET** /api/2.0/mlflow/experiments/list | List Experiments
|
|
79
|
+
*ExperimentsApi* | [**restore_experiment_post**](truefoundry/ml/_autogen/client/docs/ExperimentsApi.md#restore_experiment_post) | **POST** /api/2.0/mlflow/experiments/restore | Restore Experiment
|
|
80
|
+
*ExperimentsApi* | [**set_experiment_tag_post**](truefoundry/ml/_autogen/client/docs/ExperimentsApi.md#set_experiment_tag_post) | **POST** /api/2.0/mlflow/experiments/set-experiment-tag | Set Experiment Tag
|
|
81
|
+
*ExperimentsApi* | [**update_experiment_post**](truefoundry/ml/_autogen/client/docs/ExperimentsApi.md#update_experiment_post) | **POST** /api/2.0/mlflow/experiments/update | Update Experiment
|
|
82
|
+
*GenerateCodeSnippetApi* | [**generate_py_development_config_post**](truefoundry/ml/_autogen/client/docs/GenerateCodeSnippetApi.md#generate_py_development_config_post) | **POST** /api/2.0/mlflow/generate-code-snippet/application | Generate Py Development Config
|
|
83
|
+
*GenerateCodeSnippetApi* | [**trigger_job_run_post**](truefoundry/ml/_autogen/client/docs/GenerateCodeSnippetApi.md#trigger_job_run_post) | **POST** /api/2.0/mlflow/generate-code-snippet/trigger-job-run | Trigger Job Run
|
|
84
|
+
*GenerateCodeSnippetApi* | [**trigger_workflow_task_config_post**](truefoundry/ml/_autogen/client/docs/GenerateCodeSnippetApi.md#trigger_workflow_task_config_post) | **POST** /api/2.0/mlflow/generate-code-snippet/workflow-task-config | Trigger Workflow Task Config
|
|
85
|
+
*HealthApi* | [**health_get**](truefoundry/ml/_autogen/client/docs/HealthApi.md#health_get) | **GET** /health | Health
|
|
86
|
+
*HealthApi* | [**serve_get**](truefoundry/ml/_autogen/client/docs/HealthApi.md#serve_get) | **GET** / | Serve
|
|
87
|
+
*MetricsApi* | [**get_metric_history_get**](truefoundry/ml/_autogen/client/docs/MetricsApi.md#get_metric_history_get) | **GET** /api/2.0/mlflow/metrics/get-history | Get Metric History
|
|
88
|
+
*MetricsApi* | [**list_metric_history_post**](truefoundry/ml/_autogen/client/docs/MetricsApi.md#list_metric_history_post) | **POST** /api/2.0/mlflow/metrics/list-history | List Metric History
|
|
89
|
+
*MlfoundryArtifactsApi* | [**apply_manifest_put**](truefoundry/ml/_autogen/client/docs/MlfoundryArtifactsApi.md#apply_manifest_put) | **PUT** /api/2.0/mlflow/mlfoundry-artifacts/apply | Apply Manifest
|
|
90
|
+
*MlfoundryArtifactsApi* | [**authorize_user_for_model_post**](truefoundry/ml/_autogen/client/docs/MlfoundryArtifactsApi.md#authorize_user_for_model_post) | **POST** /api/2.0/mlflow/mlfoundry-artifacts/models/authorize | Authorize User For Model
|
|
91
|
+
*MlfoundryArtifactsApi* | [**authorize_user_for_model_version_post**](truefoundry/ml/_autogen/client/docs/MlfoundryArtifactsApi.md#authorize_user_for_model_version_post) | **POST** /api/2.0/mlflow/mlfoundry-artifacts/model-versions/authorize | Authorize User For Model Version
|
|
92
|
+
*MlfoundryArtifactsApi* | [**create_artifact_post**](truefoundry/ml/_autogen/client/docs/MlfoundryArtifactsApi.md#create_artifact_post) | **POST** /api/2.0/mlflow/mlfoundry-artifacts/artifacts/create | Create Artifact
|
|
93
|
+
*MlfoundryArtifactsApi* | [**create_artifact_version_post**](truefoundry/ml/_autogen/client/docs/MlfoundryArtifactsApi.md#create_artifact_version_post) | **POST** /api/2.0/mlflow/mlfoundry-artifacts/artifact-versions/create | Create Artifact Version
|
|
94
|
+
*MlfoundryArtifactsApi* | [**create_dataset_post**](truefoundry/ml/_autogen/client/docs/MlfoundryArtifactsApi.md#create_dataset_post) | **POST** /api/2.0/mlflow/mlfoundry-artifacts/datasets/create | Create Dataset
|
|
95
|
+
*MlfoundryArtifactsApi* | [**create_model_version_post**](truefoundry/ml/_autogen/client/docs/MlfoundryArtifactsApi.md#create_model_version_post) | **POST** /api/2.0/mlflow/mlfoundry-artifacts/model-versions/create | Create Model Version
|
|
96
|
+
*MlfoundryArtifactsApi* | [**create_multi_part_upload_post**](truefoundry/ml/_autogen/client/docs/MlfoundryArtifactsApi.md#create_multi_part_upload_post) | **POST** /api/2.0/mlflow/mlfoundry-artifacts/artifact-versions/multi-part-upload/create | Create Multi Part Upload
|
|
97
|
+
*MlfoundryArtifactsApi* | [**create_multipart_upload_for_dataset_post**](truefoundry/ml/_autogen/client/docs/MlfoundryArtifactsApi.md#create_multipart_upload_for_dataset_post) | **POST** /api/2.0/mlflow/mlfoundry-artifacts/datasets/multi-part-upload/create | Create Multipart Upload For Dataset
|
|
98
|
+
*MlfoundryArtifactsApi* | [**delete_artifact_post**](truefoundry/ml/_autogen/client/docs/MlfoundryArtifactsApi.md#delete_artifact_post) | **POST** /api/2.0/mlflow/mlfoundry-artifacts/artifact/delete | Delete Artifact
|
|
99
|
+
*MlfoundryArtifactsApi* | [**delete_artifact_version_post**](truefoundry/ml/_autogen/client/docs/MlfoundryArtifactsApi.md#delete_artifact_version_post) | **POST** /api/2.0/mlflow/mlfoundry-artifacts/artifact-versions/delete | Delete Artifact Version
|
|
100
|
+
*MlfoundryArtifactsApi* | [**delete_dataset_post**](truefoundry/ml/_autogen/client/docs/MlfoundryArtifactsApi.md#delete_dataset_post) | **POST** /api/2.0/mlflow/mlfoundry-artifacts/datasets/delete | Delete Dataset
|
|
101
|
+
*MlfoundryArtifactsApi* | [**delete_files_for_dataset_delete**](truefoundry/ml/_autogen/client/docs/MlfoundryArtifactsApi.md#delete_files_for_dataset_delete) | **DELETE** /api/2.0/mlflow/mlfoundry-artifacts/datasets/files/ | Delete Files For Dataset
|
|
102
|
+
*MlfoundryArtifactsApi* | [**delete_model_version_post**](truefoundry/ml/_autogen/client/docs/MlfoundryArtifactsApi.md#delete_model_version_post) | **POST** /api/2.0/mlflow/mlfoundry-artifacts/model-versions/delete | Delete Model Version
|
|
103
|
+
*MlfoundryArtifactsApi* | [**export_deployment_files_by_fqn_post**](truefoundry/ml/_autogen/client/docs/MlfoundryArtifactsApi.md#export_deployment_files_by_fqn_post) | **POST** /api/2.0/mlflow/mlfoundry-artifacts/model-versions/export-deployment-files-by-fqn | Export Deployment Files By Fqn
|
|
104
|
+
*MlfoundryArtifactsApi* | [**finalize_artifact_version_post**](truefoundry/ml/_autogen/client/docs/MlfoundryArtifactsApi.md#finalize_artifact_version_post) | **POST** /api/2.0/mlflow/mlfoundry-artifacts/artifact-versions/finalize | Finalize Artifact Version
|
|
105
|
+
*MlfoundryArtifactsApi* | [**get_artifact_by_fqn_get**](truefoundry/ml/_autogen/client/docs/MlfoundryArtifactsApi.md#get_artifact_by_fqn_get) | **GET** /api/2.0/mlflow/mlfoundry-artifacts/artifacts/get-by-fqn | Get Artifact By Fqn
|
|
106
|
+
*MlfoundryArtifactsApi* | [**get_artifact_by_id_get**](truefoundry/ml/_autogen/client/docs/MlfoundryArtifactsApi.md#get_artifact_by_id_get) | **GET** /api/2.0/mlflow/mlfoundry-artifacts/artifacts/get | Get Artifact By Id
|
|
107
|
+
*MlfoundryArtifactsApi* | [**get_artifact_version_by_fqn_get**](truefoundry/ml/_autogen/client/docs/MlfoundryArtifactsApi.md#get_artifact_version_by_fqn_get) | **GET** /api/2.0/mlflow/mlfoundry-artifacts/artifact-versions/get-by-fqn | Get Artifact Version By Fqn
|
|
108
|
+
*MlfoundryArtifactsApi* | [**get_artifact_version_by_id_get**](truefoundry/ml/_autogen/client/docs/MlfoundryArtifactsApi.md#get_artifact_version_by_id_get) | **GET** /api/2.0/mlflow/mlfoundry-artifacts/artifact-versions/get | Get Artifact Version By Id
|
|
109
|
+
*MlfoundryArtifactsApi* | [**get_artifact_version_by_name_get**](truefoundry/ml/_autogen/client/docs/MlfoundryArtifactsApi.md#get_artifact_version_by_name_get) | **GET** /api/2.0/mlflow/mlfoundry-artifacts/artifact-versions/get-by-name | Get Artifact Version By Name
|
|
110
|
+
*MlfoundryArtifactsApi* | [**get_dataset_by_fqn_get**](truefoundry/ml/_autogen/client/docs/MlfoundryArtifactsApi.md#get_dataset_by_fqn_get) | **GET** /api/2.0/mlflow/mlfoundry-artifacts/datasets/get-by-fqn | Get Dataset By Fqn
|
|
111
|
+
*MlfoundryArtifactsApi* | [**get_dataset_get**](truefoundry/ml/_autogen/client/docs/MlfoundryArtifactsApi.md#get_dataset_get) | **GET** /api/2.0/mlflow/mlfoundry-artifacts/datasets/get | Get Dataset
|
|
112
|
+
*MlfoundryArtifactsApi* | [**get_model_by_fqn_get**](truefoundry/ml/_autogen/client/docs/MlfoundryArtifactsApi.md#get_model_by_fqn_get) | **GET** /api/2.0/mlflow/mlfoundry-artifacts/models/get-by-fqn | Get Model By Fqn
|
|
113
|
+
*MlfoundryArtifactsApi* | [**get_model_by_name_get**](truefoundry/ml/_autogen/client/docs/MlfoundryArtifactsApi.md#get_model_by_name_get) | **GET** /api/2.0/mlflow/mlfoundry-artifacts/models/get-by-name | Get Model By Name
|
|
114
|
+
*MlfoundryArtifactsApi* | [**get_model_get**](truefoundry/ml/_autogen/client/docs/MlfoundryArtifactsApi.md#get_model_get) | **GET** /api/2.0/mlflow/mlfoundry-artifacts/models/get | Get Model
|
|
115
|
+
*MlfoundryArtifactsApi* | [**get_model_version_by_fqn_get**](truefoundry/ml/_autogen/client/docs/MlfoundryArtifactsApi.md#get_model_version_by_fqn_get) | **GET** /api/2.0/mlflow/mlfoundry-artifacts/model-versions/get-by-fqn | Get Model Version By Fqn
|
|
116
|
+
*MlfoundryArtifactsApi* | [**get_model_version_by_name_get**](truefoundry/ml/_autogen/client/docs/MlfoundryArtifactsApi.md#get_model_version_by_name_get) | **GET** /api/2.0/mlflow/mlfoundry-artifacts/model-versions/get-by-name | Get Model Version By Name
|
|
117
|
+
*MlfoundryArtifactsApi* | [**get_model_version_get**](truefoundry/ml/_autogen/client/docs/MlfoundryArtifactsApi.md#get_model_version_get) | **GET** /api/2.0/mlflow/mlfoundry-artifacts/model-versions/get | Get Model Version
|
|
118
|
+
*MlfoundryArtifactsApi* | [**get_signed_urls_dataset_read_post**](truefoundry/ml/_autogen/client/docs/MlfoundryArtifactsApi.md#get_signed_urls_dataset_read_post) | **POST** /api/2.0/mlflow/mlfoundry-artifacts/datasets/get-signed-urls-for-read | Get Signed Urls Dataset Read
|
|
119
|
+
*MlfoundryArtifactsApi* | [**get_signed_urls_for_dataset_write_post**](truefoundry/ml/_autogen/client/docs/MlfoundryArtifactsApi.md#get_signed_urls_for_dataset_write_post) | **POST** /api/2.0/mlflow/mlfoundry-artifacts/datasets/get-signed-urls-for-write | Get Signed Urls For Dataset Write
|
|
120
|
+
*MlfoundryArtifactsApi* | [**get_signed_urls_for_read_post**](truefoundry/ml/_autogen/client/docs/MlfoundryArtifactsApi.md#get_signed_urls_for_read_post) | **POST** /api/2.0/mlflow/mlfoundry-artifacts/artifact-versions/get-signed-urls-for-read | Get Signed Urls For Read
|
|
121
|
+
*MlfoundryArtifactsApi* | [**get_signed_urls_for_write_post**](truefoundry/ml/_autogen/client/docs/MlfoundryArtifactsApi.md#get_signed_urls_for_write_post) | **POST** /api/2.0/mlflow/mlfoundry-artifacts/artifact-versions/get-signed-urls-for-write | Get Signed Urls For Write
|
|
122
|
+
*MlfoundryArtifactsApi* | [**get_version_aliases_for_artifact_get**](truefoundry/ml/_autogen/client/docs/MlfoundryArtifactsApi.md#get_version_aliases_for_artifact_get) | **GET** /api/2.0/mlflow/mlfoundry-artifacts/artifacts/get-version-aliases | Get Version Aliases For Artifact
|
|
123
|
+
*MlfoundryArtifactsApi* | [**list_artifact_versions_post**](truefoundry/ml/_autogen/client/docs/MlfoundryArtifactsApi.md#list_artifact_versions_post) | **POST** /api/2.0/mlflow/mlfoundry-artifacts/artifact-versions/list | List Artifact Versions
|
|
124
|
+
*MlfoundryArtifactsApi* | [**list_artifacts_post**](truefoundry/ml/_autogen/client/docs/MlfoundryArtifactsApi.md#list_artifacts_post) | **POST** /api/2.0/mlflow/mlfoundry-artifacts/artifacts/list | List Artifacts
|
|
125
|
+
*MlfoundryArtifactsApi* | [**list_datasets_post**](truefoundry/ml/_autogen/client/docs/MlfoundryArtifactsApi.md#list_datasets_post) | **POST** /api/2.0/mlflow/mlfoundry-artifacts/datasets/list | List Datasets
|
|
126
|
+
*MlfoundryArtifactsApi* | [**list_files_for_artifact_version_post**](truefoundry/ml/_autogen/client/docs/MlfoundryArtifactsApi.md#list_files_for_artifact_version_post) | **POST** /api/2.0/mlflow/mlfoundry-artifacts/artifact-versions/files/list | List Files For Artifact Version
|
|
127
|
+
*MlfoundryArtifactsApi* | [**list_files_for_dataset_post**](truefoundry/ml/_autogen/client/docs/MlfoundryArtifactsApi.md#list_files_for_dataset_post) | **POST** /api/2.0/mlflow/mlfoundry-artifacts/datasets/files/list | List Files For Dataset
|
|
128
|
+
*MlfoundryArtifactsApi* | [**list_model_versions_post**](truefoundry/ml/_autogen/client/docs/MlfoundryArtifactsApi.md#list_model_versions_post) | **POST** /api/2.0/mlflow/mlfoundry-artifacts/model-versions/list | List Model Versions
|
|
129
|
+
*MlfoundryArtifactsApi* | [**list_models_post**](truefoundry/ml/_autogen/client/docs/MlfoundryArtifactsApi.md#list_models_post) | **POST** /api/2.0/mlflow/mlfoundry-artifacts/models/list | List Models
|
|
130
|
+
*MlfoundryArtifactsApi* | [**notify_failure_post**](truefoundry/ml/_autogen/client/docs/MlfoundryArtifactsApi.md#notify_failure_post) | **POST** /api/2.0/mlflow/mlfoundry-artifacts/artifact-versions/notify-failure | Notify Failure
|
|
131
|
+
*MlfoundryArtifactsApi* | [**resolve_agent_get**](truefoundry/ml/_autogen/client/docs/MlfoundryArtifactsApi.md#resolve_agent_get) | **GET** /api/2.0/mlflow/mlfoundry-artifacts/agent/resolve | Resolve Agent
|
|
132
|
+
*MlfoundryArtifactsApi* | [**update_artifact_version_post**](truefoundry/ml/_autogen/client/docs/MlfoundryArtifactsApi.md#update_artifact_version_post) | **POST** /api/2.0/mlflow/mlfoundry-artifacts/artifact-versions/update | Update Artifact Version
|
|
133
|
+
*MlfoundryArtifactsApi* | [**update_dataset_post**](truefoundry/ml/_autogen/client/docs/MlfoundryArtifactsApi.md#update_dataset_post) | **POST** /api/2.0/mlflow/mlfoundry-artifacts/datasets/update | Update Dataset
|
|
134
|
+
*MlfoundryArtifactsApi* | [**update_model_version_post**](truefoundry/ml/_autogen/client/docs/MlfoundryArtifactsApi.md#update_model_version_post) | **POST** /api/2.0/mlflow/mlfoundry-artifacts/model-versions/update | Update Model Version
|
|
135
|
+
*MlfoundryArtifactsApi* | [**validate_external_storage_root_path_post**](truefoundry/ml/_autogen/client/docs/MlfoundryArtifactsApi.md#validate_external_storage_root_path_post) | **POST** /api/2.0/mlflow/mlfoundry-artifacts/artifact-versions/validate-storage-root | Validate External Storage Root Path
|
|
136
|
+
*RunArtifactsApi* | [**list_run_artifacts_get**](truefoundry/ml/_autogen/client/docs/RunArtifactsApi.md#list_run_artifacts_get) | **GET** /api/2.0/mlflow/artifacts/list | List Run Artifacts
|
|
137
|
+
*RunsApi* | [**create_run_post**](truefoundry/ml/_autogen/client/docs/RunsApi.md#create_run_post) | **POST** /api/2.0/mlflow/runs/create | Create Run
|
|
138
|
+
*RunsApi* | [**delete_run_post**](truefoundry/ml/_autogen/client/docs/RunsApi.md#delete_run_post) | **POST** /api/2.0/mlflow/runs/delete | Delete Run
|
|
139
|
+
*RunsApi* | [**delete_tag_post**](truefoundry/ml/_autogen/client/docs/RunsApi.md#delete_tag_post) | **POST** /api/2.0/mlflow/runs/delete-tag | Delete Tag
|
|
140
|
+
*RunsApi* | [**get_run_by_fqn_get**](truefoundry/ml/_autogen/client/docs/RunsApi.md#get_run_by_fqn_get) | **GET** /api/2.0/mlflow/runs/get-by-fqn | Get Run By Fqn
|
|
141
|
+
*RunsApi* | [**get_run_by_name_get**](truefoundry/ml/_autogen/client/docs/RunsApi.md#get_run_by_name_get) | **GET** /api/2.0/mlflow/runs/get-by-name | Get Run By Name
|
|
142
|
+
*RunsApi* | [**get_run_get**](truefoundry/ml/_autogen/client/docs/RunsApi.md#get_run_get) | **GET** /api/2.0/mlflow/runs/get | Get Run
|
|
143
|
+
*RunsApi* | [**hard_delete_run_post**](truefoundry/ml/_autogen/client/docs/RunsApi.md#hard_delete_run_post) | **POST** /api/2.0/mlflow/runs/hard-delete | Hard Delete Run
|
|
144
|
+
*RunsApi* | [**latest_run_log_get**](truefoundry/ml/_autogen/client/docs/RunsApi.md#latest_run_log_get) | **GET** /api/2.0/mlflow/runs/run-logs/latest-run-log | Latest Run Log
|
|
145
|
+
*RunsApi* | [**list_latest_run_logs_get**](truefoundry/ml/_autogen/client/docs/RunsApi.md#list_latest_run_logs_get) | **GET** /api/2.0/mlflow/runs/run-logs/list-latest | List Latest Run Logs
|
|
146
|
+
*RunsApi* | [**list_run_logs_get**](truefoundry/ml/_autogen/client/docs/RunsApi.md#list_run_logs_get) | **GET** /api/2.0/mlflow/runs/run-logs/list | List Run Logs
|
|
147
|
+
*RunsApi* | [**log_metric_post**](truefoundry/ml/_autogen/client/docs/RunsApi.md#log_metric_post) | **POST** /api/2.0/mlflow/runs/log-metric | Log Metric
|
|
148
|
+
*RunsApi* | [**log_parameter_post**](truefoundry/ml/_autogen/client/docs/RunsApi.md#log_parameter_post) | **POST** /api/2.0/mlflow/runs/log-parameter | Log Parameter
|
|
149
|
+
*RunsApi* | [**log_run_batch_post**](truefoundry/ml/_autogen/client/docs/RunsApi.md#log_run_batch_post) | **POST** /api/2.0/mlflow/runs/log-batch | Log Run Batch
|
|
150
|
+
*RunsApi* | [**restore_run_post**](truefoundry/ml/_autogen/client/docs/RunsApi.md#restore_run_post) | **POST** /api/2.0/mlflow/runs/restore | Restore Run
|
|
151
|
+
*RunsApi* | [**run_logs_post**](truefoundry/ml/_autogen/client/docs/RunsApi.md#run_logs_post) | **POST** /api/2.0/mlflow/runs/run-logs | Run Logs
|
|
152
|
+
*RunsApi* | [**search_runs_post**](truefoundry/ml/_autogen/client/docs/RunsApi.md#search_runs_post) | **POST** /api/2.0/mlflow/runs/search | Search Runs
|
|
153
|
+
*RunsApi* | [**set_tag_request_post**](truefoundry/ml/_autogen/client/docs/RunsApi.md#set_tag_request_post) | **POST** /api/2.0/mlflow/runs/set-tag | Set Tag Request
|
|
154
|
+
*RunsApi* | [**update_run_post**](truefoundry/ml/_autogen/client/docs/RunsApi.md#update_run_post) | **POST** /api/2.0/mlflow/runs/update | Update Run
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
## Documentation For Models
|
|
158
|
+
|
|
159
|
+
- [AgentApp](truefoundry/ml/_autogen/client/docs/AgentApp.md)
|
|
160
|
+
- [AgentManifest](truefoundry/ml/_autogen/client/docs/AgentManifest.md)
|
|
161
|
+
- [AgentOpenAPIToolManifest](truefoundry/ml/_autogen/client/docs/AgentOpenAPIToolManifest.md)
|
|
162
|
+
- [AgentOpenAPIToolWithFQN](truefoundry/ml/_autogen/client/docs/AgentOpenAPIToolWithFQN.md)
|
|
163
|
+
- [AgentWithFQN](truefoundry/ml/_autogen/client/docs/AgentWithFQN.md)
|
|
164
|
+
- [ApplyRequestDto](truefoundry/ml/_autogen/client/docs/ApplyRequestDto.md)
|
|
165
|
+
- [ApplyResponseDto](truefoundry/ml/_autogen/client/docs/ApplyResponseDto.md)
|
|
166
|
+
- [ArtifactDto](truefoundry/ml/_autogen/client/docs/ArtifactDto.md)
|
|
167
|
+
- [ArtifactManifest](truefoundry/ml/_autogen/client/docs/ArtifactManifest.md)
|
|
168
|
+
- [ArtifactPath](truefoundry/ml/_autogen/client/docs/ArtifactPath.md)
|
|
169
|
+
- [ArtifactResponseDto](truefoundry/ml/_autogen/client/docs/ArtifactResponseDto.md)
|
|
170
|
+
- [ArtifactType](truefoundry/ml/_autogen/client/docs/ArtifactType.md)
|
|
171
|
+
- [ArtifactVersionDto](truefoundry/ml/_autogen/client/docs/ArtifactVersionDto.md)
|
|
172
|
+
- [ArtifactVersionResponseDto](truefoundry/ml/_autogen/client/docs/ArtifactVersionResponseDto.md)
|
|
173
|
+
- [ArtifactVersionSerializationFormat](truefoundry/ml/_autogen/client/docs/ArtifactVersionSerializationFormat.md)
|
|
174
|
+
- [ArtifactVersionStatus](truefoundry/ml/_autogen/client/docs/ArtifactVersionStatus.md)
|
|
175
|
+
- [AssistantMessage](truefoundry/ml/_autogen/client/docs/AssistantMessage.md)
|
|
176
|
+
- [AuthorizeUserForModelRequestDto](truefoundry/ml/_autogen/client/docs/AuthorizeUserForModelRequestDto.md)
|
|
177
|
+
- [AuthorizeUserForModelVersionRequestDto](truefoundry/ml/_autogen/client/docs/AuthorizeUserForModelVersionRequestDto.md)
|
|
178
|
+
- [BlobStorageReference](truefoundry/ml/_autogen/client/docs/BlobStorageReference.md)
|
|
179
|
+
- [BodyGetSearchRunsGet](truefoundry/ml/_autogen/client/docs/BodyGetSearchRunsGet.md)
|
|
180
|
+
- [ChatPromptManifest](truefoundry/ml/_autogen/client/docs/ChatPromptManifest.md)
|
|
181
|
+
- [ChatPromptManifestMessagesInner](truefoundry/ml/_autogen/client/docs/ChatPromptManifestMessagesInner.md)
|
|
182
|
+
- [ColumnsDto](truefoundry/ml/_autogen/client/docs/ColumnsDto.md)
|
|
183
|
+
- [Command](truefoundry/ml/_autogen/client/docs/Command.md)
|
|
184
|
+
- [Content](truefoundry/ml/_autogen/client/docs/Content.md)
|
|
185
|
+
- [Content1](truefoundry/ml/_autogen/client/docs/Content1.md)
|
|
186
|
+
- [Content2](truefoundry/ml/_autogen/client/docs/Content2.md)
|
|
187
|
+
- [Content2AnyOfInner](truefoundry/ml/_autogen/client/docs/Content2AnyOfInner.md)
|
|
188
|
+
- [CreateArtifactRequestDto](truefoundry/ml/_autogen/client/docs/CreateArtifactRequestDto.md)
|
|
189
|
+
- [CreateArtifactResponseDto](truefoundry/ml/_autogen/client/docs/CreateArtifactResponseDto.md)
|
|
190
|
+
- [CreateArtifactVersionRequestDto](truefoundry/ml/_autogen/client/docs/CreateArtifactVersionRequestDto.md)
|
|
191
|
+
- [CreateArtifactVersionResponseDto](truefoundry/ml/_autogen/client/docs/CreateArtifactVersionResponseDto.md)
|
|
192
|
+
- [CreateDatasetRequestDto](truefoundry/ml/_autogen/client/docs/CreateDatasetRequestDto.md)
|
|
193
|
+
- [CreateExperimentRequestDto](truefoundry/ml/_autogen/client/docs/CreateExperimentRequestDto.md)
|
|
194
|
+
- [CreateExperimentResponseDto](truefoundry/ml/_autogen/client/docs/CreateExperimentResponseDto.md)
|
|
195
|
+
- [CreateModelVersionRequestDto](truefoundry/ml/_autogen/client/docs/CreateModelVersionRequestDto.md)
|
|
196
|
+
- [CreateMultiPartUploadForDatasetRequestDto](truefoundry/ml/_autogen/client/docs/CreateMultiPartUploadForDatasetRequestDto.md)
|
|
197
|
+
- [CreateMultiPartUploadForDatasetResponseDto](truefoundry/ml/_autogen/client/docs/CreateMultiPartUploadForDatasetResponseDto.md)
|
|
198
|
+
- [CreateMultiPartUploadRequestDto](truefoundry/ml/_autogen/client/docs/CreateMultiPartUploadRequestDto.md)
|
|
199
|
+
- [CreatePythonDeploymentConfigRequestDto](truefoundry/ml/_autogen/client/docs/CreatePythonDeploymentConfigRequestDto.md)
|
|
200
|
+
- [CreatePythonDeploymentConfigResponseDto](truefoundry/ml/_autogen/client/docs/CreatePythonDeploymentConfigResponseDto.md)
|
|
201
|
+
- [CreateRunRequestDto](truefoundry/ml/_autogen/client/docs/CreateRunRequestDto.md)
|
|
202
|
+
- [CreateRunResponseDto](truefoundry/ml/_autogen/client/docs/CreateRunResponseDto.md)
|
|
203
|
+
- [CreateWorkflowTaskConfigRequestDto](truefoundry/ml/_autogen/client/docs/CreateWorkflowTaskConfigRequestDto.md)
|
|
204
|
+
- [DataDirectoryManifest](truefoundry/ml/_autogen/client/docs/DataDirectoryManifest.md)
|
|
205
|
+
- [DatasetDto](truefoundry/ml/_autogen/client/docs/DatasetDto.md)
|
|
206
|
+
- [DatasetResponseDto](truefoundry/ml/_autogen/client/docs/DatasetResponseDto.md)
|
|
207
|
+
- [DeleteArtifactVersionsRequestDto](truefoundry/ml/_autogen/client/docs/DeleteArtifactVersionsRequestDto.md)
|
|
208
|
+
- [DeleteDatasetRequestDto](truefoundry/ml/_autogen/client/docs/DeleteDatasetRequestDto.md)
|
|
209
|
+
- [DeleteFilesForDatasetRequestDto](truefoundry/ml/_autogen/client/docs/DeleteFilesForDatasetRequestDto.md)
|
|
210
|
+
- [DeleteModelVersionRequestDto](truefoundry/ml/_autogen/client/docs/DeleteModelVersionRequestDto.md)
|
|
211
|
+
- [DeleteRunRequest](truefoundry/ml/_autogen/client/docs/DeleteRunRequest.md)
|
|
212
|
+
- [DeleteTagRequestDto](truefoundry/ml/_autogen/client/docs/DeleteTagRequestDto.md)
|
|
213
|
+
- [ExperimentDto](truefoundry/ml/_autogen/client/docs/ExperimentDto.md)
|
|
214
|
+
- [ExperimentIdRequestDto](truefoundry/ml/_autogen/client/docs/ExperimentIdRequestDto.md)
|
|
215
|
+
- [ExperimentResponseDto](truefoundry/ml/_autogen/client/docs/ExperimentResponseDto.md)
|
|
216
|
+
- [ExperimentTagDto](truefoundry/ml/_autogen/client/docs/ExperimentTagDto.md)
|
|
217
|
+
- [ExportDeploymentFilesRequestDto](truefoundry/ml/_autogen/client/docs/ExportDeploymentFilesRequestDto.md)
|
|
218
|
+
- [ExternalBlobStorageSource](truefoundry/ml/_autogen/client/docs/ExternalBlobStorageSource.md)
|
|
219
|
+
- [FastAIFramework](truefoundry/ml/_autogen/client/docs/FastAIFramework.md)
|
|
220
|
+
- [FileInfoDto](truefoundry/ml/_autogen/client/docs/FileInfoDto.md)
|
|
221
|
+
- [FinalizeArtifactVersionRequestDto](truefoundry/ml/_autogen/client/docs/FinalizeArtifactVersionRequestDto.md)
|
|
222
|
+
- [Framework](truefoundry/ml/_autogen/client/docs/Framework.md)
|
|
223
|
+
- [GetArtifactVersionAliasesResponseDto](truefoundry/ml/_autogen/client/docs/GetArtifactVersionAliasesResponseDto.md)
|
|
224
|
+
- [GetExperimentResponseDto](truefoundry/ml/_autogen/client/docs/GetExperimentResponseDto.md)
|
|
225
|
+
- [GetLatestRunLogResponseDto](truefoundry/ml/_autogen/client/docs/GetLatestRunLogResponseDto.md)
|
|
226
|
+
- [GetMetricHistoryResponse](truefoundry/ml/_autogen/client/docs/GetMetricHistoryResponse.md)
|
|
227
|
+
- [GetSignedURLForDatasetWriteRequestDto](truefoundry/ml/_autogen/client/docs/GetSignedURLForDatasetWriteRequestDto.md)
|
|
228
|
+
- [GetSignedURLsForArtifactVersionReadRequestDto](truefoundry/ml/_autogen/client/docs/GetSignedURLsForArtifactVersionReadRequestDto.md)
|
|
229
|
+
- [GetSignedURLsForArtifactVersionReadResponseDto](truefoundry/ml/_autogen/client/docs/GetSignedURLsForArtifactVersionReadResponseDto.md)
|
|
230
|
+
- [GetSignedURLsForArtifactVersionWriteRequestDto](truefoundry/ml/_autogen/client/docs/GetSignedURLsForArtifactVersionWriteRequestDto.md)
|
|
231
|
+
- [GetSignedURLsForArtifactVersionWriteResponseDto](truefoundry/ml/_autogen/client/docs/GetSignedURLsForArtifactVersionWriteResponseDto.md)
|
|
232
|
+
- [GetSignedURLsForDatasetReadRequestDto](truefoundry/ml/_autogen/client/docs/GetSignedURLsForDatasetReadRequestDto.md)
|
|
233
|
+
- [GetSignedURLsForDatasetReadResponseDto](truefoundry/ml/_autogen/client/docs/GetSignedURLsForDatasetReadResponseDto.md)
|
|
234
|
+
- [GetSignedURLsForDatasetWriteResponseDto](truefoundry/ml/_autogen/client/docs/GetSignedURLsForDatasetWriteResponseDto.md)
|
|
235
|
+
- [GetTenantIdResponseDto](truefoundry/ml/_autogen/client/docs/GetTenantIdResponseDto.md)
|
|
236
|
+
- [GluonFramework](truefoundry/ml/_autogen/client/docs/GluonFramework.md)
|
|
237
|
+
- [H2OFramework](truefoundry/ml/_autogen/client/docs/H2OFramework.md)
|
|
238
|
+
- [HTTPValidationError](truefoundry/ml/_autogen/client/docs/HTTPValidationError.md)
|
|
239
|
+
- [ImageContentPart](truefoundry/ml/_autogen/client/docs/ImageContentPart.md)
|
|
240
|
+
- [ImageUrl](truefoundry/ml/_autogen/client/docs/ImageUrl.md)
|
|
241
|
+
- [InferMethodName](truefoundry/ml/_autogen/client/docs/InferMethodName.md)
|
|
242
|
+
- [KerasFramework](truefoundry/ml/_autogen/client/docs/KerasFramework.md)
|
|
243
|
+
- [LatestRunLogDto](truefoundry/ml/_autogen/client/docs/LatestRunLogDto.md)
|
|
244
|
+
- [LibraryName](truefoundry/ml/_autogen/client/docs/LibraryName.md)
|
|
245
|
+
- [LightGBMFramework](truefoundry/ml/_autogen/client/docs/LightGBMFramework.md)
|
|
246
|
+
- [ListArtifactVersionsRequestDto](truefoundry/ml/_autogen/client/docs/ListArtifactVersionsRequestDto.md)
|
|
247
|
+
- [ListArtifactVersionsResponseDto](truefoundry/ml/_autogen/client/docs/ListArtifactVersionsResponseDto.md)
|
|
248
|
+
- [ListArtifactsRequestDto](truefoundry/ml/_autogen/client/docs/ListArtifactsRequestDto.md)
|
|
249
|
+
- [ListArtifactsResponseDto](truefoundry/ml/_autogen/client/docs/ListArtifactsResponseDto.md)
|
|
250
|
+
- [ListColumsResponseDto](truefoundry/ml/_autogen/client/docs/ListColumsResponseDto.md)
|
|
251
|
+
- [ListDatasetsRequestDto](truefoundry/ml/_autogen/client/docs/ListDatasetsRequestDto.md)
|
|
252
|
+
- [ListDatasetsResponseDto](truefoundry/ml/_autogen/client/docs/ListDatasetsResponseDto.md)
|
|
253
|
+
- [ListExperimentsResponseDto](truefoundry/ml/_autogen/client/docs/ListExperimentsResponseDto.md)
|
|
254
|
+
- [ListFilesForArtifactVersionRequestDto](truefoundry/ml/_autogen/client/docs/ListFilesForArtifactVersionRequestDto.md)
|
|
255
|
+
- [ListFilesForArtifactVersionsResponseDto](truefoundry/ml/_autogen/client/docs/ListFilesForArtifactVersionsResponseDto.md)
|
|
256
|
+
- [ListFilesForDatasetRequestDto](truefoundry/ml/_autogen/client/docs/ListFilesForDatasetRequestDto.md)
|
|
257
|
+
- [ListFilesForDatasetResponseDto](truefoundry/ml/_autogen/client/docs/ListFilesForDatasetResponseDto.md)
|
|
258
|
+
- [ListLatestRunLogsResponseDto](truefoundry/ml/_autogen/client/docs/ListLatestRunLogsResponseDto.md)
|
|
259
|
+
- [ListMetricHistoryRequestDto](truefoundry/ml/_autogen/client/docs/ListMetricHistoryRequestDto.md)
|
|
260
|
+
- [ListMetricHistoryResponseDto](truefoundry/ml/_autogen/client/docs/ListMetricHistoryResponseDto.md)
|
|
261
|
+
- [ListModelVersionResponseDto](truefoundry/ml/_autogen/client/docs/ListModelVersionResponseDto.md)
|
|
262
|
+
- [ListModelVersionsRequestDto](truefoundry/ml/_autogen/client/docs/ListModelVersionsRequestDto.md)
|
|
263
|
+
- [ListModelsRequestDto](truefoundry/ml/_autogen/client/docs/ListModelsRequestDto.md)
|
|
264
|
+
- [ListModelsResponseDto](truefoundry/ml/_autogen/client/docs/ListModelsResponseDto.md)
|
|
265
|
+
- [ListRunArtifactsResponseDto](truefoundry/ml/_autogen/client/docs/ListRunArtifactsResponseDto.md)
|
|
266
|
+
- [ListRunLogsResponseDto](truefoundry/ml/_autogen/client/docs/ListRunLogsResponseDto.md)
|
|
267
|
+
- [LocalArtifactSource](truefoundry/ml/_autogen/client/docs/LocalArtifactSource.md)
|
|
268
|
+
- [LocalModelSource](truefoundry/ml/_autogen/client/docs/LocalModelSource.md)
|
|
269
|
+
- [LogBatchRequestDto](truefoundry/ml/_autogen/client/docs/LogBatchRequestDto.md)
|
|
270
|
+
- [LogMetricRequestDto](truefoundry/ml/_autogen/client/docs/LogMetricRequestDto.md)
|
|
271
|
+
- [LogParamRequestDto](truefoundry/ml/_autogen/client/docs/LogParamRequestDto.md)
|
|
272
|
+
- [Manifest](truefoundry/ml/_autogen/client/docs/Manifest.md)
|
|
273
|
+
- [Manifest1](truefoundry/ml/_autogen/client/docs/Manifest1.md)
|
|
274
|
+
- [Manifest2](truefoundry/ml/_autogen/client/docs/Manifest2.md)
|
|
275
|
+
- [Method](truefoundry/ml/_autogen/client/docs/Method.md)
|
|
276
|
+
- [MetricCollectionDto](truefoundry/ml/_autogen/client/docs/MetricCollectionDto.md)
|
|
277
|
+
- [MetricDto](truefoundry/ml/_autogen/client/docs/MetricDto.md)
|
|
278
|
+
- [MimeType](truefoundry/ml/_autogen/client/docs/MimeType.md)
|
|
279
|
+
- [ModelConfiguration](truefoundry/ml/_autogen/client/docs/ModelConfiguration.md)
|
|
280
|
+
- [ModelDto](truefoundry/ml/_autogen/client/docs/ModelDto.md)
|
|
281
|
+
- [ModelManifest](truefoundry/ml/_autogen/client/docs/ModelManifest.md)
|
|
282
|
+
- [ModelResponseDto](truefoundry/ml/_autogen/client/docs/ModelResponseDto.md)
|
|
283
|
+
- [ModelServer](truefoundry/ml/_autogen/client/docs/ModelServer.md)
|
|
284
|
+
- [ModelVersionDto](truefoundry/ml/_autogen/client/docs/ModelVersionDto.md)
|
|
285
|
+
- [ModelVersionEnvironment](truefoundry/ml/_autogen/client/docs/ModelVersionEnvironment.md)
|
|
286
|
+
- [ModelVersionResponseDto](truefoundry/ml/_autogen/client/docs/ModelVersionResponseDto.md)
|
|
287
|
+
- [MultiPartUploadDto](truefoundry/ml/_autogen/client/docs/MultiPartUploadDto.md)
|
|
288
|
+
- [MultiPartUploadResponseDto](truefoundry/ml/_autogen/client/docs/MultiPartUploadResponseDto.md)
|
|
289
|
+
- [MultiPartUploadStorageProvider](truefoundry/ml/_autogen/client/docs/MultiPartUploadStorageProvider.md)
|
|
290
|
+
- [NotifyArtifactVersionFailureDto](truefoundry/ml/_autogen/client/docs/NotifyArtifactVersionFailureDto.md)
|
|
291
|
+
- [ONNXFramework](truefoundry/ml/_autogen/client/docs/ONNXFramework.md)
|
|
292
|
+
- [OpenapiSpec](truefoundry/ml/_autogen/client/docs/OpenapiSpec.md)
|
|
293
|
+
- [PaddleFramework](truefoundry/ml/_autogen/client/docs/PaddleFramework.md)
|
|
294
|
+
- [ParamDto](truefoundry/ml/_autogen/client/docs/ParamDto.md)
|
|
295
|
+
- [Parameters](truefoundry/ml/_autogen/client/docs/Parameters.md)
|
|
296
|
+
- [PyTorchFramework](truefoundry/ml/_autogen/client/docs/PyTorchFramework.md)
|
|
297
|
+
- [ResolveAgentAppResponseDto](truefoundry/ml/_autogen/client/docs/ResolveAgentAppResponseDto.md)
|
|
298
|
+
- [RestoreRunRequestDto](truefoundry/ml/_autogen/client/docs/RestoreRunRequestDto.md)
|
|
299
|
+
- [RunDataDto](truefoundry/ml/_autogen/client/docs/RunDataDto.md)
|
|
300
|
+
- [RunDto](truefoundry/ml/_autogen/client/docs/RunDto.md)
|
|
301
|
+
- [RunInfoDto](truefoundry/ml/_autogen/client/docs/RunInfoDto.md)
|
|
302
|
+
- [RunLogDto](truefoundry/ml/_autogen/client/docs/RunLogDto.md)
|
|
303
|
+
- [RunLogInputDto](truefoundry/ml/_autogen/client/docs/RunLogInputDto.md)
|
|
304
|
+
- [RunResponseDto](truefoundry/ml/_autogen/client/docs/RunResponseDto.md)
|
|
305
|
+
- [RunTagDto](truefoundry/ml/_autogen/client/docs/RunTagDto.md)
|
|
306
|
+
- [SearchRunsRequestDto](truefoundry/ml/_autogen/client/docs/SearchRunsRequestDto.md)
|
|
307
|
+
- [SearchRunsResponseDto](truefoundry/ml/_autogen/client/docs/SearchRunsResponseDto.md)
|
|
308
|
+
- [SetExperimentTagRequestDto](truefoundry/ml/_autogen/client/docs/SetExperimentTagRequestDto.md)
|
|
309
|
+
- [SetTagRequestDto](truefoundry/ml/_autogen/client/docs/SetTagRequestDto.md)
|
|
310
|
+
- [SignedURLDto](truefoundry/ml/_autogen/client/docs/SignedURLDto.md)
|
|
311
|
+
- [SklearnFramework](truefoundry/ml/_autogen/client/docs/SklearnFramework.md)
|
|
312
|
+
- [SklearnModelSchema](truefoundry/ml/_autogen/client/docs/SklearnModelSchema.md)
|
|
313
|
+
- [SklearnSerializationFormat](truefoundry/ml/_autogen/client/docs/SklearnSerializationFormat.md)
|
|
314
|
+
- [Source](truefoundry/ml/_autogen/client/docs/Source.md)
|
|
315
|
+
- [Source1](truefoundry/ml/_autogen/client/docs/Source1.md)
|
|
316
|
+
- [Source2](truefoundry/ml/_autogen/client/docs/Source2.md)
|
|
317
|
+
- [SpaCyFramework](truefoundry/ml/_autogen/client/docs/SpaCyFramework.md)
|
|
318
|
+
- [StatsModelsFramework](truefoundry/ml/_autogen/client/docs/StatsModelsFramework.md)
|
|
319
|
+
- [Stop](truefoundry/ml/_autogen/client/docs/Stop.md)
|
|
320
|
+
- [StoreRunLogsRequestDto](truefoundry/ml/_autogen/client/docs/StoreRunLogsRequestDto.md)
|
|
321
|
+
- [Subject](truefoundry/ml/_autogen/client/docs/Subject.md)
|
|
322
|
+
- [SubjectType](truefoundry/ml/_autogen/client/docs/SubjectType.md)
|
|
323
|
+
- [SystemMessage](truefoundry/ml/_autogen/client/docs/SystemMessage.md)
|
|
324
|
+
- [TensorFlowFramework](truefoundry/ml/_autogen/client/docs/TensorFlowFramework.md)
|
|
325
|
+
- [Text](truefoundry/ml/_autogen/client/docs/Text.md)
|
|
326
|
+
- [TextContentPart](truefoundry/ml/_autogen/client/docs/TextContentPart.md)
|
|
327
|
+
- [TransformersFramework](truefoundry/ml/_autogen/client/docs/TransformersFramework.md)
|
|
328
|
+
- [TriggerJobRunConfigRequestDto](truefoundry/ml/_autogen/client/docs/TriggerJobRunConfigRequestDto.md)
|
|
329
|
+
- [TriggerJobRunConfigResponseDto](truefoundry/ml/_autogen/client/docs/TriggerJobRunConfigResponseDto.md)
|
|
330
|
+
- [TrueFoundryManagedSource](truefoundry/ml/_autogen/client/docs/TrueFoundryManagedSource.md)
|
|
331
|
+
- [UpdateArtifactVersionRequestDto](truefoundry/ml/_autogen/client/docs/UpdateArtifactVersionRequestDto.md)
|
|
332
|
+
- [UpdateDatasetRequestDto](truefoundry/ml/_autogen/client/docs/UpdateDatasetRequestDto.md)
|
|
333
|
+
- [UpdateExperimentRequestDto](truefoundry/ml/_autogen/client/docs/UpdateExperimentRequestDto.md)
|
|
334
|
+
- [UpdateModelVersionRequestDto](truefoundry/ml/_autogen/client/docs/UpdateModelVersionRequestDto.md)
|
|
335
|
+
- [UpdateRunRequestDto](truefoundry/ml/_autogen/client/docs/UpdateRunRequestDto.md)
|
|
336
|
+
- [UpdateRunResponseDto](truefoundry/ml/_autogen/client/docs/UpdateRunResponseDto.md)
|
|
337
|
+
- [Url](truefoundry/ml/_autogen/client/docs/Url.md)
|
|
338
|
+
- [UserMessage](truefoundry/ml/_autogen/client/docs/UserMessage.md)
|
|
339
|
+
- [ValidateExternalStorageRootRequestDto](truefoundry/ml/_autogen/client/docs/ValidateExternalStorageRootRequestDto.md)
|
|
340
|
+
- [ValidateExternalStorageRootResponseDto](truefoundry/ml/_autogen/client/docs/ValidateExternalStorageRootResponseDto.md)
|
|
341
|
+
- [ValidationError](truefoundry/ml/_autogen/client/docs/ValidationError.md)
|
|
342
|
+
- [ValidationErrorLocInner](truefoundry/ml/_autogen/client/docs/ValidationErrorLocInner.md)
|
|
343
|
+
- [XGBoostFramework](truefoundry/ml/_autogen/client/docs/XGBoostFramework.md)
|
|
344
|
+
- [XGBoostModelSchema](truefoundry/ml/_autogen/client/docs/XGBoostModelSchema.md)
|
|
345
|
+
- [XGBoostSerializationFormat](truefoundry/ml/_autogen/client/docs/XGBoostSerializationFormat.md)
|
|
346
|
+
|
|
347
|
+
|
|
348
|
+
<a id="documentation-for-authorization"></a>
|
|
349
|
+
## Documentation For Authorization
|
|
350
|
+
|
|
351
|
+
|
|
352
|
+
Authentication schemes defined for the API:
|
|
353
|
+
<a id="APIKey"></a>
|
|
354
|
+
### APIKey
|
|
355
|
+
|
|
356
|
+
- **Type**: Bearer authentication
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
## Author
|