Spaces:
Sleeping
Sleeping
pannman
commited on
Commit
·
fe80236
1
Parent(s):
c0165f9
test commit
Browse files
.github/workflows/pysen-python-app.yaml
CHANGED
@@ -56,6 +56,6 @@ jobs:
|
|
56 |
env:
|
57 |
HF_TOKEN: ${{ secrets.HF_TOKEN }}
|
58 |
run: |
|
59 |
-
git remote add spaces https://huggingface.co/spaces/test-almondo/
|
60 |
git push spaces develop:main
|
61 |
|
|
|
56 |
env:
|
57 |
HF_TOKEN: ${{ secrets.HF_TOKEN }}
|
58 |
run: |
|
59 |
+
git remote add spaces https://huggingface.co/spaces/test-almondo/test3
|
60 |
git push spaces develop:main
|
61 |
|
work/spaces/test/app.py
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
|
3 |
+
def greet(name):
|
4 |
+
return "Hello " + name + "!!"
|
5 |
+
|
6 |
+
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
|
7 |
+
demo.launch()
|