Spaces:
Starting
Starting
Update gradio_app.py
Browse files- gradio_app.py +1 -5
gradio_app.py
CHANGED
|
@@ -250,7 +250,7 @@ def generate_and_process_3d(prompt: str, seed: int = 42) -> tuple[str | None, Im
|
|
| 250 |
print("[debug] calling trimesh_mesh.export(...) to export to .glb")
|
| 251 |
trimesh_mesh.export(output_path, file_type="glb", include_normals=True)
|
| 252 |
|
| 253 |
-
return output_path,
|
| 254 |
|
| 255 |
except Exception as e:
|
| 256 |
print(f"Error during generation: {str(e)}")
|
|
@@ -279,10 +279,6 @@ demo = gr.Interface(
|
|
| 279 |
label="3D Model Preview",
|
| 280 |
clear_color=[0.0, 0.0, 0.0, 0.0],
|
| 281 |
),
|
| 282 |
-
gr.File(
|
| 283 |
-
label="Download 3D Model",
|
| 284 |
-
file_types=[".glb"]
|
| 285 |
-
),
|
| 286 |
gr.Image(
|
| 287 |
label="Generated Image",
|
| 288 |
type="pil"
|
|
|
|
| 250 |
print("[debug] calling trimesh_mesh.export(...) to export to .glb")
|
| 251 |
trimesh_mesh.export(output_path, file_type="glb", include_normals=True)
|
| 252 |
|
| 253 |
+
return output_path, generated_image
|
| 254 |
|
| 255 |
except Exception as e:
|
| 256 |
print(f"Error during generation: {str(e)}")
|
|
|
|
| 279 |
label="3D Model Preview",
|
| 280 |
clear_color=[0.0, 0.0, 0.0, 0.0],
|
| 281 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
| 282 |
gr.Image(
|
| 283 |
label="Generated Image",
|
| 284 |
type="pil"
|