buu_fun/buu-gameready
Generate optimized 3D models from text descriptions. Models are automatically optimized for real-time use in games, VR/AR, and interactive applications.
Public
10
runs
Run buu_fun/buu-gameready with an API
Use one of our client libraries to get started quickly. Clicking on a library will take you to the Playground tab where you can tweak different inputs, see the results, and copy the corresponding code to use in your own project.
Input schema
The fields you can use to run this model with an API. If you don't give a value for a field its default value will be used.
| Field | Type | Default value | Description |
|---|---|---|---|
| prompt |
string
|
Text description of the 3D model to generate
|
|
| api_key |
string
|
Your Buu API key (get it from buu.fun)
|
|
| output_format |
None
|
glb
|
Output format for the 3D model
|
| server_url |
string
|
https://api.buu.fun
|
Server URL (use default unless testing)
|
{
"type": "object",
"title": "Input",
"required": [
"prompt",
"api_key"
],
"properties": {
"prompt": {
"type": "string",
"title": "Prompt",
"x-order": 0,
"description": "Text description of the 3D model to generate"
},
"api_key": {
"type": "string",
"title": "Api Key",
"format": "password",
"x-order": 1,
"description": "Your Buu API key (get it from buu.fun)",
"x-cog-secret": true
},
"server_url": {
"type": "string",
"title": "Server Url",
"default": "https://api.buu.fun",
"x-order": 3,
"description": "Server URL (use default unless testing)"
},
"output_format": {
"enum": [
"glb",
"obj",
"fbx"
],
"type": "string",
"title": "output_format",
"description": "Output format for the 3D model",
"default": "glb",
"x-order": 2
}
}
}
Output schema
The shape of the response you’ll get when you run this model with an API.
Schema
{
"type": "string",
"title": "Output",
"format": "uri"
}