21 lines
370 B
TypeScript
21 lines
370 B
TypeScript
import { useCopilotAction } from "@copilotkit/react-core";
|
|
|
|
useCopilotAction({
|
|
name: "optional",
|
|
parameters: [
|
|
{
|
|
name: "arg",
|
|
type: "string",
|
|
description: "The optional argument to display.",
|
|
required: false,
|
|
},
|
|
],
|
|
handler: async ({ arg }) => {
|
|
let x: string = "y";
|
|
|
|
if (arg !== undefined) {
|
|
x = arg;
|
|
}
|
|
},
|
|
});
|