Spaces:
Running
Running
File size: 303 Bytes
db32e48 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import gradio as gr
import modelscope_studio as mgr
def fn(value):
# value includes `text`` and `files``
print(value.text, value.files)
with gr.Blocks() as demo:
input = mgr.MultimodalInput()
input.change(fn=fn, inputs=[input])
if __name__ == "__main__":
demo.queue().launch()
|