mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-03-02 02:47:52 +01:00
join chatlog with \x01
This commit is contained in:
parent
86b114b5e5
commit
96fe4c4ab6
@ -217,15 +217,15 @@ class WorldInfoBuffer {
|
||||
depth = MAX_SCAN_DEPTH;
|
||||
}
|
||||
|
||||
let result = this.#depthBuffer.slice(this.#startDepth, depth).join('\n');
|
||||
let result = this.#depthBuffer.slice(this.#startDepth, depth).join('\n\x01');
|
||||
|
||||
if (this.#injectBuffer.length > 0) {
|
||||
result += '\n' + this.#injectBuffer.join('\n');
|
||||
result += '\n\x01' + this.#injectBuffer.join('\n\x01');
|
||||
}
|
||||
|
||||
// Min activations should not include the recursion buffer
|
||||
if (this.#recurseBuffer.length > 0 && scanState !== scan_state.MIN_ACTIVATIONS) {
|
||||
result += '\n' + this.#recurseBuffer.join('\n');
|
||||
result += '\n\x01' + this.#recurseBuffer.join('\n\x01');
|
||||
}
|
||||
|
||||
return result;
|
||||
|
Loading…
x
Reference in New Issue
Block a user