justmywyw's picture
Upload folder using huggingface_hub
630cbf4 verified
raw
history blame
314 Bytes
import gradio as gr
import modelscope_gradio_components as mgr
def fn(value):
print(value.text, value.files)
with gr.Blocks() as demo:
input = mgr.MultimodalInput(sources=["upload", "microphone", "webcam"])
input.change(fn=fn, inputs=[input])
if __name__ == "__main__":
demo.queue().launch()