test / app.py
not-lain's picture
Update app.py
55d82ce verified
raw
history blame contribute delete
130 Bytes
import gradio as gr
def talk(text):
return None
demo = gr.Interface(fn=talk, inputs="text", outputs="text")
demo.launch()