@arcadialdev/arcality 4.1.2 → 4.1.4

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": "@arcadialdev/arcality",
3
- "version": "4.1.2",
3
+ "version": "4.1.4",
4
4
  "description": "El primer ingeniero QA Autónomo integrado al CI/CD. Creado por Arcadial.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -1339,7 +1339,7 @@ async function arcalityChat(messages) {
1339
1339
  system: systemMessage ? systemMessage.content : undefined,
1340
1340
  messages: userMessages,
1341
1341
  max_tokens: 4000,
1342
- temperature: 0.3
1342
+ ...(!isProxyMode ? { temperature: 0.3 } : {})
1343
1343
  })
1344
1344
  });
1345
1345
 
@@ -2252,6 +2252,11 @@ async function main() {
2252
2252
  LOGIN_PASSWORD: projectConfig?.auth?.password || dotEnv.LOGIN_PASSWORD || process.env.LOGIN_PASSWORD,
2253
2253
  ARCALITY_ASSETS_FILE: projectConfig?.assets?.manifestPath || dotEnv.ARCALITY_ASSETS_FILE || process.env.ARCALITY_ASSETS_FILE || path.join(ORIGINAL_CWD, '.arcality', 'assets.json'),
2254
2254
  ARCALITY_ASSETS_DIR: projectConfig?.assets?.directory || dotEnv.ARCALITY_ASSETS_DIR || process.env.ARCALITY_ASSETS_DIR || path.join(ORIGINAL_CWD, '.arcality', 'assets'),
2255
+ ARCALITY_RUN_DOMAIN_DIR: process.env.DOMAIN_DIR,
2256
+ ARCALITY_RUN_MISSIONS_DIR: process.env.MISSIONS_DIR,
2257
+ ARCALITY_RUN_CONTEXT_DIR: process.env.CONTEXT_DIR,
2258
+ ARCALITY_RUN_REPORTS_DIR: process.env.REPORTS_DIR,
2259
+ ARCALITY_RUN_PLAYWRIGHT_OUTPUT_DIR: process.env.PLAYWRIGHT_OUTPUT_DIR,
2255
2260
  DOMAIN_DIR: process.env.DOMAIN_DIR,
2256
2261
  MISSIONS_DIR: process.env.MISSIONS_DIR,
2257
2262
  CONTEXT_DIR: process.env.CONTEXT_DIR,
@@ -3646,7 +3646,7 @@ ${relevantFailures.map((m) => `- ${m.prompt}`).join("\n")}
3646
3646
  ${JSON.stringify(diagnosticPayload, null, 2)}`
3647
3647
  }
3648
3648
  ],
3649
- temperature: 0
3649
+ ...!isProxyMode ? { temperature: 0 } : {}
3650
3650
  })
3651
3651
  });
3652
3652
  if (!response.ok)
@@ -4268,7 +4268,7 @@ ${history.slice(-25).join("\n") || "None"}`
4268
4268
  system: systemPromptBlocks,
4269
4269
  tools: anthropicTools,
4270
4270
  messages: anthropicMessages,
4271
- temperature: 0.2
4271
+ ...!isProxyMode ? { temperature: 0.2 } : {}
4272
4272
  })
4273
4273
  });
4274
4274
  } catch (fetchErr) {
@@ -5171,7 +5171,7 @@ Starting URL: ${startUrl}
5171
5171
  Execution history:
5172
5172
  ${historyStr}` }
5173
5173
  ],
5174
- temperature: 0.1
5174
+ ...!isProxyMode ? { temperature: 0.1 } : {}
5175
5175
  })
5176
5176
  });
5177
5177
  const data = await response.json();