Spaces:
Runtime error
Runtime error
wfjsw
commited on
Commit
·
b1acc10
1
Parent(s):
c1797da
initial
Browse files- app.py +7 -0
- 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
|