Spaces:
Sleeping
Sleeping
Enable Space CI
#1
by
not-lain
- opened
- README.md +7 -3
- app.py +6 -0
- requirements.txt +2 -0
README.md
CHANGED
@@ -1,12 +1,16 @@
|
|
1 |
---
|
2 |
title: Test
|
3 |
-
emoji: π
|
4 |
-
colorFrom: yellow
|
5 |
-
colorTo: blue
|
6 |
sdk: gradio
|
7 |
sdk_version: 4.26.0
|
8 |
app_file: app.py
|
|
|
|
|
|
|
9 |
pinned: false
|
|
|
|
|
|
|
|
|
10 |
---
|
11 |
|
12 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
1 |
---
|
2 |
title: Test
|
|
|
|
|
|
|
3 |
sdk: gradio
|
4 |
sdk_version: 4.26.0
|
5 |
app_file: app.py
|
6 |
+
emoji: π
|
7 |
+
colorFrom: yellow
|
8 |
+
colorTo: blue
|
9 |
pinned: false
|
10 |
+
space_ci:
|
11 |
+
trusted_authors: []
|
12 |
+
secrets: []
|
13 |
+
hardware: cpu-basic
|
14 |
---
|
15 |
|
16 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
app.py
CHANGED
@@ -1,5 +1,11 @@
|
|
1 |
import gradio as gr
|
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
def talk(text):
|
4 |
return text
|
5 |
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
+
from gradio_space_ci import enable_space_ci
|
4 |
+
|
5 |
+
enable_space_ci()
|
6 |
+
|
7 |
+
|
8 |
+
|
9 |
def talk(text):
|
10 |
return text
|
11 |
|
requirements.txt
CHANGED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
|
2 |
+
gradio-space-ci @ git+https://huggingface.co/spaces/Wauplin/gradio-space-ci@0.2.2
|