123456789101112131415161718192021222324252627 |
- 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
- })
- }
|