generate_model
Create models from image URLs and link them to specific subthreads using the Buu AI MCP Server tool designed for structured data processing.
Instructions
[PRIVATE] - Generate model.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
imageRequestId | No | Optional ID of a previously generated image request | |
imageUrl | Yes | Image URL used to generate the model | |
subthreadId | Yes | Subthread ID where the model will be linked |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"imageRequestId": {
"description": "Optional ID of a previously generated image request",
"type": "string"
},
"imageUrl": {
"description": "Image URL used to generate the model",
"type": "string"
},
"subthreadId": {
"description": "Subthread ID where the model will be linked",
"type": "string"
}
},
"required": [
"imageUrl",
"subthreadId"
],
"type": "object"
}