]> Piment Noir Git Repositories - e-mobility-charging-stations-simulator.git/commitdiff
chore(sandcastle): add agent effort constants (future use)
authorJérôme Benoit <jerome.benoit@sap.com>
Thu, 7 May 2026 10:39:27 +0000 (12:39 +0200)
committerJérôme Benoit <jerome.benoit@sap.com>
Thu, 7 May 2026 10:39:58 +0000 (12:39 +0200)
.sandcastle/constants.ts

index 3e0a0a78693061d7fd0c6d1ccbb764cbe102229c..59ff6beb48fa3732e45d12f3d918d5ac2e9215b1 100644 (file)
@@ -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