import { useMutation } from "@tanstack/react-query"; import * as api from "../service/AiService"; export const useChat = () => { return useMutation({ mutationFn: api.chat, }); };