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 +1 -1
- package/package.json +1 -1
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
|
-
|
|
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);
|