|
8 | 8 | MODEL_NAME: codellama-7b.Q2_K.gguf
|
9 | 9 | RERANKING_MODEL_URL: https://huggingface.co/gpustack/jina-reranker-v1-tiny-en-GGUF/resolve/main/jina-reranker-v1-tiny-en-Q4_0.gguf
|
10 | 10 | RERANKING_MODEL_NAME: jina-reranker-v1-tiny-en-Q4_0.gguf
|
| 11 | + TOOL_CALLING_MODEL_URL: https://huggingface.co/unsloth/Llama-3.2-3B-Instruct-GGUF/resolve/main/Llama-3.2-3B-Instruct-Q8_0.gguf |
| 12 | + TOOL_CALLING_MODEL_NAME:Llama-3.2-3B-Instruct-Q8_0.gguf |
11 | 13 | jobs:
|
12 | 14 |
|
13 | 15 | build-and-test-linux:
|
|
27 | 29 | run: curl -L ${MODEL_URL} --create-dirs -o models/${MODEL_NAME}
|
28 | 30 | - name: Download reranking model
|
29 | 31 | run: curl -L ${RERANKING_MODEL_URL} --create-dirs -o models/${RERANKING_MODEL_NAME}
|
| 32 | + - name: Download tool calling model |
| 33 | + run: curl -L ${TOOL_CALLING_MODEL_URL} --create-dirs -o models/${TOOL_CALLING_MODEL_NAME} |
30 | 34 | - name: List files in models directory
|
31 | 35 | run: ls -l models/
|
32 | 36 | - name: Run tests
|
|
63 | 67 | run: curl -L ${MODEL_URL} --create-dirs -o models/${MODEL_NAME}
|
64 | 68 | - name: Download reranking model
|
65 | 69 | run: curl -L ${RERANKING_MODEL_URL} --create-dirs -o models/${RERANKING_MODEL_NAME}
|
| 70 | + - name: Download tool calling model |
| 71 | + run: curl -L ${TOOL_CALLING_MODEL_URL} --create-dirs -o models/${TOOL_CALLING_MODEL_NAME} |
66 | 72 | - name: List files in models directory
|
67 | 73 | run: ls -l models/
|
68 | 74 | - name: Run tests
|
|
91 | 97 | run: curl -L $env:MODEL_URL --create-dirs -o models/$env:MODEL_NAME
|
92 | 98 | - name: Download reranking model
|
93 | 99 | run: curl -L $env:RERANKING_MODEL_URL --create-dirs -o models/$env:RERANKING_MODEL_NAME
|
| 100 | + - name: Download tool calling model |
| 101 | + run: curl -L $env:TOOL_CALLING_MODEL_URL --create-dirs -o models/$env:TOOL_CALLING_MODEL_NAME |
94 | 102 | - name: List files in models directory
|
95 | 103 | run: ls -l models/
|
96 | 104 | - name: Run tests
|
|
0 commit comments