tommy24 commited on
Commit
1061843
·
1 Parent(s): bb811a7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -2
app.py CHANGED
@@ -795,8 +795,9 @@ def classify(platform, UserInput, Images, Textbox2, Textbox3):
795
  # base64_image_str = encode_image(image)
796
 
797
  if image_data:
798
- with io.BytesIO(image_data) as buffer:
799
- image = Image.open(buffer)
 
800
  base64_image_str = encode_image(image)
801
 
802
  payload = {
@@ -827,6 +828,9 @@ def classify(platform, UserInput, Images, Textbox2, Textbox3):
827
  pass
828
  else:
829
  return "Answer: not found in the string."
 
 
 
830
  else:
831
  print("Error: Image data is not available.")
832
  return None
 
795
  # base64_image_str = encode_image(image)
796
 
797
  if image_data:
798
+ try:
799
+ # Open the image directly from the image data
800
+ image = Image.open(io.BytesIO(image_data))
801
  base64_image_str = encode_image(image)
802
 
803
  payload = {
 
828
  pass
829
  else:
830
  return "Answer: not found in the string."
831
+
832
+ except:
833
+ return "ERRRRRRR"
834
  else:
835
  print("Error: Image data is not available.")
836
  return None