Type Alias: ToolCallState
type ToolCallState =
| typeof IN_PROGRESS
| typeof COMPLETED
| typeof FAILED
| typeof INTERRUPTIBLE
| typeof UNINTERRUPTIBLE;Defined in: packages/protocol/src/language-model/item.ts:256
State of a tool call execution.