Spaces:
Running
Running
Update app.py
Browse files
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 |
-
|
799 |
-
image
|
|
|
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
|