mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-01-20 21:41:32 +01:00
Merge pull request #2843 from steve02081504/patch-1
join chatlog with `\x01`
This commit is contained in:
commit
2b08d61c27
@ -217,15 +217,16 @@ class WorldInfoBuffer {
|
||||
depth = MAX_SCAN_DEPTH;
|
||||
}
|
||||
|
||||
let result = this.#depthBuffer.slice(this.#startDepth, depth).join('\n');
|
||||
const JOINER = '\n\x01';
|
||||
let result = this.#depthBuffer.slice(this.#startDepth, depth).join(JOINER);
|
||||
|
||||
if (this.#injectBuffer.length > 0) {
|
||||
result += '\n' + this.#injectBuffer.join('\n');
|
||||
result += JOINER + this.#injectBuffer.join(JOINER);
|
||||
}
|
||||
|
||||
// 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 += JOINER + this.#recurseBuffer.join(JOINER);
|
||||
}
|
||||
|
||||
return result;
|
||||
|
Loading…
Reference in New Issue
Block a user