fix(wiki): return the new page id from the create-page tool

This commit is contained in:
matevip 2026-05-19 20:06:33 +08:00
parent 57ca69d674
commit d629c945ee

View File

@ -374,6 +374,7 @@ public class WikiTool {
.set("message", "Page created successfully")
.set("title", page.getTitle())
.set("slug", page.getSlug())
.set("pageId", page.getId())
.set("kbId", kbId)
.toString();
}