poll_rodin_job_status
Check the completion status of Hyper3D Rodin generation tasks. Use subscription_key for MAIN_SITE mode or request_id for FAL_AI mode to monitor progress and determine final status (Done, Completed, or failed). Proceed once status is finalized.
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"
}