File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed
src/test/java/de/kherud/llama Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 2727 run : curl -L ${MODEL_URL} --create-dirs -o models/${MODEL_NAME}
2828 - name : Download reranking model
2929 run : curl -L ${RERANKING_MODEL_URL} --create-dirs -o models/${RERANKING_MODEL_NAME}
30+ - name : List files in models directory
31+ run : ls -l models/
3032 - name : Run tests
3133 run : mvn test
3234 - if : failure()
6163 run : curl -L ${MODEL_URL} --create-dirs -o models/${MODEL_NAME}
6264 - name : Download reranking model
6365 run : curl -L ${RERANKING_MODEL_URL} --create-dirs -o models/${RERANKING_MODEL_NAME}
64-
66+ - name : List files in models directory
67+ run : ls -l models/
6568 - name : Run tests
6669 run : mvn test
6770 - if : failure()
8891 run : curl -L $env:MODEL_URL --create-dirs -o models/$env:MODEL_NAME
8992 - name : Download reranking model
9093 run : curl -L ${RERANKING_MODEL_URL} --create-dirs -o models/${RERANKING_MODEL_NAME}
91-
94+ - name : List files in models directory
95+ run : ls -l models/
9296 - name : Run tests
9397 run : mvn test
9498 - if : failure()
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ public class RerankingModelTest {
1818 @ BeforeClass
1919 public static void setup () {
2020 model = new LlamaModel (
21- new ModelParameters ().setCtxSize (128 ).setModel ("models/jina-reranker-v1-tiny-en.Q4_K_M .gguf" )
21+ new ModelParameters ().setCtxSize (128 ).setModel ("models/jina-reranker-v1-tiny-en-Q4_0 .gguf" )
2222 .setGpuLayers (43 ).enableReranking ().enableLogTimestamps ().enableLogPrefix ());
2323 }
2424
You can’t perform that action at this time.
0 commit comments