Saranath07
Application added
39dd1ca
raw
history blame contribute delete
181 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
if __name__ == "__main__":
iface.launch()