@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/entry.js
CHANGED
|
@@ -165,7 +165,7 @@ import {
|
|
|
165
165
|
collabPauseMiddleware,
|
|
166
166
|
collabInjectMiddleware,
|
|
167
167
|
estimateRequestTokensCalibrated,
|
|
168
|
-
EventBus
|
|
168
|
+
EventBus,
|
|
169
169
|
HybridCompactor as HybridCompactor2,
|
|
170
170
|
ProviderRegistry,
|
|
171
171
|
TOKENS as TOKENS2,
|
|
@@ -1619,6 +1619,7 @@ function openBrowser(url, platform = process.platform) {
|
|
|
1619
1619
|
try {
|
|
1620
1620
|
import("@wrongstack/tools").then(({ getProcessRegistry }) => {
|
|
1621
1621
|
getProcessRegistry().register({
|
|
1622
|
+
// biome-ignore lint/style/noNonNullAssertion: pid always present after spawn
|
|
1622
1623
|
pid: child.pid,
|
|
1623
1624
|
name: "browser",
|
|
1624
1625
|
command: `${command} ${args.join(" ")}`,
|
|
@@ -2071,7 +2072,7 @@ async function startWebUI(opts = {}) {
|
|
|
2071
2072
|
toolRegistry.register(relatedMemoryTool(memoryStore));
|
|
2072
2073
|
}
|
|
2073
2074
|
console.log("[WebUI] Tool registry loaded:", toolRegistry.list().length, "tools");
|
|
2074
|
-
const events = new
|
|
2075
|
+
const events = new EventBus();
|
|
2075
2076
|
events.setLogger(logger);
|
|
2076
2077
|
const sessionStore = new DefaultSessionStore2({ dir: wpaths.projectSessions });
|
|
2077
2078
|
sessionStore.prune(DEFAULT_SESSION_PRUNE_DAYS).then((count) => {
|