Spaces:
Sleeping
Sleeping
File size: 181 Bytes
56e6969 |
1 2 3 4 5 6 7 8 9 |
import gradio as gr
def voice_classification(audio):
result = "engaging"
return result
gr.Interface(fn=voice_classification, inputs="audio", outputs="text").launch() |