Overview
This Replicate model creates detailed, high-polygon 3D models from natural language descriptions. Perfect for rendering, visualization, and artistic projects where polygon count isn’t a constraint.
Usage
Inputs
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
prompt |
string | Yes | - | Text description of the 3D model to generate |
api_key |
secret | Yes | - | Your Buu API key (get it from buu.fun) |
output_format |
string | No | glb |
Output format: glb, obj, or fbx |
server_url |
string | No | https://api.buu.fun |
Server URL (use default unless testing) |
Output
Returns a 3D model file in the specified format (GLB, OBJ, or FBX).
Example
import replicate
output = replicate.run(
"buu_fun/buu-highpoly",
input={
"prompt": "a medieval castle with towers",
"api_key": "your-buu-api-key",
"output_format": "glb"
}
)
print(output) # URL to the generated model file
Getting an API Key
- Visit buu.fun
- Create an account or sign in
- Navigate to your account settings to generate an API key
Model created
Model updated