copy_model_version
Promote a model version from one registered model to another, creating the destination model if it doesn't exist.
Instructions
Promote a model version to another registered model (MLflow 3 promotion pattern). Creates the destination model if it doesn't exist.
Args: src_model_name: Source registered model name. src_version: Source model version number. dst_model_name: Destination registered model name, e.g. 'my-model-prod'.
Examples: copy_model_version("my-model-dev", "3", "my-model-prod")
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| src_model_name | Yes | ||
| src_version | Yes | ||
| dst_model_name | Yes |