@mndrk/agx 1.4.51 → 1.4.52
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.
|
@@ -42,7 +42,7 @@ function createCloudAggregateHelpers(env) {
|
|
|
42
42
|
});
|
|
43
43
|
artifacts?.recordPrompt(`Aggregator Prompt (${aggregatorProvider}${aggregatorModel ? `/${aggregatorModel}` : ''})`, aggregatePrompt);
|
|
44
44
|
|
|
45
|
-
const aggregateArgs = [aggregatorProvider, '--prompt', aggregatePrompt, '--print'];
|
|
45
|
+
const aggregateArgs = [aggregatorProvider, '-y', '--prompt', aggregatePrompt, '--print'];
|
|
46
46
|
if (aggregatorModel) {
|
|
47
47
|
aggregateArgs.push('--model', aggregatorModel);
|
|
48
48
|
}
|
|
@@ -103,7 +103,7 @@ function createCloudAggregateHelpers(env) {
|
|
|
103
103
|
});
|
|
104
104
|
artifacts?.recordPrompt(`Swarm Aggregator Prompt (${aggregatorProvider}${aggregatorModel ? `/${aggregatorModel}` : ''})`, aggregatePrompt);
|
|
105
105
|
|
|
106
|
-
const aggregateArgs = [aggregatorProvider, '--prompt', aggregatePrompt, '--print'];
|
|
106
|
+
const aggregateArgs = [aggregatorProvider, '-y', '--prompt', aggregatePrompt, '--print'];
|
|
107
107
|
if (aggregatorModel) {
|
|
108
108
|
aggregateArgs.push('--model', aggregatorModel);
|
|
109
109
|
}
|
|
@@ -161,7 +161,7 @@ function createCloudExecuteVerifySingle(env) {
|
|
|
161
161
|
const verifyArtifacts = createDaemonArtifactsRecorder({ storage, run: verifyRun, taskId });
|
|
162
162
|
verifyArtifacts.recordPrompt(`Verification Prompt (${provider}${model ? `/${model}` : ''}, iter ${iteration})`, verifyPrompt);
|
|
163
163
|
|
|
164
|
-
const verifyArgs = [provider, '--prompt', verifyPrompt, '--print'];
|
|
164
|
+
const verifyArgs = [provider, '-y', '--prompt', verifyPrompt, '--print'];
|
|
165
165
|
if (model) verifyArgs.push('--model', model);
|
|
166
166
|
|
|
167
167
|
await abortIfCancelled(cancellationWatcher);
|
|
@@ -167,7 +167,7 @@ function createCloudExecuteVerifySwarm(env) {
|
|
|
167
167
|
const verifyArtifacts = createDaemonArtifactsRecorder({ storage, run: verifyRun, taskId });
|
|
168
168
|
verifyArtifacts.recordPrompt(`Verification Prompt (${verifierProvider}${verifierModel ? `/${verifierModel}` : ''}, iter ${iteration})`, verifyPrompt);
|
|
169
169
|
|
|
170
|
-
const verifyArgs = [verifierProvider, '--prompt', verifyPrompt, '--print'];
|
|
170
|
+
const verifyArgs = [verifierProvider, '-y', '--prompt', verifyPrompt, '--print'];
|
|
171
171
|
if (verifierModel) verifyArgs.push('--model', verifierModel);
|
|
172
172
|
|
|
173
173
|
let verifyRes;
|