personal_vc / app.py
karthek's picture
ini
b22f598
raw
history blame contribute delete
181 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
def main():
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()
main()