Commit 409e393 1 parent 153da19 commit 409e393 Copy full SHA for 409e393
File tree 3 files changed +6
-3
lines changed
3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ extracted_ver=$(cat koboldcpp.py | grep 'KcppVersion = ' | cut -d '"' -f2)
4
4
echo " Extracted Version: $extracted_ver "
5
5
vmajor=$( echo $extracted_ver | cut -d ' .' -f1)
6
6
vminor=$( echo $extracted_ver | cut -d ' .' -f2)
7
- echo " Major Version: $vmajor "
8
- echo " Minor Version: $vminor "
7
+ echo " Parsed Major Version: $vmajor "
8
+ echo " Parsed Minor Version: $vminor "
9
9
cp version_template.txt version.txt
10
10
sed " s/MYVER_MAJOR/$vmajor /g" version.txt > tempversion.txt && mv tempversion.txt version.txt
11
11
sed " s/MYVER_MINOR/$vminor /g" version.txt > tempversion.txt && mv tempversion.txt version.txt
Original file line number Diff line number Diff line change 47
47
modelbusy = threading .Lock ()
48
48
requestsinqueue = 0
49
49
defaultport = 5001
50
- KcppVersion = "1.79"
50
+ KcppVersion = "1.79.1 "
51
51
showdebug = True
52
52
guimode = False
53
53
showsamplerwarning = True
Original file line number Diff line number Diff line change @@ -95,6 +95,9 @@ enum sd_type_t {
95
95
SD_TYPE_Q4_0_8_8 = 33 ,
96
96
SD_TYPE_TQ1_0 = 34 ,
97
97
SD_TYPE_TQ2_0 = 35 ,
98
+ SD_TYPE_IQ4_NL_4_4 = 36 ,
99
+ // SD_TYPE_IQ4_NL_4_8 = 37,
100
+ // SD_TYPE_IQ4_NL_8_8 = 38,
98
101
SD_TYPE_COUNT ,
99
102
};
100
103
You can’t perform that action at this time.
0 commit comments