Files
wehub-resource-sync e30e75b5d4
Changesets / Create Version PR (push) Has been cancelled
Deploy Shadcn Registry / Deploy Production (push) Has been cancelled
Template Metrics / LOC + Bundle Size (push) Has been cancelled
Code Quality / Oxlint + Oxfmt (push) Has been cancelled
Code Quality / Template Sync (push) Has been cancelled
Code Quality / Build Changed Packages (push) Has been cancelled
Code Quality / Test Changed Packages (push) Has been cancelled
Deploy Expo Example / Deploy Production (push) Has been cancelled
Deploy Ink Example / Deploy Production (push) Has been cancelled
Python Tests / pytest (assistant-stream, 3.10) (push) Has been cancelled
Python Tests / pytest (assistant-stream, 3.12) (push) Has been cancelled
Python Tests / pytest (assistant-ui-sync-server-api, 3.10) (push) Has been cancelled
Python Tests / pytest (assistant-ui-sync-server-api, 3.12) (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:40:13 +08:00

43 lines
1.5 KiB
TypeScript

"use generative";
import { defineToolkit, externalTool, humanTool } from "@assistant-ui/react";
import { ChartToolUI } from "@/components/chart-tool-ui";
import { DatePickerToolUI } from "@/components/date-picker-tool-ui";
import { ContactFormToolUI } from "@/components/contact-form-tool-ui";
import { LocationToolUI } from "@/components/location-tool-ui";
import { z } from "zod";
export default defineToolkit({
select_date: {
description:
"Ask the user to select a date. Use this when you need to collect a date (e.g. for scheduling, booking, deadlines).",
parameters: z.object({
prompt: z.string().describe("Message to display to the user"),
minDate: z.string().optional().describe("Minimum date (ISO string)"),
maxDate: z.string().optional().describe("Maximum date (ISO string)"),
}),
execute: humanTool(),
render: DatePickerToolUI,
},
collect_contact: {
description:
"Collect contact information from the user. Use this when you need the user's name, email, or phone number.",
parameters: z.object({
prompt: z.string().describe("Message to display to the user"),
fields: z
.array(z.enum(["name", "email", "phone"]))
.describe("Which fields to collect"),
}),
execute: humanTool(),
render: ContactFormToolUI,
},
generate_chart: {
execute: externalTool(),
render: ChartToolUI,
},
show_location: {
execute: externalTool(),
render: LocationToolUI,
},
});