UNPKG

ai

Version:

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

12 lines (10 loc) 318 B
import { InferUITools, UIMessage } from '../ui/ui-messages'; import { InferAgentTools } from './infer-agent-tools'; /** * Infer the UI message type of an agent. */ export type InferAgentUIMessage<AGENT, MESSAGE_METADATA = unknown> = UIMessage< MESSAGE_METADATA, never, InferUITools<InferAgentTools<AGENT>> >;