agentgui 1.0.202 → 1.0.203
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 +2 -2
- package/server.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentgui",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.203",
|
|
4
4
|
"description": "Multi-agent ACP client with real-time communication",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "server.js",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"better-sqlite3": "^12.6.2",
|
|
28
28
|
"busboy": "^1.6.0",
|
|
29
29
|
"express": "^5.2.1",
|
|
30
|
-
"fsbrowse": "^0.2.
|
|
30
|
+
"fsbrowse": "^0.2.17",
|
|
31
31
|
"google-auth-library": "^10.5.0",
|
|
32
32
|
"onnxruntime-node": "^1.24.1",
|
|
33
33
|
"webtalk": "github:AnEntrypoint/webtalk",
|
package/server.js
CHANGED
|
@@ -149,7 +149,7 @@ expressApp.use(BASE_URL + '/files/:conversationId', (req, res, next) => {
|
|
|
149
149
|
return res.status(404).json({ error: 'Conversation not found or no working directory' });
|
|
150
150
|
}
|
|
151
151
|
// Create a fresh fsbrowse router for this conversation's directory
|
|
152
|
-
const router = fsbrowse({ baseDir: conv.workingDirectory });
|
|
152
|
+
const router = fsbrowse({ baseDir: conv.workingDirectory, name: 'Files' });
|
|
153
153
|
// Strip the conversationId param from the path before passing to fsbrowse
|
|
154
154
|
req.baseUrl = BASE_URL + '/files/' + req.params.conversationId;
|
|
155
155
|
router(req, res, next);
|