fix: delete 9 dead functions with zero callers (#22697)

This commit is contained in:
Kit Langton
2026-04-15 22:01:02 -04:00
committed by GitHub
parent 70aeebf2df
commit 34213d4446
8 changed files with 0 additions and 107 deletions

View File

@@ -143,25 +143,6 @@ async function assistant(sessionID: SessionID, parentID: MessageID, root: string
return msg
}
async function tool(sessionID: SessionID, messageID: MessageID, tool: string, output: string) {
return svc.updatePart({
id: PartID.ascending(),
messageID,
sessionID,
type: "tool",
callID: crypto.randomUUID(),
tool,
state: {
status: "completed",
input: {},
output,
title: "done",
metadata: {},
time: { start: Date.now(), end: Date.now() },
},
})
}
function fake(
input: Parameters<SessionProcessorModule.SessionProcessor.Interface["create"]>[0],
result: "continue" | "compact",