Skip to content

Commit fe7c337

Browse files
author
Vaijanath Rao
committed
updating release.yaml file for reranking
1 parent faa494e commit fe7c337

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/release.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ on:
1111
env:
1212
MODEL_URL: "https://huggingface.co/TheBloke/CodeLlama-7B-GGUF/resolve/main/codellama-7b.Q2_K.gguf"
1313
MODEL_NAME: "codellama-7b.Q2_K.gguf"
14+
RERANKING_MODEL_URL: "https://huggingface.co/gpustack/jina-reranker-v1-tiny-en-GGUF/resolve/main/jina-reranker-v1-tiny-en-Q4_0.gguf"
15+
RERANKING_MODEL_NAME: "jina-reranker-v1-tiny-en-Q4_0.gguf"
1416
jobs:
1517

1618
# todo: doesn't work with the newest llama.cpp version
@@ -144,8 +146,10 @@ jobs:
144146
with:
145147
name: Linux-x86_64-libraries
146148
path: ${{ github.workspace }}/src/main/resources/de/kherud/llama/
147-
- name: Download model
149+
- name: Download text generation model
148150
run: curl -L ${MODEL_URL} --create-dirs -o models/${MODEL_NAME}
151+
- name: Download reranking model
152+
run: curl -L ${RERANKING_MODEL_URL} --create-dirs -o models/${RERANKING_MODEL_NAME}
149153
- uses: actions/setup-java@v4
150154
with:
151155
distribution: 'zulu'

0 commit comments

Comments
 (0)