23b4e49 e334462
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import gradio as gr def GetText(): return "Teste!" with gr.Blocks() as demo: btn = gr.Button("Click that button to start 2!") fileResult = gr.Text(); btn.click( GetText, None, [fileResult] ) if __name__ == "__main__": demo.launch(show_api=True, ssr_mode=False)