Spaces:
Build error
Build error
jakewatson commited on
Commit ·
d06a4e9
1
Parent(s): 2500e49
testing --force
Browse files- .github/workflows/deploy_to_huggingface.yml +1 -2
- app.py +1 -1
.github/workflows/deploy_to_huggingface.yml
CHANGED
|
@@ -27,5 +27,4 @@ jobs:
|
|
| 27 |
env:
|
| 28 |
HF_TOKEN: ${{ secrets.HF_TOKEN }}
|
| 29 |
run: |
|
| 30 |
-
git
|
| 31 |
-
git push huggingface main
|
|
|
|
| 27 |
env:
|
| 28 |
HF_TOKEN: ${{ secrets.HF_TOKEN }}
|
| 29 |
run: |
|
| 30 |
+
git push --force https://jakewatson91:$HF_TOKEN@huggingface.co/spaces/cs-553-group2/case-study-1 main
|
|
|
app.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
import gradio as gr
|
| 2 |
from huggingface_hub import InferenceClient
|
| 3 |
import torch
|
| 4 |
from transformers import pipeline
|
|
|
|
| 1 |
+
import gradio as gr
|
| 2 |
from huggingface_hub import InferenceClient
|
| 3 |
import torch
|
| 4 |
from transformers import pipeline
|