seawolf2357 commited on
Commit
532c588
Β·
verified Β·
1 Parent(s): f38b807

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -5
app.py CHANGED
@@ -41,15 +41,23 @@ def create_home_screen():
41
  πŸ† 멀버쉽 μ°Έμ—¬μžλŠ”, λ””μŠ€μ½”λ“œ μ„œλ²„ https://discord.gg/openfreeai '프라이빗'(Private) κΆŒν•œ λΆ€μ—¬\n
42
  πŸ† κ³ μ„±λŠ₯ NVIDIA H100 X 4ea, A100 X 50ea, L40s X 1eaκ³Ό 총 130μ—¬λŒ€μ˜ μ„œλ²„μ—μ„œ 가동쀑 \n
43
  """)
44
-
45
- # Discord iframe
46
  with gr.Row():
47
- gr.HTML("""
48
- <iframe src="https://discord.com/widget?id=1228254992729767996&theme=dark" width="350" height="500" allowtransparency="true" frameborder="0" sandbox="allow-popups allow-popups-to-escape-sandbox allow-same-origin allow-scripts"></iframe>
49
- """)
 
 
 
 
 
 
 
50
 
51
  return home
52
 
53
  if __name__ == "__main__":
54
  home = create_home_screen()
55
  home.launch()
 
 
41
  πŸ† 멀버쉽 μ°Έμ—¬μžλŠ”, λ””μŠ€μ½”λ“œ μ„œλ²„ https://discord.gg/openfreeai '프라이빗'(Private) κΆŒν•œ λΆ€μ—¬\n
42
  πŸ† κ³ μ„±λŠ₯ NVIDIA H100 X 4ea, A100 X 50ea, L40s X 1eaκ³Ό 총 130μ—¬λŒ€μ˜ μ„œλ²„μ—μ„œ 가동쀑 \n
43
  """)
44
+
45
+ # Discord iframe as another column
46
  with gr.Row():
47
+ with gr.Column(scale=1):
48
+ gr.Markdown("""
49
+ ### λ””μŠ€μ½”λ“œ μ„œλ²„ μ°Έμ—¬
50
+ πŸ€– λ””μŠ€μ½”λ“œ μ„œλ²„μ— μ°Έμ—¬ν•˜λ©΄ λ”μš± λ‹€μ–‘ν•œ 90μ’… μ΄μƒμ˜ AI μ„œλΉ„μŠ€λ₯Ό λ§Œλ‚  수 μžˆμŠ΅λ‹ˆλ‹€.
51
+ πŸ€– 우츑 ν™”λ©΄ ν•˜λ‹¨ "Join Discord"λ₯Ό ν΄λ¦­ν•˜μ„Έμš”.
52
+ """)
53
+ with gr.Column(scale=1):
54
+ gr.HTML("""
55
+ <iframe src="https://discord.com/widget?id=1228254992729767996&theme=dark" width="350" height="500" allowtransparency="true" frameborder="0" sandbox="allow-popups allow-popups-to-escape-sandbox allow-same-origin allow-scripts"></iframe>
56
+ """)
57
 
58
  return home
59
 
60
  if __name__ == "__main__":
61
  home = create_home_screen()
62
  home.launch()
63
+