Skip to content

Commit ac95428

Browse files
committed
Fmt
1 parent 305f944 commit ac95428

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

scripts/agent-evals/src/runner/gemini-cli-runner.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,10 @@ export class GeminiCliRunner implements AgentTestRunner {
157157

158158
for (const logData of parsedLogs) {
159159
// Look for tool call logs
160-
if (logData.attributes?.function_name && logData.attributes["event.name"] === "gemini_cli.tool_call") {
160+
if (
161+
logData.attributes?.function_name &&
162+
logData.attributes["event.name"] === "gemini_cli.tool_call"
163+
) {
161164
logs.push({
162165
name: logData.attributes.function_name,
163166
args: logData.attributes.function_args ?? "{}",

0 commit comments

Comments
 (0)