File size: 754 Bytes
7cf874b
 
f6a522c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7cf874b
 
 
f6a522c
7cf874b
 
 
f6a522c
7cf874b
 
f6a522c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import gradio as gr

# CSS для скрытия footer и максимизации размера
custom_css = """
footer {
    display: none !important;
}
.gradio-container {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}
.container {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}
iframe {
    width: 100vw !important;
    height: 100vh !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
}
"""

html_content = """
<iframe 
    src="https://llmarena.ru/?leaderboard"
    style="width: 100vw; height: 100vh; border: none;"
></iframe>
"""

with gr.Blocks(css=custom_css) as demo:
    gr.HTML(html_content)

demo.launch(show_api=False)