Skip to content

Commit d2d4241

Browse files
committed
GHA: fixed llama.cpp paths
1 parent 17e75d0 commit d2d4241

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/llama_cpp_plugin_build_and_test.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
pull_request:
55
paths:
66
- 'modules/llama_cpp_plugin/**'
7+
- '.github/workflows/llama_cpp_plugin_build_and_test.yml'
78

89
permissions: read-all
910

@@ -60,10 +61,10 @@ jobs:
6061

6162
- name: Prepare test data - convert test model files
6263
run: |
63-
pip install -r llama.cpp/requirements/requirements-convert-hf-to-gguf.txt
64+
pip install -r llama.cpp/requirements/requirements-convert_hf_to_gguf.txt
6465
huggingface-cli download gpt2 model.safetensors tokenizer.json tokenizer_config.json vocab.json config.json merges.txt --local-dir hf_gpt2
6566
mkdir -p ${{ github.workspace }}/test_data
66-
python3 llama.cpp/convert-hf-to-gguf.py hf_gpt2 --outtype f32 --outfile ${{ github.workspace }}/test_data/gpt2.gguf
67+
python3 llama.cpp/convert_hf_to_gguf.py hf_gpt2 --outtype f32 --outfile ${{ github.workspace }}/test_data/gpt2.gguf
6768
6869
- name: Install libtbb2
6970
run: |

0 commit comments

Comments
 (0)