fix(rsplat): bump detection_threshold to 0.1 (API minimum)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Jeff Emmett 2026-03-16 14:12:57 -07:00
parent 96fd5ef756
commit 66d347091d
1 changed files with 1 additions and 1 deletions

View File

@ -1035,7 +1035,7 @@ app.post("/api/3d-gen", async (c) => {
Authorization: `Key ${FAL_KEY}`, Authorization: `Key ${FAL_KEY}`,
"Content-Type": "application/json", "Content-Type": "application/json",
}, },
body: JSON.stringify({ image_url, prompt: "person . animal . object . furniture . vehicle . building", detection_threshold: 0.05, export_textured_glb: true }), body: JSON.stringify({ image_url, prompt: "person . animal . object . furniture . vehicle . building", detection_threshold: 0.1, export_textured_glb: true }),
signal: controller.signal, signal: controller.signal,
}); });
clearTimeout(timeout); clearTimeout(timeout);