fix: optional toolCallID

This commit is contained in:
adamdotdevin
2025-07-31 10:09:44 -05:00
parent a0f82ecef8
commit 1606b52fd7
+1 -1
View File
@@ -7,7 +7,7 @@ export namespace Tool {
export type Context<M extends Metadata = Metadata> = {
sessionID: string
messageID: string
toolCallID: string
toolCallID?: string
abort: AbortSignal
metadata(input: { title?: string; metadata?: M }): void
}