Download
models.download(strmodel_id, ModelDownloadParams**kwargs) -> ModelDownloadResponse
POST/models/{modelId}/download
Request a link to download the given modelId
Download
import os
from scenario_sdk import Scenario
client = Scenario(
api_key=os.environ.get("SCENARIO_SDK_API_KEY"), # This is the default and can be omitted
api_secret=os.environ.get("SCENARIO_SDK_API_SECRET"), # This is the default and can be omitted
)
response = client.models.download(
model_id="modelId",
)
print(response.job_id){
"jobId": "jobId"
}Returns Examples
{
"jobId": "jobId"
}