agentgui 1.0.364 → 1.0.366

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/build-portable.js CHANGED
@@ -143,7 +143,7 @@ if (process.env.NO_BUNDLE_MODELS === 'true') {
143
143
  console.log('[BUILD] Models not found, cloning from GitHub...');
144
144
  const ciModelsDir = path.join(os.tmpdir(), 'models-clone');
145
145
  try {
146
- require('child_process').execSync(`git clone https://github.com/AnEntrypoint/models.git "${ciModelsDir}" --depth 1`, { stdio: 'inherit' });
146
+ execSync(`git clone https://github.com/AnEntrypoint/models.git "${ciModelsDir}" --depth 1`, { stdio: 'inherit' });
147
147
  modelsDir = ciModelsDir;
148
148
  } catch (e) {
149
149
  console.error('[BUILD] Failed to clone models from GitHub:', e.message);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentgui",
3
- "version": "1.0.364",
3
+ "version": "1.0.366",
4
4
  "description": "Multi-agent ACP client with real-time communication",
5
5
  "type": "module",
6
6
  "main": "server.js",