We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 305f944 commit ac95428Copy full SHA for ac95428
scripts/agent-evals/src/runner/gemini-cli-runner.ts
@@ -157,7 +157,10 @@ export class GeminiCliRunner implements AgentTestRunner {
157
158
for (const logData of parsedLogs) {
159
// Look for tool call logs
160
- if (logData.attributes?.function_name && logData.attributes["event.name"] === "gemini_cli.tool_call") {
+ if (
161
+ logData.attributes?.function_name &&
162
+ logData.attributes["event.name"] === "gemini_cli.tool_call"
163
+ ) {
164
logs.push({
165
name: logData.attributes.function_name,
166
args: logData.attributes.function_args ?? "{}",
0 commit comments