Spaces:
Runtime error
Runtime error
File size: 406 Bytes
4782147 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | import { tool as createTool } from "ai";
import { z } from "zod";
export const createPieChartTool = createTool({
description: "Create a pie chart",
inputSchema: z.object({
data: z.array(z.object({ label: z.string(), value: z.number() })),
title: z.string(),
description: z.string().nullable(),
unit: z.string().nullable(),
}),
execute: async () => {
return "Success";
},
});
|