poll_rodin_job_status
Monitor the status of Hyper3D Rodin generation tasks by checking completion or failure. Use subscription_key or request_id to track progress and finalize tasks once statuses are determined. Designed for efficient task management on the BlenderMCP server.
Instructions
Check if the Hyper3D Rodin generation task is completed.
For Hyper3D Rodin mode MAIN_SITE: Parameters: - subscription_key: The subscription_key given in the generate model step.
Returns a list of status. The task is done if all status are "Done".
If "Failed" showed up, the generating process failed.
This is a polling API, so only proceed if the status are finally determined ("Done" or "Canceled").
For Hyper3D Rodin mode FAL_AI: Parameters: - request_id: The request_id given in the generate model step.
Returns the generation task status. The task is done if status is "COMPLETED".
The task is in progress if status is "IN_PROGRESS".
If status other than "COMPLETED", "IN_PROGRESS", "IN_QUEUE" showed up, the generating process might be failed.
This is a polling API, so only proceed if the status are finally determined ("COMPLETED" or some failed state).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
request_id | No | ||
subscription_key | No |
Input Schema (JSON Schema)
{
"properties": {
"request_id": {
"default": null,
"title": "Request Id",
"type": "string"
},
"subscription_key": {
"default": null,
"title": "Subscription Key",
"type": "string"
}
},
"title": "poll_rodin_job_statusArguments",
"type": "object"
}