@mndrk/agx 1.4.49 → 1.4.51
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/lib/cli/cloud/iterations.js +2 -2
- package/lib/executor.js +1 -1
- package/package.json +1 -1
|
@@ -39,7 +39,7 @@ function createCloudIterationHelpers(env) {
|
|
|
39
39
|
logger?.log('system', `[swarm] iteration start\n`);
|
|
40
40
|
|
|
41
41
|
const results = await pMap(providers, (provider, index) => {
|
|
42
|
-
const args = [provider, '--cloud-task', taskId];
|
|
42
|
+
const args = [provider, '-y', '--cloud-task', taskId];
|
|
43
43
|
const modelForProvider = swarmModels.length
|
|
44
44
|
? swarmModels[index]?.model || null
|
|
45
45
|
: null;
|
|
@@ -99,7 +99,7 @@ function createCloudIterationHelpers(env) {
|
|
|
99
99
|
async function runSingleAgentIteration({ taskId, task, provider, model, prompt, logger, onStdout, onStderr, artifacts, cancellationWatcher, env, cwd }) {
|
|
100
100
|
logExecutionFlow('runSingleAgentIteration', 'input', `taskId=${taskId}, provider=${provider}, model=${model}, prompt=${Boolean(prompt) ? 'present' : 'none'}`);
|
|
101
101
|
logExecutionFlow('runSingleAgentIteration', 'processing', 'preparing runAgxCommand');
|
|
102
|
-
const args = [provider, '--cloud-task', taskId];
|
|
102
|
+
const args = [provider, '-y', '--cloud-task', taskId];
|
|
103
103
|
if (model) {
|
|
104
104
|
args.push('--model', model);
|
|
105
105
|
}
|
package/lib/executor.js
CHANGED