We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92edf80 commit 4252cc1Copy full SHA for 4252cc1
scripts/agent-evals/src/runner/gemini-cli-runner.ts
@@ -162,7 +162,7 @@ export class GeminiCliRunner implements AgentTestRunner {
162
163
for (const logData of parsedLogs) {
164
// Look for tool call logs
165
- if (logData.attributes && logData.attributes["event.name"] === "gemini_cli.tool_call") {
+ if (logData.attributes?.function_name && logData.attributes["event.name"] === "gemini_cli.tool_call") {
166
const toolName = logData.attributes.function_name!;
167
logs.push({
168
name: toolName,
0 commit comments