@webmcp-auto-ui/ui 2.5.24 → 2.5.25

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webmcp-auto-ui/ui",
3
- "version": "2.5.24",
3
+ "version": "2.5.25",
4
4
  "description": "Svelte 5 UI components — primitives, widgets, window manager",
5
5
  "license": "AGPL-3.0-or-later",
6
6
  "type": "module",
@@ -7,6 +7,7 @@
7
7
  maxTokens?: number;
8
8
  maxContextTokens?: number;
9
9
  maxTools?: number;
10
+ maxMessages?: number;
10
11
  maxResultLength?: number;
11
12
  compressHistory?: boolean;
12
13
  compressPreview?: number;
@@ -26,6 +27,7 @@
26
27
  maxTokens = $bindable(4096),
27
28
  maxContextTokens = $bindable(150_000),
28
29
  maxTools = $bindable(8),
30
+ maxMessages = $bindable(8),
29
31
  maxResultLength = $bindable(10000),
30
32
  compressHistory = $bindable(false),
31
33
  compressPreview = $bindable(500),
@@ -195,6 +197,15 @@
195
197
  min={4} max={20} step={1}
196
198
  class="w-full accent-accent" />
197
199
  </div>
200
+ <div>
201
+ <div class="flex justify-between items-baseline mb-1">
202
+ <span class="text-[9px] font-mono text-text2 uppercase tracking-wider">Max messages (WASM)</span>
203
+ <span class="font-mono text-xs text-text1">{maxMessages}</span>
204
+ </div>
205
+ <input type="range" bind:value={maxMessages}
206
+ min={2} max={64} step={1}
207
+ class="w-full accent-accent" />
208
+ </div>
198
209
  {/if}
199
210
 
200
211
  <!-- Max result length -->