MCPcopy Create free account
hub / github.com/openai/plugins / isToolEvent

Function isToolEvent

plugins/plugin-eval/src/core/benchmark-events.js:143–149  ·  view source on GitHub ↗
(event)

Source from the content-addressed store, hash-verified

141}
142
143function isToolEvent(event) {
144 const type = typeof event?.type === "string" ? event.type : "";
145 return Boolean(
146 extractToolName(event) ||
147 type.includes("tool"),
148 );
149}
150
151function isFailureEvent(event) {
152 const type = typeof event?.type === "string" ? event.type : "";

Callers 1

summarizeCodexEventsFunction · 0.85

Calls 1

extractToolNameFunction · 0.85

Tested by

no test coverage detected