mint:read
Wait For Model Animation
wait_for_model_animation
Briefly waits for an animation batch or clip to finish, then returns retry guidance. timeout_ms is capped at 60000.
Parameters
Input schema generated from the registry. Required parameters are tagged.
- target_typerequired
"asset_pack_animation_batch" | "model_animation_batch" | "model_animation_clip"
- target_idrequired
string
- timeout_ms
number
- poll_interval_ms
number
- contextrequired
string
Describe the user's goal and why this tool helps in 15-25 words. Do not include credentials, personal data, identifiers, URLs, emails, or account addresses.
Example request
{
"target_type": "model_animation_batch",
"target_id": "mabwalkcycle123",
"timeout_ms": 30000,
"poll_interval_ms": 5000
}Example response
{
"type": "model_animation",
"targetType": "model_animation_batch",
"id": "mabwalkcycle123",
"status": "succeeded",
"terminal": true,
"reason": "completed",
"retryAfterMs": null,
"retryGuidance": null,
"chatUrl": "https://mint.gg/chat/j572z3a4b5c6d7e8f9g0h1i2j3",
"counts": {
"clipCount": 1,
"succeededCount": 1,
"failedCount": 0,
"runningCount": 0,
"queuedCount": 0
}
}Use cases
- Wait briefly after starting animation from an agent workflow.
- Return a Mint chat link while a longer animation run continues.