iris / app.py
SebLih's picture
Update app.py
eedd915
raw
history blame
155 Bytes
import gradio as gr
def greet(input_text):
return "Hello!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch(inline = False)