Spaces:
Runtime error
Runtime error
Roger Condori
commited on
Commit
•
dbadd4b
1
Parent(s):
a9c396e
add param requirements and readme
Browse files- .github/workflows/main.yml +28 -0
- README.md +12 -2
- requirements.txt +1 -0
.github/workflows/main.yml
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
name: Sync to Hugging Face hub
|
2 |
+
on:
|
3 |
+
push:
|
4 |
+
branches: [main]
|
5 |
+
|
6 |
+
# to run this workflow manually from the Actions tab
|
7 |
+
workflow_dispatch:
|
8 |
+
|
9 |
+
jobs:
|
10 |
+
sync-to-hub:
|
11 |
+
runs-on: ubuntu-latest
|
12 |
+
steps:
|
13 |
+
- uses: actions/checkout@v3
|
14 |
+
with:
|
15 |
+
fetch-depth: 0
|
16 |
+
lfs: True
|
17 |
+
|
18 |
+
- name: LFS Install
|
19 |
+
run: git lfs install
|
20 |
+
|
21 |
+
- name: Checkout LFS objects
|
22 |
+
run: git lfs checkout
|
23 |
+
|
24 |
+
|
25 |
+
- name: Push to hub
|
26 |
+
env:
|
27 |
+
HF: ${{ secrets.HF }}
|
28 |
+
#run: git push --force https://r3gm:$HF@huggingface.co/spaces/rr3gm/SoniTranslate_translate_audio_of_a_video_content main
|
README.md
CHANGED
@@ -1,2 +1,12 @@
|
|
1 |
-
|
2 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
title: ConversaDocs
|
3 |
+
emoji: 🦀
|
4 |
+
colorFrom: indigo
|
5 |
+
colorTo: green
|
6 |
+
sdk: gradio
|
7 |
+
sdk_version: 3.35.2
|
8 |
+
app_file: app.py
|
9 |
+
pinned: true
|
10 |
+
---
|
11 |
+
|
12 |
+
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
requirements.txt
CHANGED
@@ -10,3 +10,4 @@ chromadb
|
|
10 |
huggingface_hub
|
11 |
unstructured[local-inference]
|
12 |
gradio
|
|
|
|
10 |
huggingface_hub
|
11 |
unstructured[local-inference]
|
12 |
gradio
|
13 |
+
param
|