LLMArena commited on
Commit
7cf874b
·
verified ·
1 Parent(s): 3eb9026

Create app_iframe.py

Browse files
Files changed (1) hide show
  1. 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()