@wrongstack/webui 0.107.2 → 0.119.1
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/assets/{index-BspuUDi_.js → index-C63oWgEk.js} +2 -2
- package/dist/assets/index-EcYyPfPQ.css +1 -0
- package/dist/index.css +15 -0
- package/dist/index.css.map +1 -1
- package/dist/index.html +2 -2
- package/dist/index.js +17 -6
- package/dist/index.js.map +1 -1
- package/dist/server/entry.js +3 -2
- package/dist/server/entry.js.map +1 -1
- package/dist/server/index.js +3 -2
- package/dist/server/index.js.map +1 -1
- package/package.json +5 -5
- package/dist/assets/index-wpKPNA1U.css +0 -1
package/dist/server/index.js
CHANGED
|
@@ -164,7 +164,7 @@ import {
|
|
|
164
164
|
collabPauseMiddleware,
|
|
165
165
|
collabInjectMiddleware,
|
|
166
166
|
estimateRequestTokensCalibrated,
|
|
167
|
-
EventBus
|
|
167
|
+
EventBus,
|
|
168
168
|
HybridCompactor as HybridCompactor2,
|
|
169
169
|
ProviderRegistry,
|
|
170
170
|
TOKENS as TOKENS2,
|
|
@@ -1618,6 +1618,7 @@ function openBrowser(url, platform = process.platform) {
|
|
|
1618
1618
|
try {
|
|
1619
1619
|
import("@wrongstack/tools").then(({ getProcessRegistry }) => {
|
|
1620
1620
|
getProcessRegistry().register({
|
|
1621
|
+
// biome-ignore lint/style/noNonNullAssertion: pid always present after spawn
|
|
1621
1622
|
pid: child.pid,
|
|
1622
1623
|
name: "browser",
|
|
1623
1624
|
command: `${command} ${args.join(" ")}`,
|
|
@@ -2078,7 +2079,7 @@ async function startWebUI(opts = {}) {
|
|
|
2078
2079
|
toolRegistry.register(relatedMemoryTool(memoryStore));
|
|
2079
2080
|
}
|
|
2080
2081
|
console.log("[WebUI] Tool registry loaded:", toolRegistry.list().length, "tools");
|
|
2081
|
-
const events = new
|
|
2082
|
+
const events = new EventBus();
|
|
2082
2083
|
events.setLogger(logger);
|
|
2083
2084
|
const sessionStore = new DefaultSessionStore2({ dir: wpaths.projectSessions });
|
|
2084
2085
|
sessionStore.prune(DEFAULT_SESSION_PRUNE_DAYS).then((count) => {
|