wfjsw commited on
Commit
b1acc10
·
1 Parent(s): c1797da
Files changed (2) hide show
  1. app.py +7 -0
  2. requirements.txt +1 -0
app.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ def get_repo_name(repo_name: str):
4
+ return repo_name
5
+
6
+ iface = gr.Interface(fn=get_repo_name, inputs="text", outputs="text", title="Repo Hasher")
7
+ iface.launch()
requirements.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ huggingface_hub