File size: 150 Bytes
2629092
 
015b4fa
2629092
015b4fa
2ed7142
 
015b4fa
2ed7142
 
 
015b4fa
2ed7142
2629092
 
2ed7142
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import gradio as gr

 

 

def predict(text):
  return text

demo = gr.Interface(
  fn=predict,
  inputs='textbox',
  outputs='text',
)

demo.launch()