osanseviero commited on
Commit
f77ed0a
·
verified ·
1 Parent(s): 32389f0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -90,7 +90,7 @@ def estimate_co2(image):
90
  )
91
  )
92
 
93
- json_data = extract_json_from_markdown(response.text)
94
  boxes_with_labels, data = parse_info(resized_image, json_data)
95
  return [resized_image, boxes_with_labels], data
96
 
 
90
  )
91
  )
92
 
93
+ json_data = parse_json(response.text)
94
  boxes_with_labels, data = parse_info(resized_image, json_data)
95
  return [resized_image, boxes_with_labels], data
96