aliabd's picture
aliabd HF Staff
Create app.py
5aa220f
raw
history blame contribute delete
156 Bytes
import gradio as gr
auth = ("gradio", "gradio")
title = "Hello Auth"
gr.Interface(lambda x: "Hello " + x, "text", "text", title=title).launch(auth=auth)