AI SDK Tools
const weatherTool = tool({
description: "날씨 조회",
parameters: z.object({city: z.string()}),
execute: async ({city}) => {...}
});Vercel AI SDK의 도구 정의. Zod 스키마 기반 type-safe.
const weatherTool = tool({
description: "날씨 조회",
parameters: z.object({city: z.string()}),
execute: async ({city}) => {...}
});