File size: 678 Bytes
f154467
783515c
5c41f19
d1bdca6
6711778
783515c
c07d010
eb20c2a
504146e
 
 
5c41f19
504146e
 
 
 
 
 
 
5c41f19
c07d010
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import gradio as gr

# Функция для смены вкладки
def change_tab(id):
    return gr.Tabs(selected=id)

with gr.Blocks() as demo:
    with gr.Tabs() as tabs:
        # Вкладка 1
        with gr.TabItem("Вкладка 1", id=0): # index 0
            text1 = gr.Textbox(label="Поле 1")
        
        # Вкладка 2
        with gr.TabItem("Вкладка 2", id=1): # index 1
            text2 = gr.Textbox(label="Поле 2")
    
    # Кнопка для переключения на вкладку 2
    btn = gr.Button("Перейти на Вкладку 2")
    btn.click(change_tab, gr.Number(1, visible=False), tabs)

demo.launch()