TruEraMultiMed / test.py
not-lain's picture
edited seamless_client name
56811e2
raw
history blame
No virus
174 Bytes
import gradio as gr
def process_image(audio):
return str(len(audio))
iface = gr.Interface(fn=process_image, inputs=["textbox","audio"], outputs="text")
iface.launch()