create_3d_model_from_text
Generate a 3D model from a text description using the Tripo API. Initiate the task with a detailed object description, monitor progress using task_id, and retrieve the finalized model upon completion.
Instructions
Create a 3D model from a text description using the Tripo API.
IMPORTANT: This tool initiates a 3D model generation task but does NOT wait for completion.
After calling this tool, you MUST repeatedly call the get_task_status tool with the returned
task_id until the task status is SUCCESS or a terminal error state.
Typical workflow:
1. Call create_3d_model_from_text to start the task
2. Get the task_id from the response
3. Call get_task_status with the task_id
4. If status is not SUCCESS, wait a moment and call get_task_status again
5. Repeat until status is SUCCESS or a terminal error state
6. When status is SUCCESS, use the pbr_model_url from the response
Args:
describe_the_look_of_object: A detailed description of the object to generate.
face_limit: The maximum number of faces in the model.
auto_size: Whether to automatically size the model.
Returns:
A dictionary containing the task ID and instructions for checking the status.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
describe_the_look_of_object | Yes | ||
face_limit | No |
Input Schema (JSON Schema)
{
"properties": {
"describe_the_look_of_object": {
"title": "Describe The Look Of Object",
"type": "string"
},
"face_limit": {
"default": -1,
"title": "Face Limit",
"type": "integer"
}
},
"required": [
"describe_the_look_of_object"
],
"title": "create_3d_model_from_textArguments",
"type": "object"
}