nit: show dir in title, and less... jank (#7138)

This commit is contained in:
Michael Neale
2026-02-13 15:16:46 +11:00
committed by GitHub
parent 860c7d7b97
commit 85348d2745
8 changed files with 183 additions and 216 deletions
+3 -2
View File
@@ -30,8 +30,9 @@ run_test() {
# Verify: code_execution tool must be called
# Matches: "execute | code_execution", "get_function_details | code_execution",
# "tool call | execute", "tool calls | execute"
if grep -qE "(execute \| code_execution)|(get_function_details \| code_execution)|(tool calls? \| execute)" "$output_file"; then
# "tool call | execute", "tool calls | execute" (old format)
# "▸ execute N tool call" (new format with tool_graph)
if grep -qE "(execute \| code_execution)|(get_function_details \| code_execution)|(tool calls? \| execute)|(▸.*execute.*tool call)" "$output_file"; then
echo "success|code_execution tool called" > "$result_file"
else
echo "failure|no code_execution tool calls found" > "$result_file"