mirror of
https://github.com/lobehub/lobe-chat.git
synced 2026-06-17 21:08:36 +00:00
🐛 fix(userMemories): 404/405 issue due to incorrectly used workflow name and mounted catch-all route (#10995)
This commit is contained in:
+1
-1
@@ -101,7 +101,7 @@ export const { POST } = serve<MemoryExtractionPayloadInput>(async (context) => {
|
||||
userId,
|
||||
userIds: [userId],
|
||||
},
|
||||
workflow: orchestratorWorkflow
|
||||
workflow: orchestratorWorkflow,
|
||||
}
|
||||
),
|
||||
),
|
||||
|
||||
@@ -1768,9 +1768,9 @@ const WORKFLOW_PATHS = {
|
||||
} as const;
|
||||
|
||||
export const TOPIC_WORKFLOW_NAMES = {
|
||||
cep: 'memory:user-memory:extract:users:topics:extract-layers:cep',
|
||||
identity: 'memory:user-memory:extract:users:topics:extract-layers:identity',
|
||||
orchestrator: 'memory:user-memory:extract:users:topics:extract-layers:orchestrator',
|
||||
cep: 'process-topics/extract-layers/cep',
|
||||
identity: 'process-topics/extract-layers/identity',
|
||||
orchestrator: 'process-topics/extract-layers/orchestrator',
|
||||
} as const;
|
||||
|
||||
const getWorkflowUrl = (path: string, baseUrl: string) => {
|
||||
|
||||
Reference in New Issue
Block a user