vibs08 commited on
Commit
2937e46
·
verified ·
1 Parent(s): c9fb6cf

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -281,7 +281,7 @@ async def upload_image(file: UploadFile = File(...)):
281
  obj_name = f"{uuid.uuid4()}.obj"
282
 
283
  # Upload the OBJ file to S3
284
- s3_url = save_file_to_s3(obj_file_path, "framebucket3d", obj_name)
285
 
286
  return JSONResponse(content={"Output": s3_url})
287
 
 
281
  obj_name = f"{uuid.uuid4()}.obj"
282
 
283
  # Upload the OBJ file to S3
284
+ s3_url = upload_file_to_s3(obj_file_path, "framebucket3d", obj_name)
285
 
286
  return JSONResponse(content={"Output": s3_url})
287