MatteoScript commited on
Commit
8bcfd35
·
verified ·
1 Parent(s): 55f56cd

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +1 -1
main.py CHANGED
@@ -206,7 +206,7 @@ def generate_image(request: Request, input_data: InputImage):
206
  1, # int | float (numeric value between 1 and 100) in 'Refiner Number of Iterations %' Slider component
207
  api_name="/predict"
208
  )
209
- image_url = result
210
  with open(image_url, 'rb') as img_file:
211
  img_binary = img_file.read()
212
  img_base64 = base64.b64encode(img_binary).decode('utf-8')
 
206
  1, # int | float (numeric value between 1 and 100) in 'Refiner Number of Iterations %' Slider component
207
  api_name="/predict"
208
  )
209
+ image_url = result[0]
210
  with open(image_url, 'rb') as img_file:
211
  img_binary = img_file.read()
212
  img_base64 = base64.b64encode(img_binary).decode('utf-8')