Spaces:
Sleeping
Sleeping
File size: 322 Bytes
c1f14d7 efb847d 050d378 c1f14d7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import gradio as gr
js = '''alert("aaa");
console.log("bbb Loaded.");
'''
with gr.Blocks() as demo:
inp = gr.Textbox(label="Input")
out = gr.Textbox(label="Output")
def reverse_text(text):
return text[::-1]
inp.change(reverse_text, inp, out)
demo.load(None,None,None,js=js)
demo.launch() |