wfansh hace 2 meses
padre
commit
84a54e472c

+ 1 - 1
src/components/jeecg/AiChat/components/chat.vue

@@ -234,7 +234,7 @@
       if (typeof EventSource !== 'undefined') {
         const token = getToken();
         evtSource = new EventSourcePolyfill(
-          `${VITE_GLOB_API_URL}/test/ai/chat/send?message=${message}${options.parentMessageId ? '&topicId=' + options.parentMessageId : ''}`,
+          `${VITE_GLOB_API_URL}/ai/chat/send?message=${message}${options.parentMessageId ? '&topicId=' + options.parentMessageId : ''}`,
           {
             withCredentials: true,
             headers: {

+ 2 - 2
src/components/jeecg/AiChat/index.vue

@@ -33,8 +33,8 @@
   import { JEECG_CHAT_KEY } from '/@/enums/cacheEnum';
   import { defHttp } from '/@/utils/http/axios';
   const configUrl = {
-    get: '/test/ai/chat/history/get',
-    save: '/test/ai/chat/history/save',
+    get: '/ai/chat/history/get',
+    save: '/ai/chat/history/save',
   };
   const userId = useUserStore().getUserInfo?.id;
   const localKey = JEECG_CHAT_KEY + userId;