We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 811f6b2 commit 38917e3Copy full SHA for 38917e3
lib/notification.ts
@@ -126,7 +126,6 @@ async function sendDetailedSummary(
126
const missingTools = llmPrunedIds.filter(id => {
127
const normalizedId = id.toLowerCase()
128
const metadata = toolMetadata.get(normalizedId)
129
- if (metadata?.tool === 'batch') return false
130
return !metadata || !foundToolNames.has(metadata.tool)
131
})
132
@@ -174,7 +173,6 @@ export function buildToolsSummary(
174
173
175
if (metadata) {
176
const toolName = metadata.tool
177
- if (toolName === 'batch') continue
178
if (!toolsSummary.has(toolName)) {
179
toolsSummary.set(toolName, [])
180
}
0 commit comments