Spaces:
Running
Running
geekyrakshit
commited on
Commit
•
4cb2acb
1
Parent(s):
bdfef08
update: deploy actions
Browse files- .github/workflows/deploy.yml +12 -1
- requirements.txt +14 -0
.github/workflows/deploy.yml
CHANGED
@@ -23,4 +23,15 @@ jobs:
|
|
23 |
- run: |
|
24 |
pip install --upgrade pip
|
25 |
pip install .[docs]
|
26 |
-
- run: mkdocs gh-deploy --force
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
- run: |
|
24 |
pip install --upgrade pip
|
25 |
pip install .[docs]
|
26 |
+
- run: mkdocs gh-deploy --force
|
27 |
+
sync-to-hub:
|
28 |
+
runs-on: ubuntu-latest
|
29 |
+
steps:
|
30 |
+
- uses: actions/checkout@v3
|
31 |
+
with:
|
32 |
+
fetch-depth: 0
|
33 |
+
lfs: true
|
34 |
+
- name: Push to hub
|
35 |
+
env:
|
36 |
+
HF_TOKEN: ${{ secrets.HF_TOKEN }}
|
37 |
+
run: git push https://HF_USERNAME:$HF_TOKEN@huggingface.co/spaces/wandb/guardrails-genie main
|
requirements.txt
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
datasets>=3.1.0
|
2 |
+
evaluate>=0.4.3
|
3 |
+
google-generativeai>=0.8.3
|
4 |
+
openai>=1.52.2
|
5 |
+
weave @ git+https://github.com/wandb/weave@feat/eval-progressbar
|
6 |
+
streamlit>=1.40.1
|
7 |
+
python-dotenv>=1.0.1
|
8 |
+
watchdog>=6.0.0
|
9 |
+
transformers>=4.46.3
|
10 |
+
instructor>=1.7.0
|
11 |
+
matplotlib>=3.9.3
|
12 |
+
plotly>=5.24.1
|
13 |
+
scikit-learn>=1.5.2
|
14 |
+
torch --index-url https://download.pytorch.org/whl/cpu
|