Skip to content

Commit 85da27b

Browse files
committed
synced to llama.cpp tag:b4381 short:b92a14a
1 parent 20103ea commit 85da27b

File tree

3 files changed

+47
-30
lines changed

3 files changed

+47
-30
lines changed

scripts/setup.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
CWD=$(pwd)
99
THIRDPARTY=${CWD}/thirdparty
10-
LAST_WORKING="b4375"
10+
LAST_WORKING="b4381"
1111
LLAMACPP_VERSION="${2:-${LAST_WORKING}}"
1212
STABLE_BUILD=1
1313
GET_LAST_WORKING="${1:-$STABLE_BUILD}"

scripts/snap.sh

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
SHORT=`cd build/llama.cpp && git rev-parse --short HEAD`
2+
TAG=`cd build/llama.cpp && git tag --points-at HEAD`
3+
4+
# echo "tag:${TAG} short:${SHORT}"
5+
6+
git add --all .
7+
git commit -m "synced to llama.cpp tag:${TAG} short:${SHORT}"
8+
git push
9+
10+
git switch main
11+
git merge dev
12+
git push
13+
git switch dev
14+
15+

tests/test_chat.py

+31-29
Original file line numberDiff line numberDiff line change
@@ -4,33 +4,35 @@
44

55
def test_chat_builtin_templates():
66
assert cy.chat_builtin_templates() == [
7-
'chatglm3',
8-
'chatglm4',
9-
'chatml',
10-
'command-r',
11-
'deepseek',
12-
'deepseek2',
13-
'exaone3',
14-
'gemma',
15-
'gigachat',
16-
'granite',
17-
'llama2',
18-
'llama2-sys',
19-
'llama2-sys-bos',
20-
'llama2-sys-strip',
21-
'llama3',
22-
'minicpm',
23-
'mistral-v1',
24-
'mistral-v3',
25-
'mistral-v3-tekken',
26-
'mistral-v7',
27-
'monarch',
28-
'openchat',
29-
'orion',
30-
'phi3',
31-
'rwkv-world',
32-
'vicuna',
33-
'vicuna-orca',
34-
'zephyr',
35-
]
7+
'chatglm3',
8+
'chatglm4',
9+
'chatml',
10+
'command-r',
11+
'deepseek',
12+
'deepseek2',
13+
'exaone3',
14+
'falcon3',
15+
'gemma',
16+
'gigachat',
17+
'granite',
18+
'llama2',
19+
'llama2-sys',
20+
'llama2-sys-bos',
21+
'llama2-sys-strip',
22+
'llama3',
23+
'megrez',
24+
'minicpm',
25+
'mistral-v1',
26+
'mistral-v3',
27+
'mistral-v3-tekken',
28+
'mistral-v7',
29+
'monarch',
30+
'openchat',
31+
'orion',
32+
'phi3',
33+
'rwkv-world',
34+
'vicuna',
35+
'vicuna-orca',
36+
'zephyr',
37+
]
3638

0 commit comments

Comments
 (0)