@ulrichc1/sparn 1.2.1 → 1.2.2

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/dist/index.d.cts CHANGED
@@ -229,7 +229,7 @@ interface UIConfig {
229
229
  interface RealtimeConfig {
230
230
  /** Target token budget for optimized context (default: 50000) */
231
231
  tokenBudget: number;
232
- /** Token threshold that triggers auto-optimization (default: 80000) */
232
+ /** Token threshold that triggers auto-optimization (default: 60000) */
233
233
  autoOptimizeThreshold: number;
234
234
  /** File patterns to watch for changes (default: ['**\/*.jsonl']) */
235
235
  watchPatterns: string[];
package/dist/index.d.ts CHANGED
@@ -229,7 +229,7 @@ interface UIConfig {
229
229
  interface RealtimeConfig {
230
230
  /** Target token budget for optimized context (default: 50000) */
231
231
  tokenBudget: number;
232
- /** Token threshold that triggers auto-optimization (default: 80000) */
232
+ /** Token threshold that triggers auto-optimization (default: 60000) */
233
233
  autoOptimizeThreshold: number;
234
234
  /** File patterns to watch for changes (default: ['**\/*.jsonl']) */
235
235
  watchPatterns: string[];
package/dist/index.js CHANGED
@@ -1733,8 +1733,8 @@ var DEFAULT_CONFIG = {
1733
1733
  },
1734
1734
  autoConsolidate: null,
1735
1735
  realtime: {
1736
- tokenBudget: 5e4,
1737
- autoOptimizeThreshold: 8e4,
1736
+ tokenBudget: 4e4,
1737
+ autoOptimizeThreshold: 6e4,
1738
1738
  watchPatterns: ["**/*.jsonl"],
1739
1739
  pidFile: ".sparn/daemon.pid",
1740
1740
  logFile: ".sparn/daemon.log",