feat: implement user profile page, chatbot integration, and navigation components
Build and Release / release (push) Successful in 55s
Build and Release / release (push) Successful in 55s
This commit is contained in:
@@ -3,6 +3,11 @@ import { API } from "../../api";
|
||||
import { ChatbotPayload, ChatbotResponse } from "@/interface/chatbot";
|
||||
|
||||
export const apiChatbot = async (payload: ChatbotPayload): Promise<ChatbotResponse> => {
|
||||
const response = await api.post(API.Chatbot.CHAT,payload);
|
||||
const response = await api.post(API.Chatbot.CHAT, payload);
|
||||
return await response?.data;
|
||||
};
|
||||
|
||||
export const apiChatbotHistory = async (params?: { cursor?: string; limit?: number }): Promise<any> => {
|
||||
const response = await api.get(API.Chatbot.HISTORY, { params });
|
||||
return await response?.data;
|
||||
};
|
||||
Reference in New Issue
Block a user