lumiverse-spindle-types 0.6.4 → 0.6.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/council.ts +3 -0
package/package.json
CHANGED
package/src/council.ts
CHANGED
|
@@ -52,6 +52,8 @@ export interface CouncilToolsSettings {
|
|
|
52
52
|
timeoutMs: number;
|
|
53
53
|
/** Number of recent chat messages to include in sidecar context. */
|
|
54
54
|
sidecarContextWindow: number;
|
|
55
|
+
/** Omit the newest user-authored message from sidecar council-tool context. */
|
|
56
|
+
excludeLatestUserMessage: boolean;
|
|
55
57
|
includeUserPersona: boolean;
|
|
56
58
|
includeCharacterInfo: boolean;
|
|
57
59
|
includeWorldInfo: boolean;
|
|
@@ -214,6 +216,7 @@ export const COUNCIL_TOOLS_DEFAULTS: CouncilToolsSettings = {
|
|
|
214
216
|
mode: "sidecar",
|
|
215
217
|
timeoutMs: 30000,
|
|
216
218
|
sidecarContextWindow: 25,
|
|
219
|
+
excludeLatestUserMessage: false,
|
|
217
220
|
includeUserPersona: true,
|
|
218
221
|
includeCharacterInfo: true,
|
|
219
222
|
includeWorldInfo: true,
|