Spaces:
Sleeping
Sleeping
File size: 308 Bytes
23b4e49 |
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) |