agentgui 1.0.667 → 1.0.668

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": "agentgui",
3
- "version": "1.0.667",
3
+ "version": "1.0.668",
4
4
  "description": "Multi-agent ACP client with real-time communication",
5
5
  "type": "module",
6
6
  "main": "server.js",
@@ -155,7 +155,8 @@ class ConversationManager {
155
155
 
156
156
  async fetchHomePath() {
157
157
  try {
158
- const data = await window.wsClient.rpc('home');
158
+ const res = await fetch(`${window.BASE_URL || '/gm'}/api/home`);
159
+ const data = await res.json();
159
160
  this.folderBrowser.homePath = data.home || '~';
160
161
  this.folderBrowser.cwdPath = data.cwd || null;
161
162
  } catch (e) {