新增 memory 和 skill 存储,实现 Agent 持续学习,并增加工具支持;增加 LLM progress detail 输出
This commit is contained in:
@@ -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("|"),
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user