test-gradio-ci / app.py
not-lain's picture
Create app.py
a8d5e97 verified
raw
history blame contribute delete
104 Bytes
import gradio as gr
def talk(text):
return "hi "+ text
gr.Interface(talk , "text","text").launch()