Spaces:
Runtime error
Runtime error
Update main.py
Browse files
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')
|