seawolf2357 commited on
Commit
4700bb5
ยท
verified ยท
1 Parent(s): 8fb3c5b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -2
app.py CHANGED
@@ -204,8 +204,13 @@ async def image_to_video(prompt, image_url, loop, aspect_ratio, camera_motion, p
204
  except Exception as e:
205
  return None, None, f"์˜ค๋ฅ˜ ๋ฐœ์ƒ: {str(e)}"
206
 
207
- with gr.Blocks() as demo:
208
- gr.Markdown("# Luma AI ํ…์ŠคํŠธ-๋น„๋””์˜ค ์ƒ์„ฑ ๋ฐ๋ชจ")
 
 
 
 
 
209
 
210
  with gr.Tab("ํ…์ŠคํŠธ๋กœ ๋น„๋””์˜ค ๋งŒ๋“ค๊ธฐ"):
211
  prompt = gr.Textbox(label="ํ”„๋กฌํ”„ํŠธ (๋น„๋””์˜ค์— ๋Œ€ํ•œ ์„ค๋ช…์„ ์ž…๋ ฅํ•˜์„ธ์š”)")
 
204
  except Exception as e:
205
  return None, None, f"์˜ค๋ฅ˜ ๋ฐœ์ƒ: {str(e)}"
206
 
207
+ css = """
208
+ footer {
209
+ visibility: hidden;
210
+ }
211
+ """
212
+
213
+ with gr.Blocks(theme="Nymbo/Nymbo_Theme", css=css) as demo:
214
 
215
  with gr.Tab("ํ…์ŠคํŠธ๋กœ ๋น„๋””์˜ค ๋งŒ๋“ค๊ธฐ"):
216
  prompt = gr.Textbox(label="ํ”„๋กฌํ”„ํŠธ (๋น„๋””์˜ค์— ๋Œ€ํ•œ ์„ค๋ช…์„ ์ž…๋ ฅํ•˜์„ธ์š”)")