test / app.py
not-lain's picture
a very important update
3e1d840
raw
history blame
201 Bytes
import gradio as gr
from gradio_space_ci import enable_space_ci
enable_space_ci()
def talk(text):
return ("hi"+text)
demo = gr.Interface(fn=talk, inputs="text", outputs="label")
demo.launch()