mirror of
https://github.com/LostRuins/koboldcpp.git
synced 2026-09-19 01:05:09 +02:00
updated lite
This commit is contained in:
+9
-1
@@ -4368,6 +4368,11 @@ Current version indicated by LITEVER below.
|
||||
const n = text.length;
|
||||
let i = 0;
|
||||
|
||||
if(!text)
|
||||
{
|
||||
return [""];
|
||||
}
|
||||
|
||||
while (i < n) {
|
||||
// Find the next delimiter occurrence at or after i
|
||||
let nextIndex = -1;
|
||||
@@ -21134,7 +21139,10 @@ Current version indicated by LITEVER below.
|
||||
}
|
||||
for(let i=0;i<turns.length;++i)
|
||||
{
|
||||
gametext_arr.push(turns[i]);
|
||||
if(turns[i])
|
||||
{
|
||||
gametext_arr.push(turns[i]);
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user