mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-23 06:46:40 +08:00
Feature: Memory interface integration testing (#11833)
### What problem does this PR solve? Feature: Memory interface integration testing ### Type of change - [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
@ -227,11 +227,15 @@ export default {
|
||||
retrievalTestShare: `${ExternalApi}${api_host}/searchbots/retrieval_test`,
|
||||
|
||||
// memory
|
||||
createMemory: `${api_host}/memory/create`,
|
||||
getMemoryList: `${api_host}/memory/list`,
|
||||
createMemory: `${api_host}/memories`,
|
||||
getMemoryList: `${api_host}/memories`,
|
||||
getMemoryConfig: (id: string) => `${api_host}/memories/${id}/config`,
|
||||
deleteMemory: (id: string) => `${api_host}/memory/rm/${id}`,
|
||||
getMemoryDetail: (id: string) => `${api_host}/memory/detail/${id}`,
|
||||
updateMemorySetting: (id: string) => `${api_host}/memory/update/${id}`,
|
||||
getMemoryDetail: (id: string) => `${api_host}/memories/${id}`,
|
||||
updateMemorySetting: (id: string) => `${api_host}/memories/${id}`,
|
||||
deleteMemoryMessage: (id: string) => `${api_host}/message/rm/${id}`,
|
||||
getMessageContent: (message_id: string) =>
|
||||
`${api_host}/messages/${message_id}/content`,
|
||||
|
||||
// data pipeline
|
||||
fetchDataflow: (id: string) => `${api_host}/dataflow/get/${id}`,
|
||||
|
||||
Reference in New Issue
Block a user