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,146 @@
|
|
|
1
|
+
import { RootState } from "../../app/store";
|
|
2
|
+
import { Agent, Message } from "../../app/types";
|
|
3
|
+
import { selectCurrentDialogConfig } from "../../chat/dialog/dialogSlice";
|
|
4
|
+
import { read } from "../../database/dbSlice";
|
|
5
|
+
import { fetchAgentContexts } from "../agent/fetchAgentContexts";
|
|
6
|
+
import { filterAndCleanMessages } from "../../integrations/openai/filterAndCleanMessages";
|
|
7
|
+
import { selectAllMsgs } from "../../chat/messages/messageSlice";
|
|
8
|
+
import { generateRequestBody } from "../llm/generateRequestBody";
|
|
9
|
+
import { getApiEndpoint } from "../llm/providers";
|
|
10
|
+
import { selectCurrentServer } from "../../app/settings/settingSlice";
|
|
11
|
+
import { selectCurrentToken } from "../../auth/authSlice";
|
|
12
|
+
import { applyChatCompletionsStreamMode } from "../../integrations/openai/chatCompletionStreamMode";
|
|
13
|
+
|
|
14
|
+
import { sendOpenAICompletionsRequest } from "../chat/sendOpenAICompletionsRequest";
|
|
15
|
+
import { performFetchRequest } from "../chat/fetchUtils";
|
|
16
|
+
import { updateTokensAction } from "../../chat/dialog/actions/updateTokensAction";
|
|
17
|
+
import { extractCustomId } from "../../core/prefix";
|
|
18
|
+
|
|
19
|
+
export const _executeModel = async (
|
|
20
|
+
options: {
|
|
21
|
+
isStreaming: boolean;
|
|
22
|
+
withAgentContext: boolean;
|
|
23
|
+
withChatHistory: boolean;
|
|
24
|
+
agentConfigOverrides?: Record<string, any>;
|
|
25
|
+
},
|
|
26
|
+
args: {
|
|
27
|
+
llmConfig?: Partial<Agent> & Pick<Agent, "provider" | "model">;
|
|
28
|
+
agentKey?: string;
|
|
29
|
+
agentConfig?: Partial<Agent> & Pick<Agent, "provider" | "model">;
|
|
30
|
+
content: any;
|
|
31
|
+
parentMessageId?: string;
|
|
32
|
+
billingDialogKey?: string;
|
|
33
|
+
},
|
|
34
|
+
thunkApi: any
|
|
35
|
+
) => {
|
|
36
|
+
const { isStreaming, withAgentContext, withChatHistory, agentConfigOverrides } = options;
|
|
37
|
+
const { getState, dispatch, rejectWithValue } = thunkApi;
|
|
38
|
+
const { content } = args;
|
|
39
|
+
const state = getState() as RootState;
|
|
40
|
+
|
|
41
|
+
let agentConfig: Partial<Agent> & Pick<Agent, "provider" | "model">;
|
|
42
|
+
if (args.llmConfig) {
|
|
43
|
+
agentConfig = args.llmConfig;
|
|
44
|
+
} else if (args.agentConfig) {
|
|
45
|
+
agentConfig = args.agentConfig;
|
|
46
|
+
} else {
|
|
47
|
+
const agentKey = args.agentKey || selectCurrentDialogConfig(state)?.cybots?.[0];
|
|
48
|
+
if (!agentKey) {
|
|
49
|
+
const msg = "Model execution failed: No llmConfig, agentConfig, or agentKey provided.";
|
|
50
|
+
console.error(msg);
|
|
51
|
+
return rejectWithValue(msg);
|
|
52
|
+
}
|
|
53
|
+
try {
|
|
54
|
+
agentConfig = await dispatch(read({ dbKey: agentKey })).unwrap();
|
|
55
|
+
} catch (error: any) {
|
|
56
|
+
console.error(`_executeModel failed to load agent [${agentKey}]`, error);
|
|
57
|
+
return rejectWithValue(error.message);
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
try {
|
|
62
|
+
const resolvedConfig = agentConfigOverrides
|
|
63
|
+
? { ...agentConfig, ...agentConfigOverrides }
|
|
64
|
+
: agentConfig;
|
|
65
|
+
const resolvedAgentConfig = resolvedConfig as Agent;
|
|
66
|
+
const agentContexts = withAgentContext
|
|
67
|
+
? await fetchAgentContexts(resolvedAgentConfig.references, dispatch)
|
|
68
|
+
: {};
|
|
69
|
+
|
|
70
|
+
let messages: Message[];
|
|
71
|
+
if (withChatHistory) {
|
|
72
|
+
messages = filterAndCleanMessages(selectAllMsgs(state)) as unknown as Message[];
|
|
73
|
+
messages.push({ role: "user", content: args.content });
|
|
74
|
+
} else {
|
|
75
|
+
messages = [{ role: "user", content: args.content }];
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
const requestBody = generateRequestBody({
|
|
79
|
+
agentConfig: resolvedAgentConfig,
|
|
80
|
+
messages,
|
|
81
|
+
userInput: content,
|
|
82
|
+
contexts: agentContexts,
|
|
83
|
+
});
|
|
84
|
+
const bodyData = applyChatCompletionsStreamMode(requestBody, isStreaming) as any;
|
|
85
|
+
const currentDialogKey = selectCurrentDialogConfig(state)?.dbKey ?? "";
|
|
86
|
+
|
|
87
|
+
if (isStreaming) {
|
|
88
|
+
await sendOpenAICompletionsRequest({
|
|
89
|
+
bodyData,
|
|
90
|
+
agentConfig: resolvedAgentConfig,
|
|
91
|
+
thunkApi,
|
|
92
|
+
dialogKey: currentDialogKey,
|
|
93
|
+
parentMessageId: args.parentMessageId,
|
|
94
|
+
});
|
|
95
|
+
} else {
|
|
96
|
+
const response = await performFetchRequest({
|
|
97
|
+
agentConfig: resolvedAgentConfig,
|
|
98
|
+
api: getApiEndpoint(resolvedAgentConfig),
|
|
99
|
+
bodyData,
|
|
100
|
+
currentServer: selectCurrentServer(state),
|
|
101
|
+
token: selectCurrentToken(state),
|
|
102
|
+
});
|
|
103
|
+
if (!response.ok) {
|
|
104
|
+
let message = `Model request failed with HTTP ${response.status}`;
|
|
105
|
+
try {
|
|
106
|
+
const errorBody = await response.json();
|
|
107
|
+
const upstreamMessage =
|
|
108
|
+
typeof errorBody?.error?.message === "string"
|
|
109
|
+
? errorBody.error.message
|
|
110
|
+
: typeof errorBody?.message === "string"
|
|
111
|
+
? errorBody.message
|
|
112
|
+
: "";
|
|
113
|
+
if (upstreamMessage.trim()) message = upstreamMessage.trim();
|
|
114
|
+
} catch {
|
|
115
|
+
// Keep the status-based message when the response body is not JSON.
|
|
116
|
+
}
|
|
117
|
+
throw new Error(message);
|
|
118
|
+
}
|
|
119
|
+
const result = await response.json();
|
|
120
|
+
const content = result?.choices?.[0]?.message?.content;
|
|
121
|
+
if (typeof content !== "string") {
|
|
122
|
+
const upstreamMessage =
|
|
123
|
+
typeof result?.error?.message === "string" ? result.error.message : "";
|
|
124
|
+
throw new Error(
|
|
125
|
+
upstreamMessage.trim() ||
|
|
126
|
+
"Model response missing choices[0].message.content"
|
|
127
|
+
);
|
|
128
|
+
}
|
|
129
|
+
if (args.billingDialogKey && result?.usage) {
|
|
130
|
+
await updateTokensAction(
|
|
131
|
+
{
|
|
132
|
+
dialogId: extractCustomId(args.billingDialogKey),
|
|
133
|
+
dialogKey: args.billingDialogKey,
|
|
134
|
+
usage: result.usage,
|
|
135
|
+
agentConfig: resolvedAgentConfig,
|
|
136
|
+
},
|
|
137
|
+
thunkApi
|
|
138
|
+
);
|
|
139
|
+
}
|
|
140
|
+
return content;
|
|
141
|
+
}
|
|
142
|
+
} catch (error: any) {
|
|
143
|
+
console.error(`_executeModel failed`, error);
|
|
144
|
+
return rejectWithValue(error.message);
|
|
145
|
+
}
|
|
146
|
+
};
|
package/ai/agent/agentSlice.ts
CHANGED
|
@@ -1,2 +1,557 @@
|
|
|
1
|
+
// 路径: ai/agent/agentSlice.ts
|
|
2
|
+
|
|
3
|
+
import { asyncThunkCreator, buildCreateSlice, type PayloadAction } from "@reduxjs/toolkit";
|
|
4
|
+
import type { Agent, AgentRuntimeBinding, ReferenceItem } from "../../app/types";
|
|
5
|
+
|
|
6
|
+
import { write, patch, remove } from "../../database/dbSlice";
|
|
7
|
+
import { createCybotKey, createAgentKey } from "../../database/keys";
|
|
8
|
+
import { DataType } from "../../create/types";
|
|
1
9
|
import { ulid } from "ulid";
|
|
2
|
-
|
|
10
|
+
import type { FormData as AgentFormData } from "../agent/createAgentSchema";
|
|
11
|
+
|
|
12
|
+
const createSliceWithThunks = buildCreateSlice({
|
|
13
|
+
creators: { asyncThunk: asyncThunkCreator },
|
|
14
|
+
});
|
|
15
|
+
|
|
16
|
+
/** Slice State 定义 */
|
|
17
|
+
interface AgentState {
|
|
18
|
+
pubCybots: {
|
|
19
|
+
loading: boolean;
|
|
20
|
+
error: string | null;
|
|
21
|
+
data: Agent[];
|
|
22
|
+
};
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
/** runLlm 参数(通用 LLM 调用) */
|
|
26
|
+
interface RunLlmArgs {
|
|
27
|
+
/** 直接传入内置 llmConfig,完全不依赖 Agent 数据 */
|
|
28
|
+
llmConfig?: Partial<Agent> & Pick<Agent, "provider" | "model">;
|
|
29
|
+
agentKey?: string;
|
|
30
|
+
/** 兼容旧调用:直接传入 agentConfig,跳过 DB 读取 */
|
|
31
|
+
agentConfig?: Partial<Agent> & Pick<Agent, "provider" | "model">;
|
|
32
|
+
content: unknown;
|
|
33
|
+
isStreaming?: boolean;
|
|
34
|
+
parentMessageId?: string;
|
|
35
|
+
/** 覆盖 Agent 配置中的 system prompt */
|
|
36
|
+
systemPromptOverride?: string;
|
|
37
|
+
/** 覆盖 Agent 配置中的工具列表(tool id 数组) */
|
|
38
|
+
toolsOverride?: string[];
|
|
39
|
+
billingDialogKey?: string;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
/** runAgent 参数(通用 Agent 调用,多轮工具循环) */
|
|
43
|
+
interface RunAgentArgs {
|
|
44
|
+
agentKey: string;
|
|
45
|
+
content: unknown;
|
|
46
|
+
parentMessageId?: string;
|
|
47
|
+
billingDialogKey?: string;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
/** createAgent 参数(新建 Agent) */
|
|
51
|
+
interface CreateAgentArgs {
|
|
52
|
+
userId: string;
|
|
53
|
+
formData: AgentFormData; // 已通过表单或 Tool 构造的完整数据
|
|
54
|
+
spaceId?: string; // 可选的空间 ID,如果提供,则将 Agent 添加到该空间
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
/** updateAgent 参数(更新 Agent,支持部分字段 patch) */
|
|
58
|
+
interface UpdateAgentArgs {
|
|
59
|
+
userId: string;
|
|
60
|
+
agentId: string; // 纯 id(不带 db path 前缀)
|
|
61
|
+
formData: Partial<AgentFormData>; // 允许只传需要修改的字段
|
|
62
|
+
previousAgent?: Partial<Agent>; // UI 编辑时可以传,用来保持公共副本同步
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
const initialState: AgentState = {
|
|
66
|
+
pubCybots: {
|
|
67
|
+
loading: false,
|
|
68
|
+
error: null,
|
|
69
|
+
data: [],
|
|
70
|
+
},
|
|
71
|
+
};
|
|
72
|
+
|
|
73
|
+
const normalizeAgentReferences = (references: any[]): ReferenceItem[] => {
|
|
74
|
+
if (!Array.isArray(references)) return [];
|
|
75
|
+
return references.map((ref) => ({
|
|
76
|
+
dbKey: ref.dbKey || "",
|
|
77
|
+
title: ref.title || "",
|
|
78
|
+
type: ref.type === "page" ? "knowledge" : ref.type || "knowledge",
|
|
79
|
+
}));
|
|
80
|
+
};
|
|
81
|
+
|
|
82
|
+
/**
|
|
83
|
+
* 创建场景:表单数据 -> 持久化数据(全量)
|
|
84
|
+
*/
|
|
85
|
+
const processAgentCreateForm = (formData: AgentFormData, userId: string) => {
|
|
86
|
+
const isPublic = !!formData.isPublic;
|
|
87
|
+
const machineId = typeof (formData as any).machineId === "string"
|
|
88
|
+
? (formData as any).machineId.trim()
|
|
89
|
+
: "";
|
|
90
|
+
|
|
91
|
+
const result: any = {
|
|
92
|
+
...formData,
|
|
93
|
+
// tags: "a, b" -> ["a", "b"]
|
|
94
|
+
tags: formData.tags
|
|
95
|
+
? formData.tags
|
|
96
|
+
.split(",")
|
|
97
|
+
.map((s) => s.trim())
|
|
98
|
+
.filter(Boolean)
|
|
99
|
+
: [],
|
|
100
|
+
// 归一化 references
|
|
101
|
+
references: normalizeAgentReferences(formData.references || []),
|
|
102
|
+
// 非公开时,强制清空白名单,避免脏数据
|
|
103
|
+
whitelist: isPublic ? formData.whitelist || [] : [],
|
|
104
|
+
};
|
|
105
|
+
|
|
106
|
+
delete result.machineId;
|
|
107
|
+
if (formData.apiSource === "cli" && machineId) {
|
|
108
|
+
const binding: AgentRuntimeBinding = {
|
|
109
|
+
...(result.runtimeBinding && typeof result.runtimeBinding === "object"
|
|
110
|
+
? result.runtimeBinding
|
|
111
|
+
: {}),
|
|
112
|
+
machineId,
|
|
113
|
+
ownerUserId: userId,
|
|
114
|
+
};
|
|
115
|
+
result.runtimeBinding = binding;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
return result;
|
|
119
|
+
};
|
|
120
|
+
|
|
121
|
+
/**
|
|
122
|
+
* 更新场景:部分表单字段 -> patch changes
|
|
123
|
+
* - 只对传进来的字段做转换 / 归一化
|
|
124
|
+
* - 未出现在 formData 里的字段一律不修改
|
|
125
|
+
*/
|
|
126
|
+
const processAgentUpdateChanges = (
|
|
127
|
+
data: Partial<AgentFormData>,
|
|
128
|
+
userId: string,
|
|
129
|
+
previousAgent?: Partial<Agent>
|
|
130
|
+
) => {
|
|
131
|
+
const changes: any = {};
|
|
132
|
+
|
|
133
|
+
// 基本字符串字段
|
|
134
|
+
if ("name" in data) {
|
|
135
|
+
changes.name = String(data.name ?? "").trim();
|
|
136
|
+
}
|
|
137
|
+
if ("model" in data) {
|
|
138
|
+
changes.model = (data.model ?? "").trim();
|
|
139
|
+
}
|
|
140
|
+
if ("provider" in data) {
|
|
141
|
+
changes.provider = (data.provider ?? "").trim();
|
|
142
|
+
}
|
|
143
|
+
if ("prompt" in data) {
|
|
144
|
+
changes.prompt = (data.prompt ?? "").trim();
|
|
145
|
+
}
|
|
146
|
+
if ("introduction" in data) {
|
|
147
|
+
changes.introduction = (data.introduction ?? "").trim();
|
|
148
|
+
}
|
|
149
|
+
if ("customProviderUrl" in data) {
|
|
150
|
+
changes.customProviderUrl = (data.customProviderUrl ?? "").trim();
|
|
151
|
+
}
|
|
152
|
+
if ("apiKey" in data) {
|
|
153
|
+
changes.apiKey = (data.apiKey ?? "").trim();
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
// 简单标志位
|
|
157
|
+
if ("hasVision" in data && data.hasVision !== undefined) {
|
|
158
|
+
changes.hasVision = !!data.hasVision;
|
|
159
|
+
}
|
|
160
|
+
if ("apiSource" in data && data.apiSource) {
|
|
161
|
+
changes.apiSource = data.apiSource;
|
|
162
|
+
}
|
|
163
|
+
if ("cliProvider" in data) {
|
|
164
|
+
changes.cliProvider = (data as any).cliProvider || "";
|
|
165
|
+
}
|
|
166
|
+
if ("machineId" in data) {
|
|
167
|
+
const machineId = String((data as any).machineId ?? "").trim();
|
|
168
|
+
|
|
169
|
+
// Determine effective apiSource: prefer data.apiSource, fall back to previousAgent.apiSource
|
|
170
|
+
const effectiveApiSource = data.apiSource ?? previousAgent?.apiSource;
|
|
171
|
+
|
|
172
|
+
if (machineId) {
|
|
173
|
+
// Persist runtimeBinding when effective apiSource is 'cli' or undefined
|
|
174
|
+
// undefined = tool/legacy partial update without apiSource context → preserve backward compatibility
|
|
175
|
+
if (effectiveApiSource === "cli" || effectiveApiSource === undefined) {
|
|
176
|
+
const binding: AgentRuntimeBinding = {
|
|
177
|
+
...((changes.runtimeBinding && typeof changes.runtimeBinding === "object")
|
|
178
|
+
? changes.runtimeBinding
|
|
179
|
+
: {}),
|
|
180
|
+
machineId,
|
|
181
|
+
ownerUserId: userId,
|
|
182
|
+
};
|
|
183
|
+
changes.runtimeBinding = binding;
|
|
184
|
+
}
|
|
185
|
+
// If apiSource is explicitly non-cli and machineId is supplied, do not create binding
|
|
186
|
+
} else {
|
|
187
|
+
// CLEAR branch: clear runtimeBinding when effectiveApiSource is 'cli' or undefined (backward-compatible)
|
|
188
|
+
if (effectiveApiSource === "cli" || effectiveApiSource === undefined) {
|
|
189
|
+
changes.runtimeBinding = null;
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
if ("useServerProxy" in data && data.useServerProxy !== undefined) {
|
|
194
|
+
changes.useServerProxy = !!data.useServerProxy;
|
|
195
|
+
}
|
|
196
|
+
if ("sharingLevel" in data) {
|
|
197
|
+
const sharingLevel = (data as any).sharingLevel;
|
|
198
|
+
if (
|
|
199
|
+
sharingLevel === "default" ||
|
|
200
|
+
sharingLevel === "split" ||
|
|
201
|
+
sharingLevel === "full"
|
|
202
|
+
) {
|
|
203
|
+
changes.sharingLevel = sharingLevel;
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
// greeting / tools 直接透传
|
|
208
|
+
if ("greeting" in data) {
|
|
209
|
+
changes.greeting = data.greeting as any;
|
|
210
|
+
}
|
|
211
|
+
if ("tools" in data) {
|
|
212
|
+
changes.tools = Array.isArray(data.tools) ? data.tools.slice() : [];
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
// 数值字段
|
|
216
|
+
const numericKeys: (keyof AgentFormData)[] = [
|
|
217
|
+
"inputPrice",
|
|
218
|
+
"outputPrice",
|
|
219
|
+
"temperature",
|
|
220
|
+
"top_p",
|
|
221
|
+
"frequency_penalty",
|
|
222
|
+
"presence_penalty",
|
|
223
|
+
"max_tokens",
|
|
224
|
+
];
|
|
225
|
+
numericKeys.forEach((key) => {
|
|
226
|
+
if (key in data) {
|
|
227
|
+
const raw = data[key];
|
|
228
|
+
if (raw === undefined || raw === null) {
|
|
229
|
+
changes[key] = raw as any;
|
|
230
|
+
} else {
|
|
231
|
+
const num = Number(raw as any);
|
|
232
|
+
changes[key] = Number.isNaN(num) ? raw : num;
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
});
|
|
236
|
+
|
|
237
|
+
// ⚠ 唯一实质改动:reasoning_effort 允许传 null,用于“清空该字段”
|
|
238
|
+
// 原来是:if ("reasoning_effort" in data && data.reasoning_effort) { ... }
|
|
239
|
+
// 这样会把 null 吞掉,无法让后端 patch + deepMerge 删除字段。
|
|
240
|
+
if ("reasoning_effort" in data) {
|
|
241
|
+
changes.reasoning_effort = (data as any).reasoning_effort;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
// tags: string 或 string[]
|
|
245
|
+
if ("tags" in data) {
|
|
246
|
+
const raw = (data as any).tags;
|
|
247
|
+
let arr: string[] = [];
|
|
248
|
+
if (Array.isArray(raw)) {
|
|
249
|
+
arr = raw.map((s) => String(s || "").trim()).filter(Boolean);
|
|
250
|
+
} else if (typeof raw === "string") {
|
|
251
|
+
arr = raw
|
|
252
|
+
.split(",")
|
|
253
|
+
.map((s) => s.trim())
|
|
254
|
+
.filter(Boolean);
|
|
255
|
+
}
|
|
256
|
+
changes.tags = arr;
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
// references
|
|
260
|
+
if ("references" in data) {
|
|
261
|
+
changes.references = normalizeAgentReferences(
|
|
262
|
+
((data.references as any) || []) as any[]
|
|
263
|
+
);
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
// whitelist + isPublic
|
|
267
|
+
if ("whitelist" in data) {
|
|
268
|
+
changes.whitelist = (data.whitelist as string[]) || [];
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
if ("isPublic" in data) {
|
|
272
|
+
changes.isPublic = !!data.isPublic;
|
|
273
|
+
if (!changes.isPublic) {
|
|
274
|
+
// 一旦改为私有,强制清空白名单
|
|
275
|
+
changes.whitelist = [];
|
|
276
|
+
}
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
return changes;
|
|
280
|
+
};
|
|
281
|
+
|
|
282
|
+
export const slice = createSliceWithThunks({
|
|
283
|
+
// 注意:保持 name = "cybot",以兼容原有 Redux state 结构
|
|
284
|
+
name: "cybot",
|
|
285
|
+
initialState,
|
|
286
|
+
reducers: (create) => ({
|
|
287
|
+
/**
|
|
288
|
+
* SSR 首屏:服务端预取公开 Agent 列表后注入,走 __PRELOADED_STATE__ 链路
|
|
289
|
+
*/
|
|
290
|
+
setSSRPublicAgents: create.reducer(
|
|
291
|
+
(state, action: PayloadAction<Agent[]>) => {
|
|
292
|
+
state.pubCybots.data = Array.isArray(action.payload) ? action.payload : [];
|
|
293
|
+
state.pubCybots.loading = false;
|
|
294
|
+
state.pubCybots.error = null;
|
|
295
|
+
}
|
|
296
|
+
),
|
|
297
|
+
|
|
298
|
+
/**
|
|
299
|
+
* 通用 LLM 调用(不带 Agent 上下文 / 历史)
|
|
300
|
+
*/
|
|
301
|
+
runLlm: create.asyncThunk(async (args: RunLlmArgs, thunkApi) => {
|
|
302
|
+
const overrides: Record<string, any> = {};
|
|
303
|
+
if (args.systemPromptOverride !== undefined) overrides.prompt = args.systemPromptOverride;
|
|
304
|
+
if (args.toolsOverride !== undefined) overrides.tools = args.toolsOverride;
|
|
305
|
+
const { _executeModel } = await import("../agent/_executeModel");
|
|
306
|
+
return _executeModel(
|
|
307
|
+
{
|
|
308
|
+
isStreaming: args.isStreaming ?? false,
|
|
309
|
+
withAgentContext: false,
|
|
310
|
+
withChatHistory: false,
|
|
311
|
+
agentConfigOverrides: Object.keys(overrides).length ? overrides : undefined,
|
|
312
|
+
},
|
|
313
|
+
args,
|
|
314
|
+
thunkApi
|
|
315
|
+
);
|
|
316
|
+
}),
|
|
317
|
+
|
|
318
|
+
/**
|
|
319
|
+
* 通用 Agent 调用(带 Agent 上下文,多轮工具循环)
|
|
320
|
+
*
|
|
321
|
+
* 使用客户端 runAgentClientLoop:
|
|
322
|
+
* - 每轮调用 LLM(非流式)
|
|
323
|
+
* - 遇到 tool_calls 时通过 findToolExecutor 本地执行工具
|
|
324
|
+
* - 循环直到无工具调用或触发其他运行时停止条件
|
|
325
|
+
*/
|
|
326
|
+
runAgent: create.asyncThunk(async (args: RunAgentArgs, thunkApi) => {
|
|
327
|
+
const { runAgentClientLoop } = await import("../agent/runAgentClientLoop");
|
|
328
|
+
const { content: loopContent, toolCallCount } = await runAgentClientLoop(
|
|
329
|
+
{
|
|
330
|
+
agentKey: args.agentKey,
|
|
331
|
+
content: args.content,
|
|
332
|
+
parentMessageId: args.parentMessageId,
|
|
333
|
+
billingDialogKey: args.billingDialogKey,
|
|
334
|
+
},
|
|
335
|
+
thunkApi
|
|
336
|
+
);
|
|
337
|
+
return loopContent;
|
|
338
|
+
}),
|
|
339
|
+
|
|
340
|
+
/**
|
|
341
|
+
* 聊天轮次流式 Agent 调用
|
|
342
|
+
*/
|
|
343
|
+
streamAgentChatTurn: create.asyncThunk(async (args: any, thunkApi) => {
|
|
344
|
+
const { streamAgentChatTurnHandler } = await import("../agent/streamAgentChatTurn");
|
|
345
|
+
return streamAgentChatTurnHandler(args, thunkApi);
|
|
346
|
+
}),
|
|
347
|
+
|
|
348
|
+
/**
|
|
349
|
+
* 创建 Agent:
|
|
350
|
+
* - 写入用户私有路径
|
|
351
|
+
* - 如 isPublic=true,则同时写入公共路径
|
|
352
|
+
* - 返回完整 Agent 对象(包含 id / meta 字段)
|
|
353
|
+
*/
|
|
354
|
+
createAgent: create.asyncThunk(
|
|
355
|
+
async ({ userId, formData, spaceId }: CreateAgentArgs, thunkApi) => {
|
|
356
|
+
const processed = processAgentCreateForm(formData, userId);
|
|
357
|
+
|
|
358
|
+
const now = Date.now();
|
|
359
|
+
const id = ulid();
|
|
360
|
+
|
|
361
|
+
const privateKey = createAgentKey.private(userId, id);
|
|
362
|
+
const publicKey = createAgentKey.public(id);
|
|
363
|
+
|
|
364
|
+
const agent: Agent = {
|
|
365
|
+
...(processed as any),
|
|
366
|
+
id,
|
|
367
|
+
type: DataType.AGENT,
|
|
368
|
+
userId,
|
|
369
|
+
createdAt: now,
|
|
370
|
+
updatedAt: now,
|
|
371
|
+
dialogCount: 0,
|
|
372
|
+
messageCount: 0,
|
|
373
|
+
tokenCount: 0,
|
|
374
|
+
spaceId: spaceId, // 记录 spaceId
|
|
375
|
+
};
|
|
376
|
+
|
|
377
|
+
// 写入私有副本
|
|
378
|
+
await thunkApi
|
|
379
|
+
.dispatch(
|
|
380
|
+
write({
|
|
381
|
+
data: agent,
|
|
382
|
+
customKey: privateKey,
|
|
383
|
+
})
|
|
384
|
+
)
|
|
385
|
+
.unwrap();
|
|
386
|
+
|
|
387
|
+
// 如需公开,再写入公共副本
|
|
388
|
+
if (agent.isPublic) {
|
|
389
|
+
await thunkApi
|
|
390
|
+
.dispatch(
|
|
391
|
+
write({
|
|
392
|
+
data: agent,
|
|
393
|
+
customKey: publicKey,
|
|
394
|
+
})
|
|
395
|
+
)
|
|
396
|
+
.unwrap();
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
return agent;
|
|
400
|
+
}
|
|
401
|
+
),
|
|
402
|
+
|
|
403
|
+
/**
|
|
404
|
+
* 更新 Agent(支持局部字段 patch):
|
|
405
|
+
* - patch 私有副本
|
|
406
|
+
* - 如提供 previousAgent,则同步更新 / 删除公共副本
|
|
407
|
+
*
|
|
408
|
+
* 注意:
|
|
409
|
+
* - Tool 场景下一般不提供 previousAgent,此时只保证私有副本被更新;
|
|
410
|
+
* 公共副本(应用市场)不做强一致保证。
|
|
411
|
+
*/
|
|
412
|
+
updateAgent: create.asyncThunk(
|
|
413
|
+
async (
|
|
414
|
+
{ userId, agentId, formData, previousAgent }: UpdateAgentArgs,
|
|
415
|
+
thunkApi
|
|
416
|
+
) => {
|
|
417
|
+
const normalizedAgentId = (() => {
|
|
418
|
+
const raw = agentId.trim();
|
|
419
|
+
if (raw.startsWith("agent-") || raw.startsWith("cybot-")) {
|
|
420
|
+
const parts = raw.split("-");
|
|
421
|
+
if (parts.length >= 3) return parts[parts.length - 1];
|
|
422
|
+
}
|
|
423
|
+
return raw;
|
|
424
|
+
})();
|
|
425
|
+
|
|
426
|
+
// 【兼容层】双前缀处理:
|
|
427
|
+
// 1. 如果 agentId 是以 cybot- 开头,或者 previousAgent.type 是 cybot,说明这是存量旧数据。
|
|
428
|
+
// 2. 存量数据必须使用 createCybotKey 才能正确定位到数据库中的位置。
|
|
429
|
+
// 3. 新数据则默认使用 createAgentKey (agent- 前缀)。
|
|
430
|
+
let privateKey = createAgentKey.private(userId, normalizedAgentId);
|
|
431
|
+
let publicKey = createAgentKey.public(normalizedAgentId);
|
|
432
|
+
|
|
433
|
+
if (agentId.startsWith("cybot-") || previousAgent?.type === "cybot") {
|
|
434
|
+
privateKey = createCybotKey.private(userId, normalizedAgentId);
|
|
435
|
+
publicKey = createCybotKey.public(normalizedAgentId);
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
const changes = processAgentUpdateChanges(formData || {}, userId, previousAgent);
|
|
439
|
+
|
|
440
|
+
// 1) 检查本地是否存在
|
|
441
|
+
let localExists = false;
|
|
442
|
+
try {
|
|
443
|
+
const { db } = thunkApi.extra as any;
|
|
444
|
+
const localData = await db.get(privateKey);
|
|
445
|
+
localExists = !!localData;
|
|
446
|
+
} catch (e) {
|
|
447
|
+
// ignore
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
if (localExists) {
|
|
451
|
+
// 有本地数据,直接 patch
|
|
452
|
+
await thunkApi
|
|
453
|
+
.dispatch(
|
|
454
|
+
patch({
|
|
455
|
+
dbKey: privateKey,
|
|
456
|
+
changes,
|
|
457
|
+
})
|
|
458
|
+
)
|
|
459
|
+
.unwrap();
|
|
460
|
+
} else if (previousAgent) {
|
|
461
|
+
// 无本地数据,但有 UI 传来的 previousAgent,用 write 回填
|
|
462
|
+
const merged = {
|
|
463
|
+
...previousAgent,
|
|
464
|
+
...changes,
|
|
465
|
+
id: normalizedAgentId,
|
|
466
|
+
type: previousAgent.type || DataType.AGENT,
|
|
467
|
+
userId,
|
|
468
|
+
};
|
|
469
|
+
await thunkApi
|
|
470
|
+
.dispatch(
|
|
471
|
+
write({
|
|
472
|
+
data: merged,
|
|
473
|
+
customKey: privateKey,
|
|
474
|
+
})
|
|
475
|
+
)
|
|
476
|
+
.unwrap();
|
|
477
|
+
} else {
|
|
478
|
+
// 既无本地也无 previousAgent,尝试标准 path (可能会失败 if remote also fails or path throws)
|
|
479
|
+
// 但既然到了 update,大概率之前 read 过。
|
|
480
|
+
// 兜底调用 patch,让 patch 内部去报错
|
|
481
|
+
await thunkApi
|
|
482
|
+
.dispatch(
|
|
483
|
+
patch({
|
|
484
|
+
dbKey: privateKey,
|
|
485
|
+
changes,
|
|
486
|
+
})
|
|
487
|
+
)
|
|
488
|
+
.unwrap();
|
|
489
|
+
}
|
|
490
|
+
|
|
491
|
+
// 2) 如提供 previousAgent,则尝试保持公共副本同步
|
|
492
|
+
if (previousAgent) {
|
|
493
|
+
const wasPublic = !!previousAgent.isPublic;
|
|
494
|
+
const hasIsPublicChange = Object.prototype.hasOwnProperty.call(
|
|
495
|
+
changes,
|
|
496
|
+
"isPublic"
|
|
497
|
+
);
|
|
498
|
+
const nowPublic = hasIsPublicChange
|
|
499
|
+
? !!(changes as any).isPublic
|
|
500
|
+
: wasPublic;
|
|
501
|
+
|
|
502
|
+
if (nowPublic) {
|
|
503
|
+
const mergedPublic: Agent = {
|
|
504
|
+
...(previousAgent as any),
|
|
505
|
+
...(changes as any),
|
|
506
|
+
id: normalizedAgentId,
|
|
507
|
+
type: previousAgent.type || DataType.AGENT,
|
|
508
|
+
userId,
|
|
509
|
+
};
|
|
510
|
+
|
|
511
|
+
await thunkApi
|
|
512
|
+
.dispatch(
|
|
513
|
+
write({
|
|
514
|
+
data: mergedPublic,
|
|
515
|
+
customKey: publicKey,
|
|
516
|
+
})
|
|
517
|
+
)
|
|
518
|
+
.unwrap();
|
|
519
|
+
} else if (wasPublic && !nowPublic) {
|
|
520
|
+
await thunkApi
|
|
521
|
+
.dispatch(remove(publicKey))
|
|
522
|
+
.unwrap();
|
|
523
|
+
}
|
|
524
|
+
}
|
|
525
|
+
|
|
526
|
+
// 3) 返回“私有视角”的最新 Agent(主要给前端本地状态使用)
|
|
527
|
+
const base = previousAgent ?? ({} as Partial<Agent>);
|
|
528
|
+
const mergedPrivate: Agent = {
|
|
529
|
+
...(base as any),
|
|
530
|
+
...(changes as any),
|
|
531
|
+
id: normalizedAgentId,
|
|
532
|
+
type: base.type || DataType.AGENT,
|
|
533
|
+
userId,
|
|
534
|
+
};
|
|
535
|
+
|
|
536
|
+
return mergedPrivate;
|
|
537
|
+
}
|
|
538
|
+
),
|
|
539
|
+
}),
|
|
540
|
+
});
|
|
541
|
+
|
|
542
|
+
export const {
|
|
543
|
+
runLlm,
|
|
544
|
+
runAgent,
|
|
545
|
+
streamAgentChatTurn,
|
|
546
|
+
createAgent,
|
|
547
|
+
updateAgent,
|
|
548
|
+
setSSRPublicAgents,
|
|
549
|
+
} = slice.actions;
|
|
550
|
+
|
|
551
|
+
const agentReducer: (state: AgentState | undefined, action: any) => AgentState = slice.reducer;
|
|
552
|
+
|
|
553
|
+
export default agentReducer;
|
|
554
|
+
|
|
555
|
+
/** 读取 SSR 预载的公开 Agent 列表(首页 AI 广场) */
|
|
556
|
+
export const selectSSRPublicAgents = (state: any): Agent[] =>
|
|
557
|
+
state.cybot?.pubCybots?.data ?? [];
|