aiqtech commited on
Commit
df56f3d
·
verified ·
1 Parent(s): d800237

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -1
app.py CHANGED
@@ -166,8 +166,16 @@ def submit_sync_sv3d(image_upload, fps, loop_frames_count, gif_loop):
166
  image_data = convert_image_to_base64(Image.open(image_upload))
167
  return asyncio.run(submit_sv3d(image_data, fps, loop_frames_count, gif_loop))
168
 
 
 
 
 
 
 
 
 
169
  def run_gradio_app():
170
- with gr.Blocks() as demo:
171
  gr.Markdown("# Comfy Anything 🐈")
172
 
173
  with gr.Row():
 
166
  image_data = convert_image_to_base64(Image.open(image_upload))
167
  return asyncio.run(submit_sv3d(image_data, fps, loop_frames_count, gif_loop))
168
 
169
+ css = """
170
+ footer {
171
+ visibility: hidden;
172
+ }
173
+ """
174
+
175
+
176
+
177
  def run_gradio_app():
178
+ with gr.Blocks(theme="Nymbo/Nymbo_Theme", css=css) as demo:
179
  gr.Markdown("# Comfy Anything 🐈")
180
 
181
  with gr.Row():