import request from '@/utils/request3rd' /** * * @param {*} data * @returns */ export function getRecommendListByKeywords(data) { return request({ url: `${window.GLOBAL_CONFIG.API_AI}llm/chat/knowledge_base_chat`, method: 'post', data }) } /** * * @param {*} data * @returns */ export function getTxtDataModel(data) { return request({ url: `${window.GLOBAL_CONFIG.API_AI}llm/chat/chat`, method: 'post', data }) }