mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-21 02:19:59 +08:00
9 lines
212 B
Python
9 lines
212 B
Python
import gradio as gr
|
|
import random
|
|
|
|
def upload(file):
|
|
print(file.name)
|
|
return "/mnt/c/Users/aliab/projects/gradio/gradio/static/js/interfaces/output/file.js"
|
|
|
|
gr.Interface(upload, "file", "file").launch()
|