diff --git a/.codecontextignore b/.codecontextignore index 9a99c56..01bf692 100644 --- a/.codecontextignore +++ b/.codecontextignore @@ -21,6 +21,7 @@ out/ .opencode/ .vscode/ .idea/ +.claude/worktrees/ # Test artifacts / coverage coverage/ diff --git a/apps/server/src/services/inference/budget.ts b/apps/server/src/services/inference/budget.ts index f8bb94d..eedd9ed 100644 --- a/apps/server/src/services/inference/budget.ts +++ b/apps/server/src/services/inference/budget.ts @@ -18,9 +18,9 @@ import { READ_ONLY_TOOL_NAMES } from '../tools.js'; // turns + deeper exploration without changing the safety floor materially — // the doom-loop guard (3 identical calls → abort) catches the actual failure // mode this cap was guarding against. -export const BUDGET_READ_ONLY = 50; -export const BUDGET_NON_READ_ONLY = 10; -export const BUDGET_NO_AGENT = 50; +export const BUDGET_READ_ONLY = 100; +export const BUDGET_NON_READ_ONLY = 100; +export const BUDGET_NO_AGENT = 100; const READ_ONLY_SET: ReadonlySet = new Set(READ_ONLY_TOOL_NAMES);