mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
Don't show logprobs when using smooth streaming
This commit is contained in:
@ -90,11 +90,11 @@ function getDelay(s) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (s == ',') {
|
||||
if ([',', '\n'].includes(s)) {
|
||||
return punctuationDelayMs / 2;
|
||||
}
|
||||
|
||||
if (['.', '!', '?', '\n'].includes(s)) {
|
||||
if (['.', '!', '?'].includes(s)) {
|
||||
return punctuationDelayMs;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user