test / app.py
not-lain's picture
Enable Space CI
49f6343 verified
raw history blame
No virus
195 Bytes
import gradio as gr
from gradio_space_ci import enable_space_ci
enable_space_ci()
def talk(text):
return text
demo = gr.Interface(fn=talk, inputs="text", outputs="label")
demo.launch()