nolo-cli 0.1.40 → 0.1.42
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 +27 -12
- package/agent-runtime/agentThread.ts +222 -0
- package/agent-runtime/agentThreadAdmission.ts +74 -0
- package/agent-runtime/dialogWritePlan.ts +42 -0
- package/agent-runtime/hostAdapter.ts +1 -0
- package/agent-runtime/hybridRecordStore.ts +5 -3
- package/agent-runtime/index.ts +43 -0
- package/agent-runtime/localLoop.ts +31 -2
- package/agent-runtime/localToolPolicy.ts +1 -0
- package/agent-runtime/localWorkspaceTools.ts +1258 -78
- package/agent-runtime/noloWorkspaceTools.ts +20 -1
- package/agent-runtime/runtimeToolPolicy.ts +1 -5
- package/agent-runtime/runtimeToolSurface.ts +1 -0
- package/agentAliases.ts +29 -9
- package/agentInternalCommandEntries.ts +11 -3
- package/agentMachineCommands.ts +1 -0
- package/agentRecordCommands.ts +2 -2
- package/agentRecordHelpers.ts +59 -6
- package/agentRunCommand.ts +84 -19
- package/ai/agent/_executeModel.ts +146 -0
- package/ai/agent/agentSlice.ts +556 -1
- package/ai/agent/appWorkingMemory.ts +126 -0
- package/ai/agent/buildEditingContext.ts +378 -0
- package/ai/agent/buildSystemPrompt.ts +599 -0
- package/ai/agent/canvasEditingContext.ts +49 -0
- package/ai/agent/cleanAgentMessages.ts +140 -0
- package/ai/agent/cliChatClient.ts +153 -0
- package/ai/agent/cliExecutor.ts +264 -46
- package/ai/agent/contextCompiler.ts +107 -0
- package/ai/agent/contextLayerContract.ts +44 -0
- package/ai/agent/createAgentSchema.ts +272 -0
- package/ai/agent/currentTimeContext.ts +65 -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/guidedCreation/capabilities.ts +84 -0
- package/ai/agent/guidedCreation/types.ts +38 -0
- package/ai/agent/isLiveAudioOnlyAgent.ts +26 -0
- package/ai/agent/liveAudioModel.ts +2 -0
- package/ai/agent/pageBuilderHandoffRules.ts +75 -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 +310 -0
- package/ai/agent/runAgentClientLoop.ts +164 -0
- package/ai/agent/runtimeGuidance.ts +116 -0
- package/ai/agent/serverOrigin.ts +7 -0
- package/ai/agent/startParallelAgentStreams.ts +424 -0
- package/ai/agent/startupProtocol.ts +53 -0
- package/ai/agent/streamAgentChatTurn.ts +2135 -0
- package/ai/agent/streamAgentChatTurnUtils.ts +923 -0
- package/ai/agent/toolFailureGuard.ts +99 -0
- package/ai/agent/types.ts +73 -0
- package/ai/agent/utils/imageOutput.ts +37 -0
- package/ai/agent/utils/publicImageAgentMode.ts +26 -0
- package/ai/ai.locale.ts +1165 -0
- package/ai/chat/accumulateToolCallChunks.ts +126 -0
- package/ai/chat/fetchUtils.ts +143 -0
- package/ai/chat/inlineImageUrlsForCustomProvider.ts +122 -0
- package/ai/chat/parseApiError.ts +67 -0
- package/ai/chat/parseMultilineSSE.ts +95 -0
- package/ai/chat/sendOpenAICompletionsRequest.ts +921 -0
- package/ai/chat/sendOpenAIResponseRequest.ts +720 -0
- package/ai/chat/serverProxyRetry.ts +102 -0
- package/ai/chat/shouldUseServerProxy.ts +18 -0
- package/ai/chat/streamRetry.ts +46 -0
- package/ai/chat/updateTotalUsage.ts +89 -0
- package/ai/context/buildReferenceContext.ts +437 -0
- package/ai/context/retention.ts +165 -0
- package/ai/context/tokenUtils.ts +78 -0
- package/ai/llm/agentCapabilities.ts +74 -0
- package/ai/llm/deepinfra.ts +79 -0
- package/ai/llm/fireworks.ts +68 -0
- package/ai/llm/generateRequestBody.ts +165 -0
- package/ai/llm/getModelContextWindow.ts +93 -0
- package/ai/llm/getPricing.ts +252 -0
- package/ai/llm/imagePricing.ts +66 -0
- package/ai/llm/isResponseAPIModel.ts +13 -0
- package/ai/llm/kimi.ts +22 -0
- package/ai/llm/mimo.ts +99 -0
- package/ai/llm/mistral.ts +21 -0
- package/ai/llm/models.ts +45 -0
- package/ai/llm/openrouterModels.ts +31 -0
- package/ai/llm/providers.ts +313 -0
- package/ai/llm/reasoningModels.ts +27 -0
- package/ai/llm/types.ts +82 -0
- package/ai/llm/usageRequestOptions.ts +59 -0
- package/ai/memory/policy.ts +49 -0
- package/ai/memory/queryShared.ts +167 -0
- package/ai/memory/recentRelationshipRecap.ts +251 -0
- package/ai/memory/remember.ts +111 -0
- package/ai/memory/scope.ts +74 -0
- package/ai/memory/store.ts +20 -0
- package/ai/memory/storeShared.ts +76 -0
- package/ai/memory/types.ts +52 -0
- package/ai/memory/understanding.ts +341 -0
- package/ai/memory/understandingGreeting.ts +264 -0
- package/ai/policy/personalizationDialog.ts +333 -0
- package/ai/policy/runtimePolicy.ts +526 -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/skillSummaryMarker.ts +26 -0
- package/ai/token/calculatePrice.ts +576 -0
- package/ai/token/missingUsageEstimate.ts +42 -0
- package/ai/token/normalizeUsage.ts +124 -0
- package/ai/token/openaiImageGenerationUsage.ts +56 -0
- package/ai/token/prepareTokenUsageData.ts +93 -0
- package/ai/token/resolveBillingTarget.ts +52 -0
- package/ai/token/saveTokenRecord.ts +53 -0
- package/ai/token/types.ts +103 -0
- package/ai/tools/agent/agentTools.ts +214 -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/prepareAgentDraftTool.ts +159 -0
- package/ai/tools/agent/presets/appBuilderPreset.ts +154 -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/startAgentDialogTool.ts +54 -0
- package/ai/tools/agent/streamParallelAgentsTool.ts +123 -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 +259 -0
- package/ai/tools/applyLineEditsTool.ts +315 -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 +102 -0
- package/ai/tools/cloudflareCrawlTool.ts +289 -0
- package/ai/tools/codeSearchTool.ts +123 -0
- package/ai/tools/codeTools.ts +101 -0
- package/ai/tools/convertMarxistsBookTool.ts +103 -0
- package/ai/tools/createDocTool.ts +132 -0
- package/ai/tools/createSkillDocTool.ts +155 -0
- package/ai/tools/createWorkflowTool.ts +154 -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 +63 -0
- package/ai/tools/execShellTool.ts +266 -0
- package/ai/tools/executeSqlTool.ts +192 -0
- package/ai/tools/fetchWebpageSupport.ts +333 -0
- package/ai/tools/fetchWebpageTool.ts +97 -0
- package/ai/tools/geminiImagePreviewTool.ts +386 -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 +2290 -0
- package/ai/tools/jdProductScraperTool.ts +821 -0
- package/ai/tools/listUserSpacesTool.ts +113 -0
- package/ai/tools/localFilesTool.ts +276 -0
- package/ai/tools/marxistsOfflineBook.ts +253 -0
- package/ai/tools/modelUsageTools.ts +206 -0
- package/ai/tools/noloWorkspaceReadTools.ts +467 -0
- package/ai/tools/olmOcrTool.ts +33 -0
- package/ai/tools/openaiImageTool.ts +267 -0
- package/ai/tools/prepareTools.ts +193 -0
- package/ai/tools/readDocTool.ts +88 -0
- package/ai/tools/readFileTool.ts +214 -0
- package/ai/tools/readTool.ts +194 -0
- package/ai/tools/readXPostTool.ts +229 -0
- package/ai/tools/readXhsProfileTool.ts +638 -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/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 +326 -0
- package/ai/tools/table/rowTools.ts +386 -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/taobaoTmallProductScraperTool.ts +49 -0
- package/ai/tools/toolApiClient.ts +279 -0
- package/ai/tools/toolPacks.ts +19 -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/uiAskChoiceTool.ts +104 -0
- package/ai/tools/updateContentTitleTool.ts +84 -0
- package/ai/tools/updateDocTool.ts +105 -0
- package/ai/tools/updateUserPreferenceProfileTool.ts +153 -0
- package/ai/tools/wereadGatewayTool.ts +152 -0
- package/ai/tools/whisperTool.ts +76 -0
- package/ai/tools/writeFileTool.ts +213 -0
- package/ai/tools/youtubeScraperTool.ts +116 -0
- package/ai/tools/ziweiChartTool.ts +678 -0
- package/ai/types.ts +58 -0
- package/ai/workflow/workflowExecutor.ts +323 -0
- package/ai/workflow/workflowSlice.ts +73 -0
- package/ai/workflow/workflowTypes.ts +106 -0
- package/app/actions/syncAppRecord.ts +73 -0
- package/app/constants/animationSets.ts +21 -0
- package/app/constants/appEditor.ts +99 -0
- package/app/favorite/deletedFavoriteProjection.ts +31 -0
- package/app/favorite/favoriteSlice.ts +690 -0
- package/app/favorite/type.ts +43 -0
- package/app/hooks/deleteDbKey.ts +254 -0
- package/app/i18n/client.ts +13 -0
- package/app/i18n/i18n.base.ts +14 -0
- package/app/i18n/i18n.config.ts +77 -0
- package/app/i18n/index.ts +15 -0
- package/app/i18n/mapLanguage.ts +11 -0
- package/app/i18n/translations/appBuilder.locale.ts +453 -0
- package/app/i18n/translations/error.locale.ts +246 -0
- package/app/i18n/translations/interface.locale.ts +2206 -0
- package/app/i18n/translations/pricing.locale.ts +397 -0
- package/app/i18n/translations/privacy.locale.ts +168 -0
- package/app/i18n/translations/seo.locale.ts +129 -0
- package/app/i18n/translations/terms.locale.ts +124 -0
- package/app/i18n/types.ts +6 -0
- package/app/notifications/model.ts +77 -0
- package/app/notifications/notificationSlice.ts +141 -0
- package/app/reducer.ts +36 -0
- package/app/settings/dbActionThunks.ts +34 -0
- package/app/settings/defaultSpacePreference.ts +87 -0
- package/app/settings/settingSlice.tsx +1212 -0
- package/app/settings/settingsRecord.ts +8 -0
- package/app/stateViews/runtime.ts +90 -0
- package/app/store.ts +55 -0
- package/app/theme/colors.ts +280 -0
- package/app/theme/fontPreference.ts +77 -0
- package/app/theme/theme.config.ts +120 -0
- package/app/theme/themeModeBootstrap.ts +123 -0
- package/app/types/appSummary.ts +118 -0
- package/app/types.ts +358 -0
- package/app/utils/appKeys.ts +55 -0
- package/app/utils/async.ts +28 -0
- package/app/utils/desktopAgentRuntimeTurnClient.ts +75 -0
- package/app/utils/env.ts +17 -0
- package/app/utils/fileUtils.ts +229 -0
- package/app/utils/imageUtils.ts +274 -0
- package/app/utils/myContentItems.ts +289 -0
- package/app/utils/retryAfter.ts +36 -0
- package/app/utils/retryFetch.ts +61 -0
- package/app/utils/toast.ts +3 -0
- package/auth/action/signUpAction.ts +227 -0
- package/auth/adminPermissions.ts +78 -0
- package/auth/authSlice.ts +531 -0
- package/auth/client/loginRequest.ts +14 -0
- package/auth/resetAuthScopedClientState.ts +27 -0
- package/auth/routes.ts +183 -0
- package/auth/token.ts +63 -0
- package/auth/types.ts +40 -0
- package/chat/chat.locale.ts +817 -0
- package/chat/dialog/actions/addCybotAction.ts +52 -0
- package/chat/dialog/actions/addReferenceKeysAction.ts +62 -0
- package/chat/dialog/actions/builtinDialogLlm.ts +35 -0
- package/chat/dialog/actions/cleanupCliSession.ts +40 -0
- package/chat/dialog/actions/createDialogAction.ts +379 -0
- package/chat/dialog/actions/createScheduledTaskAction.ts +78 -0
- package/chat/dialog/actions/handleSendMessageAction.ts +202 -0
- package/chat/dialog/actions/handleSendMessageResolver.ts +27 -0
- package/chat/dialog/actions/removeCybotAction.ts +6 -0
- package/chat/dialog/actions/removeDialogAgentAction.ts +44 -0
- package/chat/dialog/actions/replacePrimaryCybotAction.ts +6 -0
- package/chat/dialog/actions/setPrimaryDialogAgentAction.ts +52 -0
- package/chat/dialog/actions/updateDialogSummaryAction.ts +430 -0
- package/chat/dialog/actions/updateDialogTitleAction.ts +151 -0
- package/chat/dialog/actions/updateDialogTitlePolicy.ts +30 -0
- package/chat/dialog/actions/updateTokensAction.ts +233 -0
- package/chat/dialog/dialogAgents.ts +72 -0
- package/chat/dialog/dialogAttachmentCleanup.ts +135 -0
- package/chat/dialog/dialogSlice.ts +985 -0
- package/chat/dialog/dialogTitle.ts +81 -0
- package/chat/dialog/dialogTokenStats.ts +12 -0
- package/chat/dialog/dialogUrl.ts +6 -0
- package/chat/dialog/goal.ts +108 -0
- package/chat/dialog/objectAssistantRegistry.ts +286 -0
- package/chat/dialog/schedule.ts +17 -0
- package/chat/messages/activityCompletion.ts +97 -0
- package/chat/messages/fetchAndCacheMessages.ts +119 -0
- package/chat/messages/fetchConvMsgs.ts +51 -0
- package/chat/messages/fileUrl.ts +13 -0
- package/chat/messages/imagePayloadPersistence.ts +22 -0
- package/chat/messages/messageAgent.ts +8 -0
- package/chat/messages/messageContent.ts +203 -0
- package/chat/messages/messageContract.ts +88 -0
- package/chat/messages/messageSlice.ts +1386 -0
- package/chat/messages/toolThunks.ts +646 -0
- package/chat/messages/types.ts +8 -1
- package/chat/messages/web/toolDisplayName.ts +686 -0
- package/cli/agentAliases.ts +29 -9
- package/cli/agentInternalCommandEntries.ts +11 -3
- package/cli/agentMachineCommands.ts +1 -0
- package/cli/agentRecordCommands.ts +2 -2
- package/cli/agentRecordHelpers.ts +59 -6
- package/cli/agentRunCommand.ts +84 -19
- package/cli/client/agentRun.ts +92 -261
- package/cli/client/localRuntimeAdapter.ts +292 -50
- package/cli/commandRegistry.ts +7 -4
- package/cli/dialogAttachmentCleanup.ts +151 -0
- package/cli/dialogCommands.ts +163 -61
- package/cli/dialogInternalCommandEntries.ts +1 -1
- package/cli/docCreateCommands.ts +345 -0
- package/cli/docInternalCommandEntries.ts +11 -0
- package/cli/docPageHelpers.ts +80 -0
- package/cli/docSkillHelpers.ts +67 -0
- package/cli/docSpaceHelpers.ts +46 -0
- package/cli/internalCommandEntries.ts +4 -0
- package/cli/machineCommands.ts +18 -34
- package/cli/memoryCommands.ts +253 -0
- package/cli/memoryInternalCommandEntries.ts +9 -0
- package/cli/qoderUsageProbe.ts +252 -0
- package/cli/scriptCommandEntries.ts +0 -3
- package/cli/secretScan.ts +31 -0
- package/cli/tableCommands.ts +248 -13
- package/cli/workflowInternalCommandEntries.ts +2 -3
- package/client/agentRun.test.ts +119 -83
- package/client/agentRun.ts +92 -261
- package/client/localRuntimeAdapter.test.ts +894 -32
- package/client/localRuntimeAdapter.ts +292 -50
- package/commandRegistry.ts +7 -4
- package/connector-experimental/capabilities.ts +10 -9
- package/core/builtinAgents.ts +209 -0
- package/core/config.ts +15 -0
- package/core/crypto.ts +51 -0
- package/core/generateKeyPairFromSeedV1.ts +15 -0
- package/core/generateMainKey.ts +22 -0
- package/core/init.ts +41 -0
- package/core/localOrigins.ts +8 -0
- package/core/password.ts +13 -0
- package/core/prefix.ts +23 -0
- package/create/editor/transforms/fromMarkdown/index.ts +260 -0
- package/create/editor/transforms/fromMarkdown/inline.ts +285 -0
- package/create/editor/transforms/fromMarkdown/table.ts +130 -0
- package/create/editor/transforms/markdownToSlate.ts +24 -0
- package/create/editor/transforms/slateToRenderMarkdown.ts +218 -0
- package/create/editor/transforms/slateToSimplifiedMarkdown.ts +224 -0
- package/create/editor/transforms/slateToText.ts +33 -0
- package/create/editor/utils/slateUtils.ts +233 -0
- package/create/space/addSpaceAction.ts +193 -0
- package/create/space/category/categoryActions.ts +427 -0
- package/create/space/changeSpaceAction.ts +36 -0
- package/create/space/constants.ts +8 -0
- package/create/space/content/addContentAction.ts +116 -0
- package/create/space/content/contentThunks.ts +90 -0
- package/create/space/content/deleteContentFromSpaceAction.ts +187 -0
- package/create/space/content/deleteMultipleContentAction.ts +112 -0
- package/create/space/content/moveContentAction.ts +285 -0
- package/create/space/content/updateContentCategoryAction.ts +154 -0
- package/create/space/content/updateContentTitleAction.ts +151 -0
- package/create/space/content/uploadAndAddFileToSpaceAction.ts +98 -0
- package/create/space/contentKeyUtils.ts +117 -0
- package/create/space/deleteSpaceAction.ts +276 -0
- package/create/space/fetchSpaceAction.ts +70 -0
- package/create/space/fetchSpaceSidebarStateAction.ts +26 -0
- package/create/space/loadDefaultSpaceAction.ts +57 -0
- package/create/space/member/addMemberAction.ts +79 -0
- package/create/space/member/fetchUserSpaceMembershipsAction.ts +386 -0
- package/create/space/member/memberThunks.ts +47 -0
- package/create/space/member/removeMemberAction.ts +67 -0
- package/create/space/resolvePreferredSpaceId.ts +113 -0
- package/create/space/sidebarVisibleTypes.ts +260 -0
- package/create/space/space.locale.ts +1087 -0
- package/create/space/spaceAccess.ts +182 -0
- package/create/space/spaceCollapsedState.ts +54 -0
- package/create/space/spaceKeys.ts +65 -0
- package/create/space/spaceSlice.ts +328 -0
- package/create/space/spaceThunks.ts +410 -0
- package/create/space/types.ts +27 -0
- package/create/space/updateSpaceAction.ts +107 -0
- package/create/space/utils/permissions.ts +47 -0
- package/create/types.ts +21 -0
- package/database/actions/agentReadResolution.ts +33 -0
- package/database/actions/common.ts +243 -0
- package/database/actions/deleteFile.ts +40 -0
- package/database/actions/fileContent.ts +125 -0
- package/database/actions/patch.ts +155 -0
- package/database/actions/read.ts +358 -0
- package/database/actions/readAndWait.ts +260 -0
- package/database/actions/readRequestManager.ts +120 -0
- package/database/actions/readResolution.ts +125 -0
- package/database/actions/remove.ts +94 -0
- package/database/actions/replication.ts +477 -0
- package/database/actions/upload.ts +186 -0
- package/database/actions/upsert.ts +56 -0
- package/database/actions/write.ts +146 -0
- package/database/authority/ownerKey.ts +80 -0
- package/database/authority/recordAuthority.ts +67 -0
- package/database/authority/userAuthorityRegistry.ts +54 -0
- package/database/client/fetchUserData.ts +61 -0
- package/database/dbActionThunks.ts +1 -0
- package/database/dbSlice.ts +149 -0
- package/database/fileRing.ts +51 -0
- package/database/fileStorage.ts +232 -0
- package/database/fileUrl.ts +34 -0
- package/database/keys.ts +767 -0
- package/database/queryPrefixes.ts +14 -0
- package/database/requests.ts +443 -0
- package/database/runtimeServerContext.ts +54 -0
- package/database/tenantPlacement.ts +57 -0
- package/database/userPreferenceRegister.ts +131 -0
- package/database/utils/ulid.ts +1 -0
- package/dialogAttachmentCleanup.ts +151 -0
- package/dialogCommands.ts +163 -61
- package/dialogInternalCommandEntries.ts +1 -1
- package/docCreateCommands.ts +345 -0
- package/docInternalCommandEntries.ts +11 -0
- package/docPageHelpers.ts +80 -0
- package/docSkillHelpers.ts +67 -0
- package/docSpaceHelpers.ts +46 -0
- package/integrations/anthropic/anthropicModels.ts +47 -0
- package/integrations/deepseek/models.ts +37 -0
- package/integrations/google/models.ts +341 -0
- package/integrations/openai/chatCompletionStreamMode.ts +10 -0
- package/integrations/openai/filterAndCleanMessages.ts +284 -0
- package/integrations/openai/flexTier.ts +102 -0
- package/integrations/openai/generateOpenAIRequestBody.ts +271 -0
- package/integrations/openai/generateResponseRequestBody.ts +77 -0
- package/integrations/openai/models.ts +271 -0
- package/integrations/openai/providerBodyCompatibility.ts +23 -0
- package/integrations/openai/responsesHelpers.ts +297 -0
- package/integrations/x-reader/types.ts +109 -0
- package/integrations/xai/models.ts +13 -0
- package/integrations/xhs-reader/redaction.ts +68 -0
- package/integrations/xhs-reader/types.ts +277 -0
- package/integrations/xhs-reader/url.ts +80 -0
- package/internalCommandEntries.ts +4 -0
- package/machineCommands.ts +18 -34
- package/memoryCommands.ts +253 -0
- package/memoryInternalCommandEntries.ts +9 -0
- package/package.json +454 -9
- package/qoderUsageProbe.ts +252 -0
- package/render/contentIcon/types.ts +167 -0
- package/render/page/createPageAction.ts +183 -0
- package/render/page/docSlice.ts +495 -0
- package/render/page/types.ts +19 -0
- package/render/table/createTableAction.ts +274 -0
- package/render/table/deleteTableAction.ts +193 -0
- package/render/table/fetchAndCacheTableRows.ts +174 -0
- package/render/table/tableSlice.ts +1167 -0
- package/render/table/toolValueUtils.ts +363 -0
- package/render/table/types.ts +262 -0
- package/render/table/utils/tableSerialization.ts +50 -0
- package/scriptCommandEntries.ts +0 -3
- package/secretScan.ts +31 -0
- package/server/handlers/agentRun/types.ts +105 -0
- package/share/action.ts +225 -0
- package/share/helpers.ts +302 -0
- package/share/keys.ts +243 -0
- package/share/publicSharePolicy.ts +27 -0
- package/share/shareSlice.ts +53 -0
- package/share/types.ts +100 -0
- package/tableCommands.ts +248 -13
- package/workflowInternalCommandEntries.ts +2 -3
- package/ai/tools/agent/taskRunTool.ts +0 -112
- package/cli/client/taskRunPrompt.ts +0 -27
- package/cli/taskRunCommand.ts +0 -265
- package/client/taskRunPrompt.ts +0 -27
- package/taskRunCommand.ts +0 -265
|
@@ -0,0 +1,272 @@
|
|
|
1
|
+
// 路径: ai/agent/createAgentSchema.ts
|
|
2
|
+
|
|
3
|
+
import { ReferenceItem } from "../../app/types"; // 确保 app/types 里有 ReferenceItem 定义
|
|
4
|
+
import { TFunction } from "i18next";
|
|
5
|
+
import { z } from "zod";
|
|
6
|
+
|
|
7
|
+
// --- 常量 ---
|
|
8
|
+
export const DEFAULT_TEMPERATURE = 0.7;
|
|
9
|
+
export const DEFAULT_TOP_P = 1;
|
|
10
|
+
export const DEFAULT_FREQUENCY_PENALTY = 0.0;
|
|
11
|
+
export const DEFAULT_PRESENCE_PENALTY = 0.0;
|
|
12
|
+
export const DEFAULT_MAX_TOKENS = 4096;
|
|
13
|
+
export const DEFAULT_REASONING_EFFORT = "medium";
|
|
14
|
+
|
|
15
|
+
export const REASONING_EFFORT_OPTIONS = ["low", "medium", "high"] as const;
|
|
16
|
+
const greetingMenuItemSchema = z.object({
|
|
17
|
+
id: z.string().min(1),
|
|
18
|
+
label: z.string().min(1),
|
|
19
|
+
userMessage: z.string().optional(),
|
|
20
|
+
});
|
|
21
|
+
|
|
22
|
+
const greetingConfigSchema = z.object({
|
|
23
|
+
text: z.string().trim().optional(),
|
|
24
|
+
menu: z.array(greetingMenuItemSchema).optional(),
|
|
25
|
+
});
|
|
26
|
+
|
|
27
|
+
const isLocalCustomProviderUrl = (value: unknown): boolean => {
|
|
28
|
+
if (typeof value !== "string" || !value.trim()) return false;
|
|
29
|
+
try {
|
|
30
|
+
const url = new URL(value);
|
|
31
|
+
const host = url.hostname.toLowerCase();
|
|
32
|
+
return host === "127.0.0.1" || host === "localhost" || host === "::1";
|
|
33
|
+
} catch {
|
|
34
|
+
return false;
|
|
35
|
+
}
|
|
36
|
+
};
|
|
37
|
+
|
|
38
|
+
const referenceItemSchema = z
|
|
39
|
+
.object({
|
|
40
|
+
dbKey: z.string(),
|
|
41
|
+
title: z.string(),
|
|
42
|
+
type: z.enum(["knowledge", "instruction", "page"]),
|
|
43
|
+
})
|
|
44
|
+
.transform((data) => ({
|
|
45
|
+
...data,
|
|
46
|
+
type: data.type === "page" ? "knowledge" : data.type,
|
|
47
|
+
}));
|
|
48
|
+
|
|
49
|
+
// --- 核心 schema ---
|
|
50
|
+
export const getCreateAgentSchema = (t: TFunction) =>
|
|
51
|
+
z
|
|
52
|
+
.object({
|
|
53
|
+
name: z
|
|
54
|
+
.string()
|
|
55
|
+
.trim()
|
|
56
|
+
.min(1, t("validation.nameRequired"))
|
|
57
|
+
.max(50, t("validation.nameTooLong")),
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* provider 不再必填:只是一个可选的标识字段
|
|
61
|
+
*/
|
|
62
|
+
provider: z.string().trim().optional().or(z.string().length(0)),
|
|
63
|
+
|
|
64
|
+
/**
|
|
65
|
+
* 模型:所有模式下必须选择(通过 refine 条件校验)
|
|
66
|
+
*/
|
|
67
|
+
model: z.string().trim().optional().or(z.string().length(0)),
|
|
68
|
+
|
|
69
|
+
/**
|
|
70
|
+
* 模型是否支持图像(来自模型元数据,方便持久化 / 服务端快速判断)
|
|
71
|
+
*/
|
|
72
|
+
hasVision: z.boolean().optional().default(false),
|
|
73
|
+
|
|
74
|
+
/**
|
|
75
|
+
* API 来源:平台 / 自定义 / CLI
|
|
76
|
+
*/
|
|
77
|
+
apiSource: z.enum(["platform", "custom", "cli"]).default("platform"),
|
|
78
|
+
|
|
79
|
+
/**
|
|
80
|
+
* 默认交互模式:文本聊天 / 实时语音通话
|
|
81
|
+
*/
|
|
82
|
+
defaultInteractionMode: z.enum(["text", "live_audio"]).default("text"),
|
|
83
|
+
|
|
84
|
+
/**
|
|
85
|
+
* 语音配置:例如预设音色
|
|
86
|
+
*/
|
|
87
|
+
voiceConfig: z.object({
|
|
88
|
+
voiceId: z.string().optional()
|
|
89
|
+
}).optional(),
|
|
90
|
+
|
|
91
|
+
/**
|
|
92
|
+
* CLI provider(apiSource=cli 时有效):支持 "copilot" | "gemini" | "codex" | "claude" | "agy" | "qoder"
|
|
93
|
+
*/
|
|
94
|
+
cliProvider: z
|
|
95
|
+
.enum(["copilot", "gemini", "codex", "claude", "agy", "qoder"])
|
|
96
|
+
.optional()
|
|
97
|
+
.or(z.literal("")),
|
|
98
|
+
|
|
99
|
+
/**
|
|
100
|
+
* Optional machine binding for CLI agents. Empty means use the server/local
|
|
101
|
+
* CLI runtime; a value means dispatch the CLI run to a connected machine.
|
|
102
|
+
*/
|
|
103
|
+
machineId: z.string().trim().optional().or(z.string().length(0)),
|
|
104
|
+
|
|
105
|
+
customProviderUrl: z
|
|
106
|
+
.string()
|
|
107
|
+
.trim()
|
|
108
|
+
.optional()
|
|
109
|
+
.or(z.string().length(0))
|
|
110
|
+
.refine((val) => !val || z.string().url().safeParse(val).success, {
|
|
111
|
+
message: t("validation.invalidUrl"),
|
|
112
|
+
}),
|
|
113
|
+
|
|
114
|
+
/**
|
|
115
|
+
* API Key:完全可选(本地 / 无鉴权的自定义接口不需要)
|
|
116
|
+
*/
|
|
117
|
+
apiKey: z.string().trim().optional().or(z.string().length(0)),
|
|
118
|
+
|
|
119
|
+
useServerProxy: z.boolean().default(true),
|
|
120
|
+
|
|
121
|
+
prompt: z.string().trim().optional().or(z.string().length(0)),
|
|
122
|
+
|
|
123
|
+
tools: z.array(z.string()).default([]),
|
|
124
|
+
|
|
125
|
+
isPublic: z.boolean().default(false),
|
|
126
|
+
|
|
127
|
+
greeting: z
|
|
128
|
+
.union([z.string(), greetingConfigSchema])
|
|
129
|
+
.optional(),
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
introduction: z.string().trim().optional().or(z.string().length(0)),
|
|
133
|
+
|
|
134
|
+
inputPrice: z.number().min(0, t("validation.priceMin")).default(0),
|
|
135
|
+
|
|
136
|
+
outputPrice: z.number().min(0, t("validation.priceMin")).default(0),
|
|
137
|
+
|
|
138
|
+
sharingLevel: z.enum(["default", "split", "full"]).optional(),
|
|
139
|
+
|
|
140
|
+
avatarFileId: z.string().optional().or(z.string().length(0)),
|
|
141
|
+
|
|
142
|
+
tags: z.string().trim().optional().or(z.string().length(0)),
|
|
143
|
+
|
|
144
|
+
references: z
|
|
145
|
+
.array(referenceItemSchema)
|
|
146
|
+
.optional()
|
|
147
|
+
.default([])
|
|
148
|
+
.refine(
|
|
149
|
+
(refs) => {
|
|
150
|
+
const dbKeys = refs?.map((ref) => ref.dbKey) || [];
|
|
151
|
+
return dbKeys.length === new Set(dbKeys).size;
|
|
152
|
+
},
|
|
153
|
+
{ message: t("validation.duplicateReferences") }
|
|
154
|
+
),
|
|
155
|
+
|
|
156
|
+
temperature: z
|
|
157
|
+
.number()
|
|
158
|
+
.min(0, t("validation.temperatureRange"))
|
|
159
|
+
.max(2, t("validation.temperatureRange"))
|
|
160
|
+
.optional(),
|
|
161
|
+
|
|
162
|
+
top_p: z
|
|
163
|
+
.number()
|
|
164
|
+
.min(0, t("validation.topPRange"))
|
|
165
|
+
.max(1, t("validation.topPRange"))
|
|
166
|
+
.optional(),
|
|
167
|
+
|
|
168
|
+
frequency_penalty: z
|
|
169
|
+
.number()
|
|
170
|
+
.min(-2, t("validation.frequencyPenaltyRange"))
|
|
171
|
+
.max(2, t("validation.frequencyPenaltyRange"))
|
|
172
|
+
.optional(),
|
|
173
|
+
|
|
174
|
+
presence_penalty: z
|
|
175
|
+
.number()
|
|
176
|
+
.min(-2, t("validation.presencePenaltyRange"))
|
|
177
|
+
.max(2, t("validation.presencePenaltyRange"))
|
|
178
|
+
.optional(),
|
|
179
|
+
|
|
180
|
+
max_tokens: z
|
|
181
|
+
.number()
|
|
182
|
+
.min(1, t("validation.maxTokensMin"))
|
|
183
|
+
.max(500000, t("validation.maxTokensMax"))
|
|
184
|
+
.optional(),
|
|
185
|
+
|
|
186
|
+
reasoning_effort: z
|
|
187
|
+
.enum(REASONING_EFFORT_OPTIONS, {
|
|
188
|
+
errorMap: () => ({ message: t("validation.reasoningEffortInvalid") }),
|
|
189
|
+
})
|
|
190
|
+
.default(DEFAULT_REASONING_EFFORT)
|
|
191
|
+
.optional(),
|
|
192
|
+
|
|
193
|
+
/**
|
|
194
|
+
* enableThinking:是否开启模型思考模式
|
|
195
|
+
* - Ollama/Qwen3: delta.reasoning 字段会流式返回思考过程
|
|
196
|
+
* - Anthropic Claude: 注入 thinking: { type:"enabled", budget_tokens }
|
|
197
|
+
* - DeepSeek: delta.reasoning_content
|
|
198
|
+
*/
|
|
199
|
+
enableThinking: z.boolean().optional().default(false),
|
|
200
|
+
|
|
201
|
+
/**
|
|
202
|
+
* thinkingBudget:思考 token 预算(仅对支持 budget_tokens 的 provider 生效,如 Anthropic)
|
|
203
|
+
* Ollama/DeepSeek 等不支持 budget_tokens 的 provider 忽略此字段
|
|
204
|
+
*/
|
|
205
|
+
thinkingBudget: z
|
|
206
|
+
.number()
|
|
207
|
+
.min(1024, t("validation.thinkingBudgetMin"))
|
|
208
|
+
.max(32000, t("validation.thinkingBudgetMax"))
|
|
209
|
+
.optional(),
|
|
210
|
+
|
|
211
|
+
/**
|
|
212
|
+
* whitelist:白名单
|
|
213
|
+
*/
|
|
214
|
+
whitelist: z.array(z.string().trim().min(1)).optional().default([]),
|
|
215
|
+
|
|
216
|
+
/**
|
|
217
|
+
* linkedSpaces:关联的其他 Space ID 列表
|
|
218
|
+
* Agent 可以访问这些 Space 的目录结构作为粗略上下文
|
|
219
|
+
*/
|
|
220
|
+
linkedSpaces: z.array(z.string().trim().min(1)).optional().default([]),
|
|
221
|
+
})
|
|
222
|
+
// --- refine 逻辑 ---
|
|
223
|
+
// 1) 自定义 URL 必填:
|
|
224
|
+
// - 只要 apiSource === "custom",必须填写 customProviderUrl
|
|
225
|
+
.refine(
|
|
226
|
+
(data) => {
|
|
227
|
+
if (data.apiSource === "custom") {
|
|
228
|
+
return !!data.customProviderUrl;
|
|
229
|
+
}
|
|
230
|
+
return true;
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
message: t("validation.customUrlRequired"),
|
|
234
|
+
path: ["customProviderUrl"],
|
|
235
|
+
}
|
|
236
|
+
)
|
|
237
|
+
// 2) model 必填规则:
|
|
238
|
+
// - platform / custom 模式必填;cli 模式有默认值,不强制
|
|
239
|
+
.refine(
|
|
240
|
+
(data) => {
|
|
241
|
+
if (data.apiSource === "cli") return true;
|
|
242
|
+
return !!data.model?.trim();
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
message: t("validation.modelRequired"),
|
|
246
|
+
path: ["model"],
|
|
247
|
+
}
|
|
248
|
+
)
|
|
249
|
+
.superRefine((data, ctx) => {
|
|
250
|
+
if (!data.machineId?.trim()) return;
|
|
251
|
+
const canUseMachineBinding =
|
|
252
|
+
data.apiSource === "cli" ||
|
|
253
|
+
(data.apiSource === "custom" &&
|
|
254
|
+
isLocalCustomProviderUrl(data.customProviderUrl));
|
|
255
|
+
if (canUseMachineBinding) return;
|
|
256
|
+
ctx.addIssue({
|
|
257
|
+
code: z.ZodIssueCode.custom,
|
|
258
|
+
path: ["machineId"],
|
|
259
|
+
message: t("validation.machineBindingRequiresCliOrLocalCustom"),
|
|
260
|
+
});
|
|
261
|
+
});
|
|
262
|
+
|
|
263
|
+
export type FormData = z.infer<ReturnType<typeof getCreateAgentSchema>>;
|
|
264
|
+
|
|
265
|
+
export const normalizeReferences = (references: any[]): ReferenceItem[] => {
|
|
266
|
+
if (!Array.isArray(references)) return [];
|
|
267
|
+
return references.map((ref) => ({
|
|
268
|
+
dbKey: ref.dbKey || "",
|
|
269
|
+
title: ref.title || "",
|
|
270
|
+
type: ref.type === "page" ? "knowledge" : ref.type || "knowledge",
|
|
271
|
+
}));
|
|
272
|
+
};
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
const pad2 = (value: number): string => String(value).padStart(2, "0");
|
|
2
|
+
|
|
3
|
+
const resolveDefaultTimeZone = (): string => {
|
|
4
|
+
try {
|
|
5
|
+
return Intl.DateTimeFormat().resolvedOptions().timeZone || "UTC";
|
|
6
|
+
} catch {
|
|
7
|
+
return "UTC";
|
|
8
|
+
}
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
const partsForTimeZone = (date: Date, timeZone: string): Record<string, string> => {
|
|
12
|
+
const parts = new Intl.DateTimeFormat("en-US", {
|
|
13
|
+
timeZone,
|
|
14
|
+
year: "numeric",
|
|
15
|
+
month: "2-digit",
|
|
16
|
+
day: "2-digit",
|
|
17
|
+
hour: "2-digit",
|
|
18
|
+
minute: "2-digit",
|
|
19
|
+
second: "2-digit",
|
|
20
|
+
hour12: false,
|
|
21
|
+
}).formatToParts(date);
|
|
22
|
+
|
|
23
|
+
return Object.fromEntries(
|
|
24
|
+
parts
|
|
25
|
+
.filter((part) => part.type !== "literal")
|
|
26
|
+
.map((part) => [part.type, part.value]),
|
|
27
|
+
);
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
const zonedDateTime = (date: Date, timeZone: string): string => {
|
|
31
|
+
const parts = partsForTimeZone(date, timeZone);
|
|
32
|
+
return [
|
|
33
|
+
`${parts.year}-${parts.month}-${parts.day}`,
|
|
34
|
+
`${parts.hour}:${parts.minute}:${parts.second}`,
|
|
35
|
+
].join(" ");
|
|
36
|
+
};
|
|
37
|
+
|
|
38
|
+
const timeZoneOffset = (date: Date, timeZone: string): string => {
|
|
39
|
+
const parts = partsForTimeZone(date, timeZone);
|
|
40
|
+
const utcMs = Date.UTC(
|
|
41
|
+
Number(parts.year),
|
|
42
|
+
Number(parts.month) - 1,
|
|
43
|
+
Number(parts.day),
|
|
44
|
+
Number(parts.hour),
|
|
45
|
+
Number(parts.minute),
|
|
46
|
+
Number(parts.second),
|
|
47
|
+
);
|
|
48
|
+
const offsetMinutes = Math.round((utcMs - date.getTime()) / 60_000);
|
|
49
|
+
const sign = offsetMinutes >= 0 ? "+" : "-";
|
|
50
|
+
const absolute = Math.abs(offsetMinutes);
|
|
51
|
+
return `UTC${sign}${pad2(Math.floor(absolute / 60))}:${pad2(absolute % 60)}`;
|
|
52
|
+
};
|
|
53
|
+
|
|
54
|
+
export const buildCurrentTimeBlock = (
|
|
55
|
+
now: Date = new Date(),
|
|
56
|
+
timeZone: string = resolveDefaultTimeZone(),
|
|
57
|
+
): string => [
|
|
58
|
+
"--- 当前时间 ---",
|
|
59
|
+
`当前日期: ${zonedDateTime(now, timeZone).slice(0, 10)}`,
|
|
60
|
+
`当前本地时间: ${zonedDateTime(now, timeZone)}`,
|
|
61
|
+
`本地时区: ${timeZone} / ${timeZoneOffset(now, timeZone)}`,
|
|
62
|
+
`UTC 时间: ${now.toISOString()}`,
|
|
63
|
+
"当用户问“现在”“当前时间”“北京时间”等时间问题时,直接使用这里的当前时间;不要只回答日期。",
|
|
64
|
+
"当用户说“今天”“今日”或 today 时,默认指当前本地日期,除非用户明确给出其它日期。",
|
|
65
|
+
].join("\n");
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
// packages/ai/agent/executeToolCall.ts
|
|
2
|
+
//
|
|
3
|
+
// 提取自 runAgentClientLoop:非流式多轮循环中执行单次 tool_call 的公共逻辑。
|
|
4
|
+
// streamAgentChatTurn 走 sendOpenAICompletionsRequest → toolThunks,不使用此函数。
|
|
5
|
+
|
|
6
|
+
import { findToolExecutor } from "../tools";
|
|
7
|
+
import { getToolResultErrorData } from "../tools/toolResultError";
|
|
8
|
+
|
|
9
|
+
interface ToolCall {
|
|
10
|
+
id: string;
|
|
11
|
+
function?: {
|
|
12
|
+
name?: string;
|
|
13
|
+
arguments?: string;
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* 执行单次 tool_call,返回工具结果字符串(供追加到 messages)。
|
|
19
|
+
*
|
|
20
|
+
* @param tc LLM 返回的单个 tool_call 对象
|
|
21
|
+
* @param thunkApi Redux thunkApi(含 dispatch / getState)
|
|
22
|
+
* @param parentMessageId 父消息 ID(关联上下文)
|
|
23
|
+
*/
|
|
24
|
+
export async function executeToolCall(
|
|
25
|
+
tc: ToolCall,
|
|
26
|
+
thunkApi: any,
|
|
27
|
+
context?: { parentMessageId?: string; agentKey?: string }
|
|
28
|
+
): Promise<string> {
|
|
29
|
+
const toolName: string = tc.function?.name ?? "";
|
|
30
|
+
const toolArgs = (() => {
|
|
31
|
+
try {
|
|
32
|
+
return JSON.parse(tc.function?.arguments ?? "{}");
|
|
33
|
+
} catch {
|
|
34
|
+
return {};
|
|
35
|
+
}
|
|
36
|
+
})();
|
|
37
|
+
|
|
38
|
+
try {
|
|
39
|
+
const toolDefinition = findToolExecutor(toolName);
|
|
40
|
+
if (!toolDefinition) {
|
|
41
|
+
return `[工具 "${toolName}" 未找到]`;
|
|
42
|
+
}
|
|
43
|
+
const result = await toolDefinition.executor(toolArgs, thunkApi, {
|
|
44
|
+
parentMessageId: context?.parentMessageId ?? "",
|
|
45
|
+
});
|
|
46
|
+
// executor 返回 { rawData, displayData? } 或直接返回字符串
|
|
47
|
+
const raw = result?.rawData ?? result;
|
|
48
|
+
return typeof raw === "string" ? raw : JSON.stringify(raw);
|
|
49
|
+
} catch (err: any) {
|
|
50
|
+
console.error(`[executeToolCall] tool "${toolName}" 执行失败:`, err);
|
|
51
|
+
const structured = getToolResultErrorData(err);
|
|
52
|
+
if (structured?.rawData !== undefined) {
|
|
53
|
+
const raw = structured.rawData;
|
|
54
|
+
return typeof raw === "string" ? raw : JSON.stringify(raw);
|
|
55
|
+
}
|
|
56
|
+
return `[工具 "${toolName}" 执行失败: ${err?.message ?? err}]`;
|
|
57
|
+
}
|
|
58
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { fetchReferenceContents } from "../context/buildReferenceContext";
|
|
2
|
+
import { resolveReferenceAssets } from "../agent/referenceUtils";
|
|
3
|
+
import type { ReferenceItem } from "../../app/types";
|
|
4
|
+
|
|
5
|
+
export interface AgentContexts {
|
|
6
|
+
botInstructionsContext: string;
|
|
7
|
+
botKnowledgeContext: string;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
/** 根据 agentConfig.references 拉取 instruction / knowledge */
|
|
11
|
+
export async function fetchAgentContexts(
|
|
12
|
+
references: ReferenceItem[] | undefined,
|
|
13
|
+
dispatch: any
|
|
14
|
+
): Promise<AgentContexts> {
|
|
15
|
+
if (!Array.isArray(references)) {
|
|
16
|
+
return { botInstructionsContext: "", botKnowledgeContext: "" };
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
const { references: normalizedRefs, contentByKey } =
|
|
20
|
+
await resolveReferenceAssets(references, dispatch);
|
|
21
|
+
|
|
22
|
+
const instructionKeys = new Set<string>();
|
|
23
|
+
const knowledgeKeys = new Set<string>();
|
|
24
|
+
normalizedRefs.forEach((ref) => {
|
|
25
|
+
if (!ref.dbKey) return;
|
|
26
|
+
ref.type === "instruction"
|
|
27
|
+
? instructionKeys.add(ref.dbKey)
|
|
28
|
+
: knowledgeKeys.add(ref.dbKey);
|
|
29
|
+
});
|
|
30
|
+
const [instructionsMap, knowledgeMap] = await Promise.all([
|
|
31
|
+
fetchReferenceContents(Array.from(instructionKeys), dispatch, {
|
|
32
|
+
preloaded: contentByKey,
|
|
33
|
+
}),
|
|
34
|
+
fetchReferenceContents(Array.from(knowledgeKeys), dispatch, {
|
|
35
|
+
preloaded: contentByKey,
|
|
36
|
+
}),
|
|
37
|
+
]);
|
|
38
|
+
return {
|
|
39
|
+
botInstructionsContext: Array.from(instructionsMap.values()).join(""),
|
|
40
|
+
botKnowledgeContext: Array.from(knowledgeMap.values()).join(""),
|
|
41
|
+
};
|
|
42
|
+
}
|
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
|
|
2
|
+
// packages/ai/agent/getFullChatContextKeys.ts
|
|
3
|
+
import { RootState } from "../../app/store";
|
|
4
|
+
import { selectAllMsgs } from "../../chat/messages/messageSlice";
|
|
5
|
+
import type { DialogConfig } from "../../app/types";
|
|
6
|
+
import { extractCustomId } from "../../core/prefix";
|
|
7
|
+
|
|
8
|
+
/** 简单的数组差集工具:返回 arrA 中不在 arrB 里的元素 */
|
|
9
|
+
const difference = <T>(arrA: T[], arrB: T[]): T[] => {
|
|
10
|
+
if (!arrA.length) return [];
|
|
11
|
+
if (!arrB.length) return [...arrA];
|
|
12
|
+
|
|
13
|
+
const exclude = new Set(arrB);
|
|
14
|
+
return arrA.filter((item) => !exclude.has(item));
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* Collect all possible reference keys for this chat turn:
|
|
19
|
+
* - botInstructionKeys: keys from agentConfig.references of type "instruction"
|
|
20
|
+
* - botKnowledgeKeys: keys from agentConfig.references (non-instruction)
|
|
21
|
+
* - currentInputKeys: keys referenced directly by the user's current input (array parts with pageKey)
|
|
22
|
+
* - historyKeys: keys from all previous messages' content parts
|
|
23
|
+
*/
|
|
24
|
+
export const getFullChatContextKeys = async (
|
|
25
|
+
state: RootState,
|
|
26
|
+
dispatch: any,
|
|
27
|
+
agentConfig: any,
|
|
28
|
+
userInput: string | any[],
|
|
29
|
+
dialogConfig?: DialogConfig
|
|
30
|
+
): Promise<Record<string, Set<string>>> => {
|
|
31
|
+
const msgs = selectAllMsgs(
|
|
32
|
+
state,
|
|
33
|
+
dialogConfig?.dbKey
|
|
34
|
+
? extractCustomId(dialogConfig.dbKey)
|
|
35
|
+
: dialogConfig?.id
|
|
36
|
+
);
|
|
37
|
+
|
|
38
|
+
const botInstructionKeys = new Set<string>();
|
|
39
|
+
const botKnowledgeKeys = new Set<string>();
|
|
40
|
+
|
|
41
|
+
if (Array.isArray(agentConfig.references)) {
|
|
42
|
+
for (const ref of agentConfig.references as Array<{
|
|
43
|
+
dbKey: string;
|
|
44
|
+
type: string;
|
|
45
|
+
}>) {
|
|
46
|
+
if (!ref?.dbKey) continue;
|
|
47
|
+
if (ref.type === "instruction") {
|
|
48
|
+
botInstructionKeys.add(ref.dbKey);
|
|
49
|
+
} else {
|
|
50
|
+
botKnowledgeKeys.add(ref.dbKey);
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
const currentInputKeys = new Set<string>();
|
|
56
|
+
if (Array.isArray(userInput)) {
|
|
57
|
+
for (const part of userInput) {
|
|
58
|
+
if (part?.pageKey) currentInputKeys.add(part.pageKey);
|
|
59
|
+
if (part?.dialogKey) currentInputKeys.add(part.dialogKey);
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
const historyKeys = new Set<string>();
|
|
64
|
+
|
|
65
|
+
// 1. 从 DialogConfig.referenceKeys 读取(这是主要的、持久化的引用来源)
|
|
66
|
+
// 即使消息被压缩,这里的 keys 也会保留
|
|
67
|
+
const savedKeys = dialogConfig?.referenceKeys;
|
|
68
|
+
if (Array.isArray(savedKeys)) {
|
|
69
|
+
savedKeys.forEach((k: string) => historyKeys.add(k));
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
// 2. 仅扫描尚未被压缩的近期消息
|
|
73
|
+
// 已压缩的消息(summarizedBeforeId 之前的部分,包含该条本身)的 keys
|
|
74
|
+
// 已在压缩时存入 dialogConfig.referenceKeys,步骤 1 已覆盖,无需重复扫描。
|
|
75
|
+
const scanContentParts = (msg: any) => {
|
|
76
|
+
if (!msg.content) return;
|
|
77
|
+
const contentParts = Array.isArray(msg.content) ? msg.content : [msg.content];
|
|
78
|
+
for (const part of contentParts) {
|
|
79
|
+
if (part && typeof part === 'object') {
|
|
80
|
+
if (part?.pageKey) historyKeys.add(part.pageKey);
|
|
81
|
+
if (part?.dialogKey) historyKeys.add(part.dialogKey);
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
};
|
|
85
|
+
|
|
86
|
+
if (msgs && msgs.length > 0) {
|
|
87
|
+
const summarizedBeforeId = dialogConfig?.summarizedBeforeId;
|
|
88
|
+
|
|
89
|
+
if (!summarizedBeforeId) {
|
|
90
|
+
// 无压缩记录,扫描全部消息
|
|
91
|
+
for (const msg of (msgs as any[])) scanContentParts(msg);
|
|
92
|
+
} else {
|
|
93
|
+
let foundMarker = false;
|
|
94
|
+
let startScan = false;
|
|
95
|
+
|
|
96
|
+
for (const msg of (msgs as any[])) {
|
|
97
|
+
if (!startScan) {
|
|
98
|
+
if (msg.id === summarizedBeforeId) {
|
|
99
|
+
foundMarker = true;
|
|
100
|
+
startScan = true;
|
|
101
|
+
// summarizedBeforeId 那条消息本身已被压缩,keys 在 referenceKeys 里,跳过
|
|
102
|
+
}
|
|
103
|
+
continue;
|
|
104
|
+
}
|
|
105
|
+
scanContentParts(msg);
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
// marker 找不到说明 Redux 中的消息都是新的,应该全扫
|
|
109
|
+
if (!foundMarker) {
|
|
110
|
+
console.warn(`[getFullChatContextKeys] marker ${summarizedBeforeId} not found, scanning all`);
|
|
111
|
+
for (const msg of (msgs as any[])) scanContentParts(msg);
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
return {
|
|
117
|
+
botInstructionKeys,
|
|
118
|
+
currentInputKeys,
|
|
119
|
+
historyKeys,
|
|
120
|
+
botKnowledgeKeys,
|
|
121
|
+
};
|
|
122
|
+
};
|
|
123
|
+
|
|
124
|
+
/**
|
|
125
|
+
* Deduplicate keys across priority levels.
|
|
126
|
+
* Priority order (high -> low):
|
|
127
|
+
* 1) botInstructionKeys
|
|
128
|
+
* 2) currentInputKeys
|
|
129
|
+
* 3) historyKeys
|
|
130
|
+
* 4) botKnowledgeKeys
|
|
131
|
+
*
|
|
132
|
+
* Return field names match context block identifiers expected downstream.
|
|
133
|
+
*/
|
|
134
|
+
export const deduplicateContextKeys = (
|
|
135
|
+
keys: Record<string, Set<string>>
|
|
136
|
+
): Record<string, string[]> => {
|
|
137
|
+
const {
|
|
138
|
+
botInstructionKeys,
|
|
139
|
+
currentInputKeys,
|
|
140
|
+
historyKeys,
|
|
141
|
+
botKnowledgeKeys,
|
|
142
|
+
} = keys;
|
|
143
|
+
|
|
144
|
+
const finalBotInstructionKeys = Array.from(botInstructionKeys);
|
|
145
|
+
|
|
146
|
+
const finalCurrentInputKeys = difference(
|
|
147
|
+
Array.from(currentInputKeys),
|
|
148
|
+
finalBotInstructionKeys
|
|
149
|
+
);
|
|
150
|
+
|
|
151
|
+
const finalHistoryKeys = difference(Array.from(historyKeys), [
|
|
152
|
+
...finalBotInstructionKeys,
|
|
153
|
+
...finalCurrentInputKeys,
|
|
154
|
+
]);
|
|
155
|
+
|
|
156
|
+
const finalBotKnowledgeKeys = difference(Array.from(botKnowledgeKeys), [
|
|
157
|
+
...finalBotInstructionKeys,
|
|
158
|
+
...finalCurrentInputKeys,
|
|
159
|
+
...finalHistoryKeys,
|
|
160
|
+
]);
|
|
161
|
+
|
|
162
|
+
return {
|
|
163
|
+
botInstructionsContext: finalBotInstructionKeys,
|
|
164
|
+
currentInputContext: finalCurrentInputKeys,
|
|
165
|
+
historyContext: finalHistoryKeys,
|
|
166
|
+
botKnowledgeContext: finalBotKnowledgeKeys,
|
|
167
|
+
};
|
|
168
|
+
};
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
import type { GuidedAgentCapabilityId } from "./types";
|
|
2
|
+
|
|
3
|
+
type CapabilityDefinition = {
|
|
4
|
+
id: GuidedAgentCapabilityId;
|
|
5
|
+
label: {
|
|
6
|
+
zhCN: string;
|
|
7
|
+
en: string;
|
|
8
|
+
};
|
|
9
|
+
description: {
|
|
10
|
+
zhCN: string;
|
|
11
|
+
en: string;
|
|
12
|
+
};
|
|
13
|
+
toolIds: string[];
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export const GUIDED_AGENT_CAPABILITIES: Record<
|
|
17
|
+
GuidedAgentCapabilityId,
|
|
18
|
+
CapabilityDefinition
|
|
19
|
+
> = {
|
|
20
|
+
webSearch: {
|
|
21
|
+
id: "webSearch",
|
|
22
|
+
label: { zhCN: "联网搜索", en: "Search the web" },
|
|
23
|
+
description: {
|
|
24
|
+
zhCN: "需要获取外部网页、资料或最新信息时使用。",
|
|
25
|
+
en: "Use when the agent needs external webpages, research, or current information.",
|
|
26
|
+
},
|
|
27
|
+
toolIds: ["exa_search", "fetchWebpage"],
|
|
28
|
+
},
|
|
29
|
+
docs: {
|
|
30
|
+
id: "docs",
|
|
31
|
+
label: { zhCN: "读写文档", en: "Read and write docs" },
|
|
32
|
+
description: {
|
|
33
|
+
zhCN: "需要读取、创建或更新知识页和文档时使用。",
|
|
34
|
+
en: "Use when the agent should read, create, or update docs.",
|
|
35
|
+
},
|
|
36
|
+
toolIds: ["createDoc", "updateDoc", "read"],
|
|
37
|
+
},
|
|
38
|
+
tables: {
|
|
39
|
+
id: "tables",
|
|
40
|
+
label: { zhCN: "处理表格", en: "Work with tables" },
|
|
41
|
+
description: {
|
|
42
|
+
zhCN: "需要创建表、追加记录或整理结构化数据时使用。",
|
|
43
|
+
en: "Use when the agent should create tables or manage structured rows.",
|
|
44
|
+
},
|
|
45
|
+
toolIds: ["createTable", "addTableRow", "addTableRows", "read"],
|
|
46
|
+
},
|
|
47
|
+
agents: {
|
|
48
|
+
id: "agents",
|
|
49
|
+
label: { zhCN: "调用其他 AI", en: "Call other AI agents" },
|
|
50
|
+
description: {
|
|
51
|
+
zhCN: "需要多 Agent 协作、评审或分工时使用。",
|
|
52
|
+
en: "Use when the agent should collaborate with other agents.",
|
|
53
|
+
},
|
|
54
|
+
toolIds: ["callAgent", "startAgentDialog"],
|
|
55
|
+
},
|
|
56
|
+
apps: {
|
|
57
|
+
id: "apps",
|
|
58
|
+
label: { zhCN: "创建应用或代码", en: "Create apps or code" },
|
|
59
|
+
description: {
|
|
60
|
+
zhCN: "需要生成应用、代码或使用 App Builder 能力时使用。",
|
|
61
|
+
en: "Use when the agent should build apps, code, or App Builder outputs.",
|
|
62
|
+
},
|
|
63
|
+
toolIds: ["appDeploy", "appList", "appRead"],
|
|
64
|
+
},
|
|
65
|
+
};
|
|
66
|
+
|
|
67
|
+
export const mapCapabilityIdsToToolIds = (
|
|
68
|
+
capabilityIds: GuidedAgentCapabilityId[]
|
|
69
|
+
): string[] => {
|
|
70
|
+
const seen = new Set<string>();
|
|
71
|
+
const result: string[] = [];
|
|
72
|
+
|
|
73
|
+
for (const id of capabilityIds) {
|
|
74
|
+
const definition = GUIDED_AGENT_CAPABILITIES[id];
|
|
75
|
+
if (!definition) continue;
|
|
76
|
+
for (const toolId of definition.toolIds) {
|
|
77
|
+
if (seen.has(toolId)) continue;
|
|
78
|
+
seen.add(toolId);
|
|
79
|
+
result.push(toolId);
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
return result;
|
|
84
|
+
};
|