video-whisper / app.py
AndrewRWilliams
Add application file
fba32ec
raw
history blame
150 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()