Spaces:
Runtime error
Runtime error
File size: 177 Bytes
9cc6970 |
1 2 3 4 5 6 7 8 |
import gradio as gr
from inference import *
def greet(name):
return "Hello " + name + "!"
iface = gr.Interface(fn=inference, inputs="audio", outputs="text")
iface.launch() |