Skip to content

@sqlrooms/ai / AddToolOutput

Type Alias: AddToolOutput()

AddToolOutput = (options) => void

Type for adding tool outputs to the chat. Defined here (in types.ts) to avoid circular dependencies.

Parameters

ParameterType
options{ tool: string; toolCallId: string; output: unknown; } | { tool: string; toolCallId: string; state: "output-error"; errorText: string; }

Returns

void