add GitHub Actions
Browse files- .github/workfows/check-file-size.yaml +16 -0
- .github/workfows/sync-to-hugging-face-hub.yaml +20 -0
- README.md +23 -1
.github/workfows/check-file-size.yaml
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
name: Check file size
|
2 |
+
on: # or directly `on: [push]` to run the action on every push on any branch
|
3 |
+
pull_request:
|
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 |
+
- name: Check large files
|
14 |
+
uses: ActionsDesk/[email protected]
|
15 |
+
with:
|
16 |
+
filesizelimit: 10485760 # this is 10MB so we can sync to HF Spaces
|
.github/workfows/sync-to-hugging-face-hub.yaml
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
- name: Push to hub
|
18 |
+
env:
|
19 |
+
HF_TOKEN: ${{ secrets.HF_TOKEN }}
|
20 |
+
run: git push https://peinan:[email protected]/spaces/peinan/pdfchat main
|
README.md
CHANGED
@@ -10,4 +10,26 @@ pinned: true
|
|
10 |
|
11 |
# pdfchat
|
12 |
|
13 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
|
11 |
# pdfchat
|
12 |
|
13 |
+
Chat with a PDF document.
|
14 |
+
|
15 |
+
## Development
|
16 |
+
|
17 |
+
### Prerequisites
|
18 |
+
|
19 |
+
pre-commit
|
20 |
+
|
21 |
+
```bash
|
22 |
+
pre-commit install
|
23 |
+
```
|
24 |
+
|
25 |
+
rye
|
26 |
+
|
27 |
+
```bash
|
28 |
+
rye sync
|
29 |
+
```
|
30 |
+
|
31 |
+
### Run
|
32 |
+
|
33 |
+
```bash
|
34 |
+
rye run server
|
35 |
+
```
|