not-lain commited on
Commit
005a47f
β€’
1 Parent(s): 6e1f430

Enable Space CI

Browse files

This PR enables Space CI on your Space. **Gradio Space CI is a tool to create ephemeral Spaces for each PR opened on your Space repo.** The goal is to improve developer experience by making the review process as lean as possible.

### βš™οΈ How it works:

- Listens to pull requests events:
- If PR is opened => starts an ephemeral Space
- If PR is updated => updates the Space
- If PR is closed => deleted the Space
- Checks PR author:
- If trusted author => ephemeral Space is configured with variables, secrets and hardware.
- If not a trusted author => ephemeral Space is started without configuration.
- Space owners are trusted by default. Additional "trusted authors" can be configuration manually.

### ⚠️ Before merging:

1. Check that the configuration is correct. By default the Space is configured to run ephemeral Spaces on a (free) CPU instance without any secrets.
2. You must set `HF_TOKEN` as a secret in your Space settings. Token must have 'write' permission. You can create a new one in your [User settings](https://huggingface.co/settings/token).

---
This is an automated PR created with https://huggingface.co/spaces/Wauplin/gradio-space-ci.
For more details about Space CI, checkout [this page]](https://huggingface.co/spaces/Wauplin/gradio-space-ci/blob/main/README.md).
If you find any issues, please report here: https://huggingface.co/spaces/Wauplin/gradio-space-ci/discussions

Feel free to ignore this PR.

Files changed (3) hide show
  1. README.md +7 -3
  2. app.py +6 -0
  3. requirements.txt +2 -1
README.md CHANGED
@@ -1,12 +1,16 @@
1
  ---
2
  title: Omar
3
- emoji: πŸ“‰
4
- colorFrom: yellow
5
- colorTo: purple
6
  sdk: gradio
7
  sdk_version: 4.16.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: Omar
 
 
 
3
  sdk: gradio
4
  sdk_version: 4.16.0
5
  app_file: app.py
6
+ emoji: πŸ“‰
7
+ colorFrom: yellow
8
+ colorTo: purple
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
@@ -2,6 +2,12 @@
2
  import gradio as gr
3
  from transformers import pipeline
4
 
 
 
 
 
 
 
5
  pipe = pipeline("text2text-generation", model="google/flan-t5-base")
6
 
7
  # a function that uses the pipeline
 
2
  import gradio as gr
3
  from transformers import pipeline
4
 
5
+ from gradio_space_ci import enable_space_ci
6
+
7
+ enable_space_ci()
8
+
9
+
10
+
11
  pipe = pipeline("text2text-generation", model="google/flan-t5-base")
12
 
13
  # a function that uses the pipeline
requirements.txt CHANGED
@@ -1,2 +1,3 @@
1
  torch
2
- transformers
 
 
1
  torch
2
+ transformers
3
+ gradio-space-ci @ git+https://huggingface.co/spaces/Wauplin/gradio-space-ci@0.2.2