UNPKG

ai

Version:

AI SDK by Vercel - The AI Toolkit for TypeScript and JavaScript

8 lines (6 loc) 237 B
import { TypedToolError } from './tool-error'; import { TypedToolResult } from './tool-result'; import { ToolSet } from './tool-set'; export type ToolOutput<TOOLS extends ToolSet> = | TypedToolResult<TOOLS> | TypedToolError<TOOLS>;