Indrajitkulkarni commited on
Commit
68503c5
·
verified ·
1 Parent(s): e3eb166

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -19,7 +19,7 @@ def input_image_details(uploaded_file):
19
  bytes_data=uploaded_file.getvalue() # Read the files into bytes
20
  image_parts=[
21
  {
22
- "mine type":uploaded_file.type, # get th mime type of the uploaded file
23
  "data":bytes_data
24
  }
25
  ]
 
19
  bytes_data=uploaded_file.getvalue() # Read the files into bytes
20
  image_parts=[
21
  {
22
+ "mime_type":uploaded_file.type, # get th mime type of the uploaded file
23
  "data":bytes_data
24
  }
25
  ]