lopho commited on
Commit
a1b3de8
1 Parent(s): ade8672

forgot one one ref to image dict

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -89,7 +89,7 @@ def generate(
89
  def check_if_compiled(image, inference_steps, height, width, num_frames, message):
90
  height = int(height)
91
  width = int(width)
92
- hint_image = None if image is None else image['image']
93
  if (hint_image is None, inference_steps, height, width, num_frames) in _seen_compilations:
94
  return ''
95
  else:
 
89
  def check_if_compiled(image, inference_steps, height, width, num_frames, message):
90
  height = int(height)
91
  width = int(width)
92
+ hint_image = image
93
  if (hint_image is None, inference_steps, height, width, num_frames) in _seen_compilations:
94
  return ''
95
  else: