Create app_iframe.py
Browse files- app_iframe.py +15 -0
app_iframe.py
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
|
3 |
+
html_content = """
|
4 |
+
<iframe
|
5 |
+
src="https://llmarena.ru/?leaderboard"
|
6 |
+
width="100%"
|
7 |
+
height="800px"
|
8 |
+
style="border: none;"
|
9 |
+
></iframe>
|
10 |
+
"""
|
11 |
+
|
12 |
+
with gr.Blocks() as demo:
|
13 |
+
gr.HTML(html_content)
|
14 |
+
|
15 |
+
demo.launch()
|