We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84fe257 commit d382c32Copy full SHA for d382c32
.github/workflows/jekyll.yml
@@ -43,11 +43,12 @@ jobs:
43
uses: actions/setup-python@v4
44
with:
45
python-version: '3.11'
46
+ cache: 'pip'
47
# Install ChatMK dependencies
48
- name: Install Python dependencies
49
run: |
50
python -m pip install --upgrade pip
- pip install sentence-transformers>=2.2.0 torch>=1.11.0 numpy>=1.17.0
51
+ pip install -r requirements.txt
52
# Cache model downloads
53
- name: Cache sentence-transformers model
54
uses: actions/cache@v3
requirements.txt
@@ -0,0 +1,3 @@
1
+sentence-transformers>=2.2.0
2
+torch>=1.11.0
3
+numpy>=1.17.0
0 commit comments