summaryrefslogtreecommitdiff
path: root/Omni/Agent
diff options
context:
space:
mode:
authorBen Sima <ben@bensima.com>2025-12-01 14:13:41 -0500
committerBen Sima <ben@bensima.com>2025-12-01 14:13:41 -0500
commit45841c3f948dabcc177d2306246020bc339709ae (patch)
tree3f179386b47f6ee87f9d056789539e9843bce0e1 /Omni/Agent
parent9c3034853c3cacea8a77358467acf46e75c982f5 (diff)
Show tool call arguments inline instead of JSON blob
- Add formatToolCallSummary to extract key argument from JSON - Shows run_bash command, file paths for read/edit/write, patterns for search - Display summary inline in tool call header (e.g., run_bash: `ls -la`) - Increase token guardrail from 1M to 2M to prevent premature stops Task-Id: t-212
Diffstat (limited to 'Omni/Agent')
-rw-r--r--Omni/Agent/Worker.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Omni/Agent/Worker.hs b/Omni/Agent/Worker.hs
index 286836a..0ad5a56 100644
--- a/Omni/Agent/Worker.hs
+++ b/Omni/Agent/Worker.hs
@@ -316,7 +316,7 @@ runWithEngine worker repo task = do
let guardrails =
Engine.Guardrails
{ Engine.guardrailMaxCostCents = 200.0,
- Engine.guardrailMaxTokens = 1000000,
+ Engine.guardrailMaxTokens = 2000000,
Engine.guardrailMaxDuplicateToolCalls = 20,
Engine.guardrailMaxTestFailures = 3
}