Skip to content

Commit 38917e3

Browse files
committed
chore: remove dead batch checks from notification.ts
1 parent 811f6b2 commit 38917e3

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

lib/notification.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,6 @@ async function sendDetailedSummary(
126126
const missingTools = llmPrunedIds.filter(id => {
127127
const normalizedId = id.toLowerCase()
128128
const metadata = toolMetadata.get(normalizedId)
129-
if (metadata?.tool === 'batch') return false
130129
return !metadata || !foundToolNames.has(metadata.tool)
131130
})
132131

@@ -174,7 +173,6 @@ export function buildToolsSummary(
174173
const metadata = toolMetadata.get(normalizedId)
175174
if (metadata) {
176175
const toolName = metadata.tool
177-
if (toolName === 'batch') continue
178176
if (!toolsSummary.has(toolName)) {
179177
toolsSummary.set(toolName, [])
180178
}

0 commit comments

Comments
 (0)