Spaces:
Running
Running
Update app.py
Browse files
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.
|
48 |
-
|
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 |
+
|