mirror of
https://github.com/LostRuins/koboldcpp.git
synced 2025-09-10 17:14:36 +00:00
updated lite, up ver, remove bell
This commit is contained in:
parent
c5f5209d37
commit
886f4eed79
3 changed files with 19 additions and 8 deletions
|
@ -292,6 +292,7 @@ def utfprint(str):
|
|||
except UnicodeEncodeError:
|
||||
# Replace or omit the problematic character
|
||||
utf_string = str.encode('ascii', 'ignore').decode('ascii')
|
||||
utf_string = utf_string.replace('\a', '') #remove bell characters
|
||||
print(utf_string)
|
||||
|
||||
#################################################################
|
||||
|
@ -304,7 +305,7 @@ maxhordectx = 1024
|
|||
maxhordelen = 256
|
||||
modelbusy = threading.Lock()
|
||||
defaultport = 5001
|
||||
KcppVersion = "1.40.1"
|
||||
KcppVersion = "1.41"
|
||||
showdebug = True
|
||||
showsamplerwarning = True
|
||||
showmaxctxwarning = True
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue