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