Ashrafb commited on
Commit
5cff8dd
1 Parent(s): 0bbd29b

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +1 -1
main.py CHANGED
@@ -29,7 +29,7 @@ def generate_image(prompt):
29
  return image
30
  except Exception as e:
31
  # Handle the error gracefully, such as logging the error or returning a default image
32
- print(f"Error generating image: {e}")
33
  return "Experiencing high demand. Please retry shortly. Thank you for your patience" # Return None or a default image in case of error
34
 
35
 
 
29
  return image
30
  except Exception as e:
31
  # Handle the error gracefully, such as logging the error or returning a default image
32
+ raise gr.Error(f"Error generating image: {e}")
33
  return "Experiencing high demand. Please retry shortly. Thank you for your patience" # Return None or a default image in case of error
34
 
35