mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-31 17:15:32 +08:00
Fix: Memory-related bug fixes (#12226)
### What problem does this PR solve? Fix: bugs fix - table -> Table - memory delete fail - memory copywriting modified ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
@ -239,7 +239,7 @@ export default {
|
||||
createMemory: `${api_host}/memories`,
|
||||
getMemoryList: `${api_host}/memories`,
|
||||
getMemoryConfig: (id: string) => `${api_host}/memories/${id}/config`,
|
||||
deleteMemory: (id: string) => `${api_host}/memory/rm/${id}`,
|
||||
deleteMemory: (id: string) => `${api_host}/memories/${id}`,
|
||||
getMemoryDetail: (id: string) => `${api_host}/memories/${id}`,
|
||||
updateMemorySetting: (id: string) => `${api_host}/memories/${id}`,
|
||||
deleteMemoryMessage: (data: { memory_id: string; message_id: string }) =>
|
||||
|
||||
Reference in New Issue
Block a user