mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-11-30 17:06:33 +00:00
### What problem does this PR solve? some chunk method pictures are not in English #437 feat: set the height of both html and body to 100% feat: add SharedChat feat: add shared hooks ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)
94 lines
1.7 KiB
TypeScript
94 lines
1.7 KiB
TypeScript
import api from '@/utils/api';
|
|
import registerServer from '@/utils/registerServer';
|
|
import request from '@/utils/request';
|
|
|
|
const {
|
|
getDialog,
|
|
setDialog,
|
|
listDialog,
|
|
removeDialog,
|
|
getConversation,
|
|
setConversation,
|
|
completeConversation,
|
|
listConversation,
|
|
removeConversation,
|
|
createToken,
|
|
listToken,
|
|
removeToken,
|
|
getStats,
|
|
createExternalConversation,
|
|
getExternalConversation,
|
|
completeExternalConversation,
|
|
} = api;
|
|
|
|
const methods = {
|
|
getDialog: {
|
|
url: getDialog,
|
|
method: 'get',
|
|
},
|
|
setDialog: {
|
|
url: setDialog,
|
|
method: 'post',
|
|
},
|
|
removeDialog: {
|
|
url: removeDialog,
|
|
method: 'post',
|
|
},
|
|
listDialog: {
|
|
url: listDialog,
|
|
method: 'get',
|
|
},
|
|
listConversation: {
|
|
url: listConversation,
|
|
method: 'get',
|
|
},
|
|
getConversation: {
|
|
url: getConversation,
|
|
method: 'get',
|
|
},
|
|
setConversation: {
|
|
url: setConversation,
|
|
method: 'post',
|
|
},
|
|
completeConversation: {
|
|
url: completeConversation,
|
|
method: 'post',
|
|
},
|
|
removeConversation: {
|
|
url: removeConversation,
|
|
method: 'post',
|
|
},
|
|
createToken: {
|
|
url: createToken,
|
|
method: 'post',
|
|
},
|
|
listToken: {
|
|
url: listToken,
|
|
method: 'get',
|
|
},
|
|
removeToken: {
|
|
url: removeToken,
|
|
method: 'post',
|
|
},
|
|
getStats: {
|
|
url: getStats,
|
|
method: 'get',
|
|
},
|
|
createExternalConversation: {
|
|
url: createExternalConversation,
|
|
method: 'get',
|
|
},
|
|
getExternalConversation: {
|
|
url: getExternalConversation,
|
|
method: 'get',
|
|
},
|
|
completeExternalConversation: {
|
|
url: completeExternalConversation,
|
|
method: 'post',
|
|
},
|
|
} as const;
|
|
|
|
const chatService = registerServer<keyof typeof methods>(methods, request);
|
|
|
|
export default chatService;
|