From: Jérôme Benoit Date: Thu, 7 May 2026 10:39:27 +0000 (+0200) Subject: chore(sandcastle): add agent effort constants (future use) X-Git-Tag: cli@v4.7.0~17 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=d451101adb8df48bd97db05bf1c25965f591b3cd;p=e-mobility-charging-stations-simulator.git chore(sandcastle): add agent effort constants (future use) --- diff --git a/.sandcastle/constants.ts b/.sandcastle/constants.ts index 3e0a0a78..59ff6beb 100644 --- a/.sandcastle/constants.ts +++ b/.sandcastle/constants.ts @@ -3,8 +3,12 @@ import { existsSync } from 'node:fs' // ── Agent ──────────────────────────────────────────────────────────────────── +export const AGENT_ACTOR_EFFORT = 'high' + export const AGENT_ACTOR_MODEL = 'github-copilot/claude-sonnet-4.6' +export const AGENT_CRITIC_EFFORT = 'medium' + export const AGENT_CRITIC_MODEL = 'github-copilot/gpt-5.4' export const AGENT_IDLE_TIMEOUT_S = 300 @@ -13,6 +17,8 @@ export const AGENT_ITERATION_BUDGET = 50 export const AGENT_MAX_CRITIC_ROUNDS = 10 +export const AGENT_PLANNER_EFFORT = 'low' + export const AGENT_PLANNER_MODEL = 'github-copilot/claude-opus-4.6' export const AGENT_TASK_TIMEOUT_MS = 6_000_000