UNPKG

ai

Version:

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

8 lines (6 loc) 185 B
import { Agent } from './agent'; /** * Infer the type of the tools of an agent. */ export type InferAgentTools<AGENT> = AGENT extends Agent<any, infer TOOLS, any> ? TOOLS : never;