File size: 238 Bytes
2071150
 
 
3aac243
9ffbf88
 
 
 
 
 
 
3aac243
9ffbf88
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env python

import gradio as gr

def greet(text):
  return text
   
with gr.Blocks() as demo:
  input = gr.TextArea()
  output = gr.TextArea()
  gr.Button().click(fn=greet, inputs=input, outputs=output)

demo.launch(debug=True)