Update knowledge path API endpoint to use plugin-specific route
- Change /knowledge_path_get to /plugins/_memory/knowledge_path_get in loadKnowledge method
frdel committed
Mar 25, 2026 at 19:50 UTC
a60842578de186e8921e53b0f511c389e963c46a
1 file changed
+1
-1
webui/components/chat/input/input-store.js
+1
-1
@@ -101,7 +101,7 @@ const model = {
101
102
async loadKnowledge() {
103
try {
104
- const resp = await shortcuts.callJsonApi("/knowledge_path_get", {
104
+ const resp = await shortcuts.callJsonApi("/plugins/_memory/knowledge_path_get", {
105
ctxid: shortcuts.getCurrentContextId(),
106
});
107
if (!resp.ok) throw new Error("Error getting knowledge path");