1
0

functionCalling.ts 239 B

123456
  1. import { handleFunctionCalling } from "@/features/functionCalling/eventHandler";
  2. export async function functionCalling(event: string) {
  3. const functionCallingResult = await handleFunctionCalling(event);
  4. return functionCallingResult;
  5. }