nolo-cli 0.1.13 → 0.1.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -2
- package/agent-runtime/hostAdapter.ts +53 -0
- package/agent-runtime/index.ts +28 -0
- package/agent-runtime/localLoop.ts +62 -0
- package/agent-runtime/runtimeDecision.ts +70 -0
- package/agent-runtime/types.ts +87 -0
- package/agentRuntimeCommands.ts +139 -22
- package/agentRuntimeLocal.ts +7 -0
- package/ai/agent/_executeModel.ts +118 -0
- package/ai/agent/agentSlice.ts +544 -1
- package/ai/agent/appWorkingMemory.ts +126 -0
- package/ai/agent/avatarUtils.ts +24 -0
- package/ai/agent/buildEditingContext.ts +373 -0
- package/ai/agent/buildSystemPrompt.ts +532 -0
- package/ai/agent/cleanAgentMessages.ts +140 -0
- package/ai/agent/cliChatClient.ts +119 -0
- package/ai/agent/contextCompiler.ts +107 -0
- package/ai/agent/contextLayerContract.ts +44 -0
- package/ai/agent/createAgentSchema.ts +234 -0
- package/ai/agent/executeToolCall.ts +58 -0
- package/ai/agent/fetchAgentContexts.ts +42 -0
- package/ai/agent/generatePrompt.ts +3 -0
- package/ai/agent/getFullChatContextKeys.ts +168 -0
- package/ai/agent/hooks/fetchPublicAgents.ts +133 -0
- package/ai/agent/hooks/useAgentConfig.ts +61 -0
- package/ai/agent/hooks/useAgentDialog.ts +35 -0
- package/ai/agent/hooks/useAgentFormValidation.ts +202 -0
- package/ai/agent/hooks/usePublicAgents.ts +473 -0
- package/ai/agent/persistMessageWithFixedId.ts +37 -0
- package/ai/agent/planSlice.ts +259 -0
- package/ai/agent/referenceUtils.ts +229 -0
- package/ai/agent/runAgentBackground.ts +238 -0
- package/ai/agent/runAgentClientLoop.ts +138 -0
- package/ai/agent/runtimeGuidance.ts +97 -0
- package/ai/agent/runtimeServerBase.ts +37 -0
- package/ai/agent/server/fetchPublicAgents.ts +128 -0
- package/ai/agent/startParallelAgentStreams.ts +424 -0
- package/ai/agent/startupProtocol.ts +53 -0
- package/ai/agent/streamAgentChatTurn.ts +1299 -0
- package/ai/agent/streamAgentChatTurnUtils.ts +738 -0
- package/ai/agent/types.ts +71 -0
- package/ai/agent/utils/imageOutput.ts +39 -0
- package/ai/agent/utils/publicImageAgentMode.ts +26 -0
- package/ai/agent/utils/sortUtils.ts +250 -0
- package/ai/agent/web/referencePickerUtils.ts +146 -0
- package/ai/ai.locale.ts +1083 -0
- package/ai/chat/accumulateToolCallChunks.ts +95 -0
- package/ai/chat/fetchUtils.native.ts +276 -0
- package/ai/chat/fetchUtils.ts +153 -0
- package/ai/chat/inlineImageUrlsForCustomProvider.ts +117 -0
- package/ai/chat/parseApiError.ts +64 -0
- package/ai/chat/parseMultilineSSE.ts +95 -0
- package/ai/chat/sendOpenAICompletionsRequest.native.ts +682 -0
- package/ai/chat/sendOpenAICompletionsRequest.ts +712 -0
- package/ai/chat/sendOpenAIResponseRequest.ts +512 -0
- package/ai/chat/shouldUseServerProxy.ts +18 -0
- package/ai/chat/sseClient.native.ts +91 -0
- package/ai/chat/sseClient.ts +67 -0
- package/ai/chat/streamReader.native.ts +31 -0
- package/ai/chat/streamReader.ts +62 -0
- package/ai/chat/updateTotalUsage.ts +72 -0
- package/ai/context/buildReferenceContext.ts +437 -0
- package/ai/context/calculateContextUsage.ts +133 -0
- package/ai/context/retention.ts +165 -0
- package/ai/context/tokenUtils.ts +78 -0
- package/ai/index.ts +1 -1
- package/ai/llm/agentCapabilities.ts +74 -0
- package/ai/llm/calculateGeminiImageTokens.ts +57 -0
- package/ai/llm/deepinfra.ts +28 -0
- package/ai/llm/fireworks.ts +68 -0
- package/ai/llm/generateRequestBody.ts +165 -0
- package/ai/llm/getModelContextWindow.ts +84 -0
- package/ai/llm/getNoloKey.ts +37 -0
- package/ai/llm/getPricing.ts +232 -0
- package/ai/llm/hooks/useModelPricing.ts +75 -0
- package/ai/llm/imagePricing.ts +66 -0
- package/ai/llm/isResponseAPIModel.ts +13 -0
- package/ai/llm/kimi.ts +18 -0
- package/ai/llm/mimo.ts +71 -0
- package/ai/llm/mistral.ts +22 -0
- package/ai/llm/modelAvatar.ts +427 -0
- package/ai/llm/models.ts +45 -0
- package/ai/llm/openrouterModels.ts +141 -0
- package/ai/llm/providers.ts +307 -0
- package/ai/llm/reasoningModels.ts +28 -0
- package/ai/llm/types.ts +59 -0
- package/ai/llm/usageRequestOptions.ts +59 -0
- package/ai/memory/capture.ts +148 -0
- package/ai/memory/consolidate.ts +104 -0
- package/ai/memory/delete.ts +147 -0
- package/ai/memory/overlay.ts +84 -0
- package/ai/memory/query.ts +38 -0
- package/ai/memory/queryShared.ts +160 -0
- package/ai/memory/rank.ts +105 -0
- package/ai/memory/recentRelationshipRecap.ts +247 -0
- package/ai/memory/remember.ts +167 -0
- package/ai/memory/runtime.ts +76 -0
- package/ai/memory/store.ts +20 -0
- package/ai/memory/storeShared.ts +76 -0
- package/ai/memory/types.ts +46 -0
- package/ai/memory/understanding.ts +349 -0
- package/ai/memory/understandingGreeting.ts +264 -0
- package/ai/messages/type.ts +20 -0
- package/ai/policy/personalizationDialog.ts +333 -0
- package/ai/policy/runtimePolicy.ts +440 -0
- package/ai/policy/selfUpdateFields.ts +48 -0
- package/ai/policy/types.ts +64 -0
- package/ai/skills/referenceRuntime.ts +274 -0
- package/ai/skills/skillDiagnostics.ts +251 -0
- package/ai/skills/skillDocBuilder.ts +139 -0
- package/ai/skills/skillDocProtocol.ts +434 -0
- package/ai/skills/skillReferenceSummary.ts +63 -0
- package/ai/skills/skillSummaryMarker.ts +26 -0
- package/ai/token/calculatePrice.ts +546 -0
- package/ai/token/db.ts +98 -0
- package/ai/token/externalToolCost.ts +321 -0
- package/ai/token/hooks/useRecords.ts +65 -0
- package/ai/token/missingUsageEstimate.ts +42 -0
- package/ai/token/modelUsageQuery.ts +252 -0
- package/ai/token/normalizeUsage.ts +84 -0
- package/ai/token/openaiImageGenerationUsage.ts +56 -0
- package/ai/token/prepareTokenUsageData.ts +88 -0
- package/ai/token/query.ts +88 -0
- package/ai/token/queryUserTokens.ts +59 -0
- package/ai/token/resolveBillingTarget.ts +52 -0
- package/ai/token/saveTokenRecord.ts +53 -0
- package/ai/token/serverDialogProjection.ts +78 -0
- package/ai/token/serverTokenWriter.ts +143 -0
- package/ai/token/stats.ts +21 -0
- package/ai/token/tokenThunks.ts +24 -0
- package/ai/token/types.ts +93 -0
- package/ai/tools/agent/agentTools.ts +176 -0
- package/ai/tools/agent/agentUpdateShared.ts +311 -0
- package/ai/tools/agent/callAgentTool.ts +139 -0
- package/ai/tools/agent/createAgentTool.ts +512 -0
- package/ai/tools/agent/createDialogTool.ts +69 -0
- package/ai/tools/agent/createSkillAgentTool.ts +62 -0
- package/ai/tools/agent/parallelBudget.ts +221 -0
- package/ai/tools/agent/presets/appBuilderPreset.ts +147 -0
- package/ai/tools/agent/runLlmTool.ts +96 -0
- package/ai/tools/agent/runStreamingAgentTool.ts +73 -0
- package/ai/tools/agent/skillAgentArgs.ts +106 -0
- package/ai/tools/agent/skillAgentPreset.ts +89 -0
- package/ai/tools/agent/streamParallelAgentsTool.ts +122 -0
- package/ai/tools/agent/updateAgentTool.ts +96 -0
- package/ai/tools/agent/updateSelfTool.ts +113 -0
- package/ai/tools/amazonProductScraperTool.ts +86 -0
- package/ai/tools/apifyActorClient.ts +45 -0
- package/ai/tools/appEditGuard.ts +372 -0
- package/ai/tools/appReadSnapshot.ts +153 -0
- package/ai/tools/appTools.ts +1549 -0
- package/ai/tools/applyEditTool.ts +256 -0
- package/ai/tools/applyLineEditsTool.ts +312 -0
- package/ai/tools/browserTools/click.ts +33 -0
- package/ai/tools/browserTools/closeSession.ts +29 -0
- package/ai/tools/browserTools/common.ts +27 -0
- package/ai/tools/browserTools/openSession.ts +48 -0
- package/ai/tools/browserTools/readContent.ts +38 -0
- package/ai/tools/browserTools/selectOption.ts +46 -0
- package/ai/tools/browserTools/typeText.ts +42 -0
- package/ai/tools/category/createCategoryTool.ts +66 -0
- package/ai/tools/category/queryContentsByCategoryTool.ts +69 -0
- package/ai/tools/category/updateContentCategoryTool.ts +75 -0
- package/ai/tools/cfBrowserTools.ts +319 -0
- package/ai/tools/cfSpeechToTextTool.ts +49 -0
- package/ai/tools/checkEnvTool.ts +65 -0
- package/ai/tools/cloudflareCrawlTool.ts +289 -0
- package/ai/tools/codeSearchTool.ts +111 -0
- package/ai/tools/codeTools.ts +101 -0
- package/ai/tools/createDocTool.ts +132 -0
- package/ai/tools/createPlanTool.ts +999 -0
- package/ai/tools/createSkillDocTool.ts +155 -0
- package/ai/tools/createWorkflowTool.ts +154 -0
- package/ai/tools/deepseekOcrTool.ts +34 -0
- package/ai/tools/delayTool.ts +31 -0
- package/ai/tools/deleteSpacesTool.ts +325 -0
- package/ai/tools/deleteSpacesToolModel.ts +159 -0
- package/ai/tools/devReloadUtils.ts +29 -0
- package/ai/tools/dialogMessageSearch.ts +137 -0
- package/ai/tools/doctorSkillTool.ts +72 -0
- package/ai/tools/ecommerceScraperTool.ts +86 -0
- package/ai/tools/emailTools.ts +549 -0
- package/ai/tools/evalSkillTool.ts +92 -0
- package/ai/tools/exaSearchTool.ts +64 -0
- package/ai/tools/execBashTool.ts +379 -0
- package/ai/tools/executeSqlTool.ts +192 -0
- package/ai/tools/fetchWebpageSupport.ts +309 -0
- package/ai/tools/fetchWebpageTool.ts +84 -0
- package/ai/tools/geminiImagePreviewTool.ts +361 -0
- package/ai/tools/generateDocxTool.ts +215 -0
- package/ai/tools/googleSearchScraperTool.ts +106 -0
- package/ai/tools/importDataTool.ts +133 -0
- package/ai/tools/importSkillTool.ts +162 -0
- package/ai/tools/index.ts +1927 -0
- package/ai/tools/listFilesTool.ts +82 -0
- package/ai/tools/listUserSpacesTool.ts +113 -0
- package/ai/tools/modelUsageTools.ts +199 -0
- package/ai/tools/olmOcrTool.ts +34 -0
- package/ai/tools/openaiImageTool.ts +267 -0
- package/ai/tools/prepareTools.ts +23 -0
- package/ai/tools/readDocTool.ts +84 -0
- package/ai/tools/readFileTool.ts +211 -0
- package/ai/tools/readTool.ts +163 -0
- package/ai/tools/readXPostTool.ts +233 -0
- package/ai/tools/rememberMemoryTool.ts +84 -0
- package/ai/tools/remotionVideoTool.ts +151 -0
- package/ai/tools/searchDialogMessagesTool.ts +222 -0
- package/ai/tools/searchRepoTool.ts +115 -0
- package/ai/tools/searchWorkspaceTool.ts +259 -0
- package/ai/tools/skillFollowup.ts +86 -0
- package/ai/tools/surfWeatherTool.ts +169 -0
- package/ai/tools/table/addTableRowTool.ts +217 -0
- package/ai/tools/table/createTableTool.ts +315 -0
- package/ai/tools/table/rowTools.ts +366 -0
- package/ai/tools/table/schemaTools.ts +244 -0
- package/ai/tools/table/shareTableTool.ts +148 -0
- package/ai/tools/table/toolShared.ts +129 -0
- package/ai/tools/toolApiClient.ts +198 -0
- package/ai/tools/toolNameAliases.ts +57 -0
- package/ai/tools/toolResultError.ts +42 -0
- package/ai/tools/toolRunSlice.ts +303 -0
- package/ai/tools/toolSchemaCompatibility.ts +53 -0
- package/ai/tools/toolVisibility.ts +4 -0
- package/ai/tools/types.ts +20 -0
- package/ai/tools/uiAskChoiceTool.ts +104 -0
- package/ai/tools/updateContentTitleTool.ts +84 -0
- package/ai/tools/updateDocTool.ts +105 -0
- package/ai/tools/updateUserPreferenceProfileTool.ts +145 -0
- package/ai/tools/whisperTool.ts +77 -0
- package/ai/tools/writeFileTool.ts +210 -0
- package/ai/tools/youtubeScraperTool.ts +116 -0
- package/ai/tools/ziweiChartTool.ts +678 -0
- package/ai/types.ts +55 -0
- package/ai/workflow/workflowExecutor.ts +323 -0
- package/ai/workflow/workflowSlice.ts +73 -0
- package/ai/workflow/workflowTypes.ts +106 -0
- package/client/agentRun.test.ts +240 -0
- package/client/agentRun.ts +182 -19
- package/client/compactDialog.test.ts +238 -0
- package/client/localRuntimeAdapter.test.ts +135 -0
- package/client/localRuntimeAdapter.ts +244 -0
- package/client/profileConfig.test.ts +40 -0
- package/client/streamingOutput.test.ts +22 -0
- package/client/streamingOutput.ts +38 -0
- package/commandRegistry.ts +9 -2
- package/connector-experimental/index.ts +5 -0
- package/database/actions/cacheMergedUserData.ts +64 -0
- package/database/actions/common.ts +242 -0
- package/database/actions/deleteFile.ts +40 -0
- package/database/actions/fetchUserData.ts +16 -0
- package/database/actions/fileContent.ts +125 -0
- package/database/actions/patch.ts +155 -0
- package/database/actions/read.ts +337 -0
- package/database/actions/readAndWait.ts +224 -0
- package/database/actions/readRequestManager.ts +120 -0
- package/database/actions/remove.ts +94 -0
- package/database/actions/replication.ts +366 -0
- package/database/actions/upload.ts +174 -0
- package/database/actions/upsert.ts +56 -0
- package/database/actions/write.ts +126 -0
- package/database/client/db.native.ts +73 -0
- package/database/client/db.ts +51 -0
- package/database/client/fetchUserData.ts +61 -0
- package/database/client/handleError.ts +19 -0
- package/database/client/queryRequest.ts +21 -0
- package/database/config.ts +21 -0
- package/database/dbActionThunks.ts +1 -0
- package/database/dbSlice.ts +149 -0
- package/database/email.ts +42 -0
- package/database/fileRing.ts +51 -0
- package/database/fileSharding.ts +70 -0
- package/database/fileStorage.native.ts +92 -0
- package/database/fileStorage.ts +232 -0
- package/database/fileUrl.ts +34 -0
- package/database/hooks/useUserData.ts +489 -0
- package/database/index.ts +1 -0
- package/database/keys.ts +765 -0
- package/database/queryPrefixes.ts +14 -0
- package/database/requests.ts +443 -0
- package/database/runtimeServerContext.ts +35 -0
- package/database/server/MemoryDB.ts +76 -0
- package/database/server/actorAccess.ts +76 -0
- package/database/server/agentDelegation.ts +124 -0
- package/database/server/coreDataOwnership.ts +13 -0
- package/database/server/coreDataProxy.ts +76 -0
- package/database/server/cybotReadonly.ts +18 -0
- package/database/server/dataHandlers.ts +111 -0
- package/database/server/db.ts +118 -0
- package/database/server/dbPath.ts +20 -0
- package/database/server/delete.ts +499 -0
- package/database/server/emailRepository.ts +1480 -0
- package/database/server/ensureDbOpen.ts +12 -0
- package/database/server/fileRead.ts +337 -0
- package/database/server/fileService.ts +436 -0
- package/database/server/handleTransaction.ts +86 -0
- package/database/server/patch.ts +282 -0
- package/database/server/query.ts +138 -0
- package/database/server/read.ts +325 -0
- package/database/server/resourceAccess.ts +211 -0
- package/database/server/routes.ts +110 -0
- package/database/server/spaceMemberAuthority.ts +67 -0
- package/database/server/upload.ts +159 -0
- package/database/server/write.ts +494 -0
- package/database/server/writeAuthority.ts +133 -0
- package/database/sqliteDb.ts +46 -0
- package/database/table/deleteTable.ts +120 -0
- package/database/tenantPlacement.ts +57 -0
- package/database/tombstones.ts +52 -0
- package/database/userDataLoadDecision.ts +17 -0
- package/database/userDataMerge.ts +95 -0
- package/database/userPreferenceRegister.ts +108 -0
- package/database/utils/dbPath.ts +47 -0
- package/database/utils/ulid.native.ts +6 -0
- package/database/utils/ulid.ts +1 -0
- package/index.ts +25 -15
- package/localRuntimeDb.ts +28 -0
- package/package.json +16 -4
- package/runtimeModeArgs.ts +33 -0
- package/tui/readlineWorkspace.ts +1 -0
- package/tui/session.ts +22 -0
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
import type { MemoryItem } from "./types";
|
|
2
|
+
|
|
3
|
+
const CJK_SEQUENCE_REGEX = /[\u3400-\u4dbf\u4e00-\u9fff]+/g;
|
|
4
|
+
const MEMORY_IDENTIFIER_REGEX = /\b(?:memory|noise)-[a-z0-9][a-z0-9-]*/gi;
|
|
5
|
+
|
|
6
|
+
const buildCjkTokens = (text: string): string[] => {
|
|
7
|
+
const sequences = text.match(CJK_SEQUENCE_REGEX) ?? [];
|
|
8
|
+
const tokens: string[] = [];
|
|
9
|
+
|
|
10
|
+
for (const sequence of sequences) {
|
|
11
|
+
if (sequence.length >= 2) {
|
|
12
|
+
tokens.push(sequence);
|
|
13
|
+
}
|
|
14
|
+
for (let index = 0; index < sequence.length - 1; index += 1) {
|
|
15
|
+
tokens.push(sequence.slice(index, index + 2));
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
return tokens;
|
|
20
|
+
};
|
|
21
|
+
|
|
22
|
+
const tokenize = (text: string): string[] => {
|
|
23
|
+
const normalized = text.toLowerCase();
|
|
24
|
+
const wordTokens = normalized
|
|
25
|
+
.split(/[\s,.;:!?()[\]{}"'`,。!?:;、]+/)
|
|
26
|
+
.map((token) => token.trim())
|
|
27
|
+
.filter((token) => token.length >= 2);
|
|
28
|
+
|
|
29
|
+
return [...wordTokens, ...buildCjkTokens(normalized)];
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
const keywordScore = (query: string, item: MemoryItem): number => {
|
|
33
|
+
const queryTokens = new Set(tokenize(query));
|
|
34
|
+
if (queryTokens.size === 0) return 0;
|
|
35
|
+
const haystack = new Set([
|
|
36
|
+
...tokenize(item.content),
|
|
37
|
+
...(item.tags ?? []).map((tag) => tag.toLowerCase()),
|
|
38
|
+
item.patternKey?.toLowerCase() ?? "",
|
|
39
|
+
]);
|
|
40
|
+
let matches = 0;
|
|
41
|
+
for (const token of queryTokens) {
|
|
42
|
+
if (haystack.has(token)) matches += 1;
|
|
43
|
+
}
|
|
44
|
+
return Math.min(1, matches / Math.max(2, queryTokens.size));
|
|
45
|
+
};
|
|
46
|
+
|
|
47
|
+
const identifierScore = (query: string, item: MemoryItem): number => {
|
|
48
|
+
const identifiers = query.match(MEMORY_IDENTIFIER_REGEX) ?? [];
|
|
49
|
+
if (identifiers.length === 0) return 0;
|
|
50
|
+
const content = item.content.toLowerCase();
|
|
51
|
+
const matches = identifiers.filter((identifier) =>
|
|
52
|
+
content.includes(identifier.toLowerCase())
|
|
53
|
+
).length;
|
|
54
|
+
return matches / identifiers.length;
|
|
55
|
+
};
|
|
56
|
+
|
|
57
|
+
const activationScore = (item: MemoryItem, nowMs: number): number => {
|
|
58
|
+
const lastActivatedMs = Date.parse(item.lastActivatedAt || item.createdAt);
|
|
59
|
+
const ageDays = Math.max(0, (nowMs - lastActivatedMs) / 86_400_000);
|
|
60
|
+
const recency = 1 / (1 + ageDays / 7);
|
|
61
|
+
const reinforcement = Math.min(1, Math.log1p(item.activationCount ?? 0) / 3);
|
|
62
|
+
return 0.7 * recency + 0.3 * reinforcement;
|
|
63
|
+
};
|
|
64
|
+
|
|
65
|
+
const typeFitScore = (item: MemoryItem): number => {
|
|
66
|
+
if (item.kind === "episodic") return 0.75;
|
|
67
|
+
if (item.kind === "semantic") return 0.9;
|
|
68
|
+
return 0.85;
|
|
69
|
+
};
|
|
70
|
+
|
|
71
|
+
const understandingScore = (item: MemoryItem): number => {
|
|
72
|
+
if (!item.tags?.includes("understanding-memory")) return 0;
|
|
73
|
+
if (item.facet === "unfinished") return 1;
|
|
74
|
+
if (item.facet === "tension") return 0.95;
|
|
75
|
+
if (item.facet === "preference") return 0.85;
|
|
76
|
+
if (item.facet === "style") return 0.75;
|
|
77
|
+
return 0.8;
|
|
78
|
+
};
|
|
79
|
+
|
|
80
|
+
export const scoreMemoryItem = (item: MemoryItem, query: string, nowMs = Date.now()): number => {
|
|
81
|
+
const queryMatch = keywordScore(query, item);
|
|
82
|
+
const identifierMatch = identifierScore(query, item);
|
|
83
|
+
const activation = activationScore(item, nowMs);
|
|
84
|
+
const importance = item.importance ?? 0;
|
|
85
|
+
const confidence = item.confidence ?? 0;
|
|
86
|
+
const typeFit = typeFitScore(item);
|
|
87
|
+
const understanding = understandingScore(item);
|
|
88
|
+
return (
|
|
89
|
+
0.3 * queryMatch +
|
|
90
|
+
0.25 * identifierMatch +
|
|
91
|
+
0.15 * activation +
|
|
92
|
+
0.15 * importance +
|
|
93
|
+
0.1 * confidence +
|
|
94
|
+
0.03 * typeFit +
|
|
95
|
+
0.02 * understanding
|
|
96
|
+
);
|
|
97
|
+
};
|
|
98
|
+
|
|
99
|
+
export const rankMemoryCandidates = (
|
|
100
|
+
items: MemoryItem[],
|
|
101
|
+
query: string
|
|
102
|
+
): MemoryItem[] =>
|
|
103
|
+
[...items].sort(
|
|
104
|
+
(a, b) => scoreMemoryItem(b, query) - scoreMemoryItem(a, query)
|
|
105
|
+
);
|
|
@@ -0,0 +1,247 @@
|
|
|
1
|
+
import { createDialogKey, dialogMessageRange } from "database/keys";
|
|
2
|
+
import { extractCustomId } from "core/prefix";
|
|
3
|
+
|
|
4
|
+
interface RecentDialogLike {
|
|
5
|
+
dbKey?: string;
|
|
6
|
+
cybots?: string[];
|
|
7
|
+
summary?: string;
|
|
8
|
+
title?: string;
|
|
9
|
+
updatedAt?: string;
|
|
10
|
+
createdAt?: string;
|
|
11
|
+
spaceId?: string;
|
|
12
|
+
inheritedFromDialogKey?: string;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
interface DialogMessageLike {
|
|
16
|
+
role?: string;
|
|
17
|
+
authorRole?: string;
|
|
18
|
+
content?: unknown;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
const MIN_RECAP_LENGTH = 12;
|
|
22
|
+
const MIN_RECAP_GAP_MS = 30 * 60 * 1000;
|
|
23
|
+
|
|
24
|
+
export interface RecentRelationshipRecapResolution {
|
|
25
|
+
recap: string | null;
|
|
26
|
+
reason:
|
|
27
|
+
| "no-db"
|
|
28
|
+
| "missing-input"
|
|
29
|
+
| "no-match"
|
|
30
|
+
| "too-recent"
|
|
31
|
+
| "low-quality"
|
|
32
|
+
| "selected";
|
|
33
|
+
sourceDialogKey?: string;
|
|
34
|
+
sourceUpdatedAt?: string;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
export const shouldUseRecentRelationshipRecap = (input: {
|
|
38
|
+
userId?: string | null;
|
|
39
|
+
agentKey?: string | null;
|
|
40
|
+
cybotsCount?: number;
|
|
41
|
+
inheritFromDialogKey?: string | null;
|
|
42
|
+
skipGreeting?: boolean;
|
|
43
|
+
triggerType?: "user" | "api" | "localhost" | "scheduled_run";
|
|
44
|
+
}): boolean => {
|
|
45
|
+
if (!input.userId || !input.agentKey) return false;
|
|
46
|
+
if ((input.cybotsCount ?? 0) !== 1) return false;
|
|
47
|
+
if (input.inheritFromDialogKey) return false;
|
|
48
|
+
if (input.skipGreeting) return false;
|
|
49
|
+
if (input.triggerType && input.triggerType !== "user") return false;
|
|
50
|
+
return true;
|
|
51
|
+
};
|
|
52
|
+
|
|
53
|
+
const CONTINUATION_CUE_PATTERNS = [
|
|
54
|
+
"还没",
|
|
55
|
+
"还在",
|
|
56
|
+
"继续",
|
|
57
|
+
"接着",
|
|
58
|
+
"下一步",
|
|
59
|
+
"后面",
|
|
60
|
+
"之后",
|
|
61
|
+
"打算",
|
|
62
|
+
"准备",
|
|
63
|
+
"想",
|
|
64
|
+
"纠结",
|
|
65
|
+
"卡住",
|
|
66
|
+
"没想好",
|
|
67
|
+
"不确定",
|
|
68
|
+
"如何",
|
|
69
|
+
"怎么",
|
|
70
|
+
"?",
|
|
71
|
+
"?",
|
|
72
|
+
];
|
|
73
|
+
|
|
74
|
+
const clip = (text: string, max = 140): string =>
|
|
75
|
+
text.length <= max ? text : `${text.slice(0, max - 1).trimEnd()}…`;
|
|
76
|
+
|
|
77
|
+
const normalizeText = (value: unknown): string =>
|
|
78
|
+
typeof value === "string" ? value.trim() : "";
|
|
79
|
+
|
|
80
|
+
const contentToText = (content: unknown): string => {
|
|
81
|
+
if (typeof content === "string") return content.trim();
|
|
82
|
+
if (Array.isArray(content)) {
|
|
83
|
+
return content
|
|
84
|
+
.map((part) =>
|
|
85
|
+
part && typeof part === "object" && "text" in part
|
|
86
|
+
? normalizeText((part as { text?: unknown }).text)
|
|
87
|
+
: ""
|
|
88
|
+
)
|
|
89
|
+
.filter(Boolean)
|
|
90
|
+
.join("\n")
|
|
91
|
+
.trim();
|
|
92
|
+
}
|
|
93
|
+
return "";
|
|
94
|
+
};
|
|
95
|
+
|
|
96
|
+
const toTimestamp = (record: RecentDialogLike): number => {
|
|
97
|
+
const updated = Date.parse(normalizeText(record.updatedAt));
|
|
98
|
+
if (Number.isFinite(updated) && updated > 0) return updated;
|
|
99
|
+
const created = Date.parse(normalizeText(record.createdAt));
|
|
100
|
+
if (Number.isFinite(created) && created > 0) return created;
|
|
101
|
+
return 0;
|
|
102
|
+
};
|
|
103
|
+
|
|
104
|
+
const chooseRecapText = (record: RecentDialogLike): string => {
|
|
105
|
+
const summary = normalizeText(record.summary);
|
|
106
|
+
if (isMeaningfulRecapText(summary)) return clip(summary, 160);
|
|
107
|
+
const title = normalizeText(record.title);
|
|
108
|
+
if (isMeaningfulRecapText(title)) return clip(title, 80);
|
|
109
|
+
return "";
|
|
110
|
+
};
|
|
111
|
+
|
|
112
|
+
const loadLastAssistantMessageText = async (
|
|
113
|
+
db: any,
|
|
114
|
+
dialogKey: string
|
|
115
|
+
): Promise<string> => {
|
|
116
|
+
const dialogId = extractCustomId(dialogKey);
|
|
117
|
+
if (!dialogId) return "";
|
|
118
|
+
const range = dialogMessageRange(dialogId);
|
|
119
|
+
let iterator = db.iterator({
|
|
120
|
+
gte: range.start,
|
|
121
|
+
lte: range.end,
|
|
122
|
+
reverse: true,
|
|
123
|
+
});
|
|
124
|
+
|
|
125
|
+
if (iterator && typeof iterator.then === "function") {
|
|
126
|
+
iterator = await iterator;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
for await (const [, value] of iterator) {
|
|
130
|
+
const message = (value ?? {}) as DialogMessageLike;
|
|
131
|
+
const role = normalizeText(message.role ?? message.authorRole);
|
|
132
|
+
if (role !== "assistant") continue;
|
|
133
|
+
const text = contentToText(message.content);
|
|
134
|
+
if (isMeaningfulRecapText(text)) return clip(text, 160);
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
return "";
|
|
138
|
+
};
|
|
139
|
+
|
|
140
|
+
const isLikelyTimestampTitle = (text: string): boolean =>
|
|
141
|
+
/^\d{1,2}-\d{1,2}\s+\d{1,2}:\d{2}$/.test(text);
|
|
142
|
+
|
|
143
|
+
const isMeaningfulRecapText = (text: string): boolean => {
|
|
144
|
+
const normalized = normalizeText(text);
|
|
145
|
+
if (!normalized) return false;
|
|
146
|
+
if (normalized.length < MIN_RECAP_LENGTH) return false;
|
|
147
|
+
if (isLikelyTimestampTitle(normalized)) return false;
|
|
148
|
+
if (/^(继续|新对话|测试|test|hello|hi)$/i.test(normalized)) return false;
|
|
149
|
+
return true;
|
|
150
|
+
};
|
|
151
|
+
|
|
152
|
+
export const resolveRecentRelationshipRecap = async (input: {
|
|
153
|
+
db: any;
|
|
154
|
+
userId: string;
|
|
155
|
+
agentKey: string;
|
|
156
|
+
currentSpaceId?: string;
|
|
157
|
+
limit?: number;
|
|
158
|
+
}): Promise<RecentRelationshipRecapResolution> => {
|
|
159
|
+
const { db, userId, agentKey, currentSpaceId, limit = 40 } = input;
|
|
160
|
+
if (!db) return { recap: null, reason: "no-db" };
|
|
161
|
+
if (!userId || !agentKey) return { recap: null, reason: "missing-input" };
|
|
162
|
+
|
|
163
|
+
const range = createDialogKey.rangeOfUser(userId);
|
|
164
|
+
const matches: RecentDialogLike[] = [];
|
|
165
|
+
let scanned = 0;
|
|
166
|
+
|
|
167
|
+
let iterator = db.iterator({
|
|
168
|
+
gte: range.start,
|
|
169
|
+
lte: range.end,
|
|
170
|
+
reverse: true,
|
|
171
|
+
});
|
|
172
|
+
|
|
173
|
+
if (iterator && typeof iterator.then === "function") {
|
|
174
|
+
iterator = await iterator;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
for await (const [, value] of iterator) {
|
|
178
|
+
scanned += 1;
|
|
179
|
+
const record = (value ?? {}) as RecentDialogLike;
|
|
180
|
+
if (!Array.isArray(record.cybots) || !record.cybots.includes(agentKey)) {
|
|
181
|
+
if (scanned >= limit && matches.length > 0) break;
|
|
182
|
+
continue;
|
|
183
|
+
}
|
|
184
|
+
matches.push(record);
|
|
185
|
+
if (matches.length >= limit) break;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
if (matches.length === 0) return { recap: null, reason: "no-match" };
|
|
189
|
+
|
|
190
|
+
const sorted = [...matches].sort((a, b) => {
|
|
191
|
+
const aSameSpace = currentSpaceId && a.spaceId === currentSpaceId ? 1 : 0;
|
|
192
|
+
const bSameSpace = currentSpaceId && b.spaceId === currentSpaceId ? 1 : 0;
|
|
193
|
+
if (aSameSpace !== bSameSpace) return bSameSpace - aSameSpace;
|
|
194
|
+
return toTimestamp(b) - toTimestamp(a);
|
|
195
|
+
});
|
|
196
|
+
|
|
197
|
+
let sawTooRecent = false;
|
|
198
|
+
let sawLowQuality = false;
|
|
199
|
+
for (const record of sorted) {
|
|
200
|
+
const ts = toTimestamp(record);
|
|
201
|
+
if (ts > 0 && Date.now() - ts < MIN_RECAP_GAP_MS) {
|
|
202
|
+
sawTooRecent = true;
|
|
203
|
+
continue;
|
|
204
|
+
}
|
|
205
|
+
let recap = chooseRecapText(record);
|
|
206
|
+
if (!recap) {
|
|
207
|
+
const dialogKey = normalizeText(record.dbKey);
|
|
208
|
+
if (dialogKey) {
|
|
209
|
+
recap = await loadLastAssistantMessageText(db, dialogKey);
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
if (recap) {
|
|
213
|
+
return {
|
|
214
|
+
recap,
|
|
215
|
+
reason: "selected",
|
|
216
|
+
sourceDialogKey: normalizeText(record.dbKey) || undefined,
|
|
217
|
+
sourceUpdatedAt: normalizeText(record.updatedAt) || undefined,
|
|
218
|
+
};
|
|
219
|
+
}
|
|
220
|
+
sawLowQuality = true;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
if (sawTooRecent) return { recap: null, reason: "too-recent" };
|
|
224
|
+
if (sawLowQuality) return { recap: null, reason: "low-quality" };
|
|
225
|
+
return { recap: null, reason: "no-match" };
|
|
226
|
+
};
|
|
227
|
+
|
|
228
|
+
export const mergeGreetingWithRelationshipRecap = (input: {
|
|
229
|
+
greetingText?: string;
|
|
230
|
+
recentRecap?: string | null;
|
|
231
|
+
}): string | null => {
|
|
232
|
+
const greetingText = normalizeText(input.greetingText);
|
|
233
|
+
const recentRecap = normalizeText(input.recentRecap);
|
|
234
|
+
|
|
235
|
+
if (!greetingText && !recentRecap) return null;
|
|
236
|
+
if (!recentRecap) return greetingText || null;
|
|
237
|
+
const continuationLike = CONTINUATION_CUE_PATTERNS.some((pattern) =>
|
|
238
|
+
recentRecap.includes(pattern)
|
|
239
|
+
);
|
|
240
|
+
if (!continuationLike) return greetingText || null;
|
|
241
|
+
|
|
242
|
+
if (!greetingText) {
|
|
243
|
+
return `我记得你上次在聊:${recentRecap}\n\n如果你还想接着那个点继续,我们可以从那里往下走;如果想换个方向也可以。`;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
return `${greetingText}\n\n我记得你上次在聊:${recentRecap}\n如果你还想接着那个点继续,我们可以从那里往下走;如果想换个方向也可以。`;
|
|
247
|
+
};
|
|
@@ -0,0 +1,167 @@
|
|
|
1
|
+
import serverDb from "database/server/db";
|
|
2
|
+
import { createMemoryItem, writeMemoryItemWithIndexesToDb } from "./store";
|
|
3
|
+
import type { MemoryKind, MemoryOwnerType, MemorySubjectType, MemoryVisibility } from "./types";
|
|
4
|
+
|
|
5
|
+
export type RememberMemoryScope = "auto" | "user" | "space";
|
|
6
|
+
|
|
7
|
+
export interface RememberMemoryInput {
|
|
8
|
+
db?: any;
|
|
9
|
+
userId?: string | null;
|
|
10
|
+
spaceId?: string | null;
|
|
11
|
+
dialogId?: string | null;
|
|
12
|
+
content: string;
|
|
13
|
+
scope?: RememberMemoryScope;
|
|
14
|
+
kind?: MemoryKind;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export interface RememberMemoryResult {
|
|
18
|
+
success: true;
|
|
19
|
+
content: string;
|
|
20
|
+
requestedScope: RememberMemoryScope;
|
|
21
|
+
resolvedScopes: Array<{
|
|
22
|
+
ownerType: MemoryOwnerType;
|
|
23
|
+
ownerId: string;
|
|
24
|
+
subjectType: MemorySubjectType;
|
|
25
|
+
subjectId: string;
|
|
26
|
+
visibility: MemoryVisibility;
|
|
27
|
+
}>;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
const MEMORY_KINDS = new Set<MemoryKind>(["episodic", "semantic", "procedural"]);
|
|
31
|
+
|
|
32
|
+
const buildRememberTargets = (input: {
|
|
33
|
+
userId?: string | null;
|
|
34
|
+
spaceId?: string | null;
|
|
35
|
+
scope: RememberMemoryScope;
|
|
36
|
+
}): Array<{
|
|
37
|
+
ownerType: MemoryOwnerType;
|
|
38
|
+
ownerId: string;
|
|
39
|
+
visibility: MemoryVisibility;
|
|
40
|
+
subjectType: MemorySubjectType;
|
|
41
|
+
subjectId: string;
|
|
42
|
+
}> => {
|
|
43
|
+
if (input.scope === "user") {
|
|
44
|
+
if (!input.userId) {
|
|
45
|
+
throw new Error("rememberMemory: user scope requires userId");
|
|
46
|
+
}
|
|
47
|
+
return [
|
|
48
|
+
{
|
|
49
|
+
ownerType: "user",
|
|
50
|
+
ownerId: input.userId,
|
|
51
|
+
visibility: "private",
|
|
52
|
+
subjectType: "user",
|
|
53
|
+
subjectId: input.userId,
|
|
54
|
+
},
|
|
55
|
+
];
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
if (input.scope === "space") {
|
|
59
|
+
if (input.spaceId) {
|
|
60
|
+
return [
|
|
61
|
+
{
|
|
62
|
+
ownerType: "space",
|
|
63
|
+
ownerId: input.spaceId,
|
|
64
|
+
visibility: "shared",
|
|
65
|
+
subjectType: "space",
|
|
66
|
+
subjectId: input.spaceId,
|
|
67
|
+
},
|
|
68
|
+
];
|
|
69
|
+
}
|
|
70
|
+
if (input.userId) {
|
|
71
|
+
return [
|
|
72
|
+
{
|
|
73
|
+
ownerType: "user",
|
|
74
|
+
ownerId: input.userId,
|
|
75
|
+
visibility: "private",
|
|
76
|
+
subjectType: "user",
|
|
77
|
+
subjectId: input.userId,
|
|
78
|
+
},
|
|
79
|
+
];
|
|
80
|
+
}
|
|
81
|
+
throw new Error("rememberMemory: space scope requires spaceId");
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
if (input.userId) {
|
|
85
|
+
return [
|
|
86
|
+
{
|
|
87
|
+
ownerType: "user",
|
|
88
|
+
ownerId: input.userId,
|
|
89
|
+
visibility: "private",
|
|
90
|
+
subjectType: "user",
|
|
91
|
+
subjectId: input.userId,
|
|
92
|
+
},
|
|
93
|
+
];
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
if (input.spaceId) {
|
|
97
|
+
return [
|
|
98
|
+
{
|
|
99
|
+
ownerType: "space",
|
|
100
|
+
ownerId: input.spaceId,
|
|
101
|
+
visibility: "shared",
|
|
102
|
+
subjectType: "space",
|
|
103
|
+
subjectId: input.spaceId,
|
|
104
|
+
},
|
|
105
|
+
];
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
return [];
|
|
109
|
+
};
|
|
110
|
+
|
|
111
|
+
export const rememberMemory = async (
|
|
112
|
+
input: RememberMemoryInput
|
|
113
|
+
): Promise<RememberMemoryResult> => {
|
|
114
|
+
const content = input.content.trim();
|
|
115
|
+
if (!content) {
|
|
116
|
+
throw new Error("rememberMemory: content is required");
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
const scope = input.scope ?? "auto";
|
|
120
|
+
const targets = buildRememberTargets({
|
|
121
|
+
userId: input.userId,
|
|
122
|
+
spaceId: input.spaceId,
|
|
123
|
+
scope,
|
|
124
|
+
});
|
|
125
|
+
if (targets.length === 0) {
|
|
126
|
+
throw new Error("rememberMemory: no valid owner scope found");
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
const db = input.db ?? serverDb;
|
|
130
|
+
const kind = input.kind ?? "episodic";
|
|
131
|
+
if (!MEMORY_KINDS.has(kind)) {
|
|
132
|
+
throw new Error("rememberMemory: kind must be episodic, semantic, or procedural");
|
|
133
|
+
}
|
|
134
|
+
for (const target of targets) {
|
|
135
|
+
const item = createMemoryItem({
|
|
136
|
+
ownerType: target.ownerType,
|
|
137
|
+
ownerId: target.ownerId,
|
|
138
|
+
visibility: target.visibility,
|
|
139
|
+
subjectType: target.subjectType,
|
|
140
|
+
subjectId: target.subjectId,
|
|
141
|
+
kind,
|
|
142
|
+
content,
|
|
143
|
+
importance: kind === "procedural" ? 0.88 : target.ownerType === "user" ? 0.82 : 0.76,
|
|
144
|
+
confidence: kind === "procedural" ? 0.78 : 0.72,
|
|
145
|
+
tags:
|
|
146
|
+
target.ownerType === "user"
|
|
147
|
+
? ["agent-remembered", ...(kind === "procedural" ? ["procedural-memory"] : [])]
|
|
148
|
+
: ["agent-remembered", "space-context", ...(kind === "procedural" ? ["procedural-memory"] : [])],
|
|
149
|
+
patternKey: kind === "procedural" ? "procedural-runbook" : "agent-remember",
|
|
150
|
+
sourceDialogId: input.dialogId ?? undefined,
|
|
151
|
+
});
|
|
152
|
+
await writeMemoryItemWithIndexesToDb(db, item);
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
return {
|
|
156
|
+
success: true,
|
|
157
|
+
content,
|
|
158
|
+
requestedScope: scope,
|
|
159
|
+
resolvedScopes: targets.map((target) => ({
|
|
160
|
+
ownerType: target.ownerType,
|
|
161
|
+
ownerId: target.ownerId,
|
|
162
|
+
subjectType: target.subjectType,
|
|
163
|
+
subjectId: target.subjectId,
|
|
164
|
+
visibility: target.visibility,
|
|
165
|
+
})),
|
|
166
|
+
};
|
|
167
|
+
};
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
import { touchMemoryItems } from "./store";
|
|
2
|
+
import { buildMemoryOverlay } from "./overlay";
|
|
3
|
+
import { rankMemoryCandidates } from "./rank";
|
|
4
|
+
import { buildDefaultSubjects, chooseMemoryOwners, loadMemoryCandidates } from "./query";
|
|
5
|
+
import type { MemoryRuntimeResolution } from "./types";
|
|
6
|
+
|
|
7
|
+
const normalizeSelectedContent = (text: string): string =>
|
|
8
|
+
text
|
|
9
|
+
.trim()
|
|
10
|
+
.replace(/^(你要记住|请记住|以后记住|记住)[,,。.\s::]*/u, "")
|
|
11
|
+
.replace(/[。!?!?]+$/u, "")
|
|
12
|
+
.trim();
|
|
13
|
+
|
|
14
|
+
const selectRuntimeMemoryItems = (items: ReturnType<typeof rankMemoryCandidates>) => {
|
|
15
|
+
const seen = new Set<string>();
|
|
16
|
+
const unique = items.filter((item) => {
|
|
17
|
+
const key = `${item.kind}:${normalizeSelectedContent(item.content).toLowerCase()}`;
|
|
18
|
+
if (seen.has(key)) return false;
|
|
19
|
+
seen.add(key);
|
|
20
|
+
return true;
|
|
21
|
+
});
|
|
22
|
+
const selected: typeof unique = [];
|
|
23
|
+
const selectedIds = new Set<string>();
|
|
24
|
+
const add = (item: typeof unique[number] | undefined) => {
|
|
25
|
+
if (!item || selectedIds.has(item.id) || selected.length >= 4) return;
|
|
26
|
+
selected.push(item);
|
|
27
|
+
selectedIds.add(item.id);
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
add(unique.find((item) => item.ownerType === "user"));
|
|
31
|
+
add(unique.find((item) => item.ownerType === "space"));
|
|
32
|
+
add(unique.find((item) => item.kind === "procedural"));
|
|
33
|
+
for (const item of unique) {
|
|
34
|
+
add(item);
|
|
35
|
+
}
|
|
36
|
+
return selected;
|
|
37
|
+
};
|
|
38
|
+
|
|
39
|
+
export const resolveMemoryRuntime = async (input: {
|
|
40
|
+
userId?: string | null;
|
|
41
|
+
spaceId?: string | null;
|
|
42
|
+
agentKey: string;
|
|
43
|
+
userInput: string;
|
|
44
|
+
}): Promise<MemoryRuntimeResolution> => {
|
|
45
|
+
const owners = chooseMemoryOwners({
|
|
46
|
+
userId: input.userId,
|
|
47
|
+
spaceId: input.spaceId,
|
|
48
|
+
});
|
|
49
|
+
if (owners.length === 0) {
|
|
50
|
+
return { selectedItems: [], promptBlock: null };
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
const candidates = await loadMemoryCandidates({
|
|
54
|
+
owners,
|
|
55
|
+
subjects: buildDefaultSubjects({
|
|
56
|
+
userId: input.userId,
|
|
57
|
+
spaceId: input.spaceId,
|
|
58
|
+
agentKey: input.agentKey,
|
|
59
|
+
}),
|
|
60
|
+
kinds: ["episodic", "semantic", "procedural"],
|
|
61
|
+
ownerLimit: 20,
|
|
62
|
+
});
|
|
63
|
+
|
|
64
|
+
const ranked = selectRuntimeMemoryItems(
|
|
65
|
+
rankMemoryCandidates(candidates, input.userInput)
|
|
66
|
+
);
|
|
67
|
+
if (ranked.length === 0) {
|
|
68
|
+
return { selectedItems: [], promptBlock: null };
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
await touchMemoryItems(ranked);
|
|
72
|
+
return {
|
|
73
|
+
selectedItems: ranked,
|
|
74
|
+
promptBlock: buildMemoryOverlay(ranked),
|
|
75
|
+
};
|
|
76
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import serverDb from "database/server/db";
|
|
2
|
+
import type { MemoryItem } from "./types";
|
|
3
|
+
import {
|
|
4
|
+
createMemoryItem,
|
|
5
|
+
touchMemoryItemsInDb,
|
|
6
|
+
writeMemoryItemWithIndexesToDb,
|
|
7
|
+
} from "./storeShared";
|
|
8
|
+
|
|
9
|
+
export { createMemoryItem, writeMemoryItemWithIndexesToDb, touchMemoryItemsInDb };
|
|
10
|
+
|
|
11
|
+
export const writeMemoryItemWithIndexes = async (item: MemoryItem): Promise<void> => {
|
|
12
|
+
return writeMemoryItemWithIndexesToDb(serverDb, item);
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
export const touchMemoryItems = async (
|
|
16
|
+
items: MemoryItem[],
|
|
17
|
+
now = new Date().toISOString()
|
|
18
|
+
): Promise<void> => {
|
|
19
|
+
return touchMemoryItemsInDb(serverDb, items, now);
|
|
20
|
+
};
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
import { ulid } from "database/utils/ulid";
|
|
2
|
+
import {
|
|
3
|
+
createMemoryKey,
|
|
4
|
+
createMemoryOwnerIndexKey,
|
|
5
|
+
createMemorySubjectKindIndexKey,
|
|
6
|
+
} from "database/keys";
|
|
7
|
+
import type { MemoryItem } from "./types";
|
|
8
|
+
|
|
9
|
+
export const createMemoryItem = (
|
|
10
|
+
input: Omit<MemoryItem, "id" | "createdAt" | "lastActivatedAt" | "activationCount">
|
|
11
|
+
): MemoryItem => {
|
|
12
|
+
const now = new Date().toISOString();
|
|
13
|
+
return {
|
|
14
|
+
id: ulid(),
|
|
15
|
+
createdAt: now,
|
|
16
|
+
lastActivatedAt: now,
|
|
17
|
+
activationCount: 0,
|
|
18
|
+
...input,
|
|
19
|
+
};
|
|
20
|
+
};
|
|
21
|
+
|
|
22
|
+
export const writeMemoryItemWithIndexesToDb = async (
|
|
23
|
+
db: any,
|
|
24
|
+
item: MemoryItem
|
|
25
|
+
): Promise<void> => {
|
|
26
|
+
const batch = db.batch();
|
|
27
|
+
batch.put(createMemoryKey(item.ownerType, item.ownerId, item.id), item);
|
|
28
|
+
batch.put(
|
|
29
|
+
createMemoryOwnerIndexKey(
|
|
30
|
+
item.ownerType,
|
|
31
|
+
item.ownerId,
|
|
32
|
+
item.createdAt,
|
|
33
|
+
item.id
|
|
34
|
+
),
|
|
35
|
+
{
|
|
36
|
+
memoryKey: createMemoryKey(item.ownerType, item.ownerId, item.id),
|
|
37
|
+
ownerType: item.ownerType,
|
|
38
|
+
ownerId: item.ownerId,
|
|
39
|
+
memoryId: item.id,
|
|
40
|
+
}
|
|
41
|
+
);
|
|
42
|
+
batch.put(
|
|
43
|
+
createMemorySubjectKindIndexKey(
|
|
44
|
+
item.subjectType,
|
|
45
|
+
item.subjectId,
|
|
46
|
+
item.kind,
|
|
47
|
+
item.createdAt,
|
|
48
|
+
item.id
|
|
49
|
+
),
|
|
50
|
+
{
|
|
51
|
+
memoryKey: createMemoryKey(item.ownerType, item.ownerId, item.id),
|
|
52
|
+
subjectType: item.subjectType,
|
|
53
|
+
subjectId: item.subjectId,
|
|
54
|
+
kind: item.kind,
|
|
55
|
+
memoryId: item.id,
|
|
56
|
+
}
|
|
57
|
+
);
|
|
58
|
+
await batch.write();
|
|
59
|
+
};
|
|
60
|
+
|
|
61
|
+
export const touchMemoryItemsInDb = async (
|
|
62
|
+
db: any,
|
|
63
|
+
items: MemoryItem[],
|
|
64
|
+
now = new Date().toISOString()
|
|
65
|
+
): Promise<void> => {
|
|
66
|
+
if (items.length === 0) return;
|
|
67
|
+
const batch = db.batch();
|
|
68
|
+
for (const item of items) {
|
|
69
|
+
batch.put(createMemoryKey(item.ownerType, item.ownerId, item.id), {
|
|
70
|
+
...item,
|
|
71
|
+
lastActivatedAt: now,
|
|
72
|
+
activationCount: (item.activationCount ?? 0) + 1,
|
|
73
|
+
});
|
|
74
|
+
}
|
|
75
|
+
await batch.write();
|
|
76
|
+
};
|