File size: 262 Bytes
ee52aeb
 
 
 
 
 
 
1
2
3
4
5
6
7
import gradio as gr

def func(hf_token, repo, revision, target_repo):
    return f"Using {hf_token}, the content of {repo}/{revision} has been copied to {target_repo}!" 

iface = gr.Interface(fn=func, inputs=["text","text","text"], outputs="text")
iface.launch()