From 7e5f124f77fe5e236e58d35f181a08778573cc6f Mon Sep 17 00:00:00 2001 From: Cian Hughes Date: Wed, 21 May 2025 11:20:35 +0100 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f16f23e..e0f16ba 100644 --- a/README.md +++ b/README.md @@ -13,5 +13,5 @@ As an example, this container can be used to create a simple model of a cube usi following command: ```sh -curl -X POST http://localhost:1212/create_model -H "Content-Type: application/json" -d '{"model_code":"def model(): bpy.ops.mesh.primitive_cube_add(size=2, enter_editmode=False, align='WORLD', location=(0, 0, 0)); return bpy.context.object"}' --output model.glb +curl -X POST http://localhost:1212/create_model -H "Content-Type: application/json" -d '{"model_code":"def model(): bpy.ops.mesh.primitive_cube_add(size=2, enter_editmode=False, location=(0, 0, 0)); return bpy.context.object"}' --output model.glb ```