gradio_1 / app.py
willhill's picture
Update app.py
fba40b2
raw
history blame
149 Bytes
import gradio as gr
def reverse(text):
return text[::-1]
demo = gr.Interface(reverse, "text", "text")
demo.launch( auth=("username", "password"))