skypper / app.py
Docty's picture
Update app.py
015b4fa verified
raw
history blame contribute delete
150 Bytes
import gradio as gr
def predict(text):
return text
demo = gr.Interface(
fn=predict,
inputs='textbox',
outputs='text',
)
demo.launch()