新增 memory 和 skill 存储,实现 Agent 持续学习,并增加工具支持;增加 LLM progress detail 输出

This commit is contained in:
2026-05-11 16:12:20 +08:00
parent a27c45910c
commit 5fbe8ae40c
16 changed files with 1411 additions and 129 deletions
+2 -1
View File
@@ -10,6 +10,7 @@ export type SessionContext = {
clientSessionId: string;
accessToken?: string;
projectId?: string;
userId?: string;
};
export class SessionRegistry {
@@ -68,7 +69,7 @@ export class SessionRegistry {
.update(
[
context.clientSessionId,
context.accessToken ?? "",
context.userId?.trim() ?? "",
context.projectId ?? "",
].join("|"),
)