abcdef / app.py
not-lain's picture
Update app.py
322cf95 verified
raw
history blame contribute delete
180 Bytes
import gradio as gr
def generate(text):
return text
demo = gr.Interface(fn=generate,
inputs=["text"],
outputs=["text"])
demo.launch()