nolo-cli 0.1.39 → 0.1.41
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 +4 -4
- package/agent-runtime/dialogWritePlan.ts +39 -0
- package/agent-runtime/hostAdapter.ts +4 -0
- package/agent-runtime/hybridRecordStore.ts +5 -3
- package/agent-runtime/index.ts +15 -0
- package/agent-runtime/localLoop.ts +87 -7
- package/agent-runtime/localToolPolicy.ts +2 -13
- package/agent-runtime/localWorkspaceTools.ts +42 -110
- package/agent-runtime/runtimeToolPolicy.ts +2 -11
- package/agent-runtime/runtimeToolSurface.ts +198 -0
- package/agent-runtime/types.ts +1 -0
- package/agentAliases.ts +2 -1
- package/agentRunCommand.ts +10 -32
- package/agentRuntimeLocal.ts +1 -0
- 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 +585 -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 +314 -40
- 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 +2001 -0
- package/ai/agent/streamAgentChatTurnUtils.ts +860 -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 +1095 -0
- package/ai/chat/accumulateToolCallChunks.ts +126 -0
- package/ai/chat/fetchUtils.ts +143 -0
- package/ai/chat/inlineImageUrlsForCustomProvider.ts +117 -0
- package/ai/chat/parseApiError.ts +67 -0
- package/ai/chat/parseMultilineSSE.ts +95 -0
- package/ai/chat/sendOpenAICompletionsRequest.ts +897 -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 +23 -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 +6 -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/queryShared.ts +161 -0
- package/ai/memory/recentRelationshipRecap.ts +247 -0
- package/ai/memory/remember.ts +167 -0
- package/ai/memory/store.ts +20 -0
- package/ai/memory/storeShared.ts +76 -0
- package/ai/memory/types.ts +46 -0
- package/ai/memory/understanding.ts +349 -0
- package/ai/memory/understandingGreeting.ts +264 -0
- package/ai/policy/personalizationDialog.ts +333 -0
- package/ai/policy/runtimePolicy.ts +454 -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 +235 -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 +53 -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 +2308 -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 +23 -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 +627 -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 +315 -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/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 +55 -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/favoriteSlice.ts +690 -0
- package/app/favorite/type.ts +43 -0
- package/app/hooks/deleteDbKey.ts +233 -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 +2174 -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 +114 -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 +73 -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 +18 -0
- package/auth/authSlice.ts +531 -0
- package/auth/client/loginRequest.ts +14 -0
- package/auth/resetAuthScopedClientState.ts +27 -0
- package/auth/routes.ts +178 -0
- package/auth/token.ts +63 -0
- package/auth/types.ts +40 -0
- package/chat/chat.locale.ts +813 -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 +197 -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/dialogSlice.ts +872 -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/fetchAndCacheMessages.ts +119 -0
- package/chat/messages/fetchConvMsgs.ts +51 -0
- package/chat/messages/fileUrl.ts +13 -0
- package/chat/messages/messageAgent.ts +8 -0
- package/chat/messages/messageContent.ts +199 -0
- package/chat/messages/messageContract.ts +88 -0
- package/chat/messages/messageSlice.ts +1367 -0
- package/chat/messages/toolThunks.ts +625 -0
- package/cli/agentAliases.ts +2 -1
- package/cli/agentRunCommand.ts +10 -32
- package/cli/agentRuntimeLocal.ts +1 -0
- package/cli/client/agentRun.ts +67 -95
- package/cli/client/localRuntimeAdapter.ts +323 -54
- package/cli/commandRegistry.ts +2 -2
- package/cli/machineWsRunDispatch.ts +51 -6
- package/cli/offlineMarxistsAgentCommand.ts +6 -4
- package/client/agentConfigResolver.test.ts +2 -2
- package/client/agentRun.test.ts +175 -57
- package/client/agentRun.ts +67 -95
- package/client/localRuntimeAdapter.test.ts +682 -37
- package/client/localRuntimeAdapter.ts +323 -54
- package/client/localRuntimeDryRun.test.ts +23 -9
- package/client/localToolPolicy.test.ts +4 -4
- package/commandRegistry.ts +2 -2
- 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 +241 -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/server/levelAuthorityStore.ts +20 -1
- package/database/tenantPlacement.ts +57 -0
- package/database/userPreferenceRegister.ts +131 -0
- package/database/utils/ulid.ts +1 -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 +274 -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/analyze/profileAnalyzer.ts +205 -0
- package/integrations/xhs-reader/backends/playwrightProfileCollector.ts +624 -0
- package/integrations/xhs-reader/bridge/readXhsProfileWithBridge.ts +227 -0
- package/integrations/xhs-reader/client/xhsWebApiClient.ts +229 -0
- package/integrations/xhs-reader/normalize.ts +390 -0
- package/integrations/xhs-reader/orchestrator.ts +178 -0
- package/integrations/xhs-reader/redaction.ts +68 -0
- package/integrations/xhs-reader/types.ts +244 -0
- package/integrations/xhs-reader/url.ts +57 -0
- package/machineWsRunDispatch.ts +51 -6
- package/offlineMarxistsAgentCommand.ts +6 -4
- package/package.json +430 -3
- package/render/page/createPageAction.ts +183 -0
- package/render/page/docSlice.ts +468 -0
- package/render/page/types.ts +17 -0
- package/render/table/createTableAction.ts +270 -0
- package/render/table/deleteTableAction.ts +193 -0
- package/render/table/fetchAndCacheTableRows.ts +174 -0
- package/render/table/tableSlice.ts +1106 -0
- package/render/table/toolValueUtils.ts +363 -0
- package/render/table/types.ts +252 -0
- package/render/table/utils/tableSerialization.ts +50 -0
- package/server/handlers/agentRun/types.ts +104 -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
|
@@ -0,0 +1,310 @@
|
|
|
1
|
+
// packages/ai/agent/runAgentBackground.ts
|
|
2
|
+
// 后台运行 agent 并通过 SSE 监听结果
|
|
3
|
+
//
|
|
4
|
+
// 使用方式(在组件/thunk 中):
|
|
5
|
+
// dispatch(runAgentBackground({
|
|
6
|
+
// agentKey: "agent-xxx",
|
|
7
|
+
// userInput: "帮我搜索...",
|
|
8
|
+
// spaceId: "space-yyy", // 可选,写入 space 索引
|
|
9
|
+
// onStatusChange: (s) => ..., // 可选,实时更新 UI 状态
|
|
10
|
+
// onDone: (result) => ..., // 可选,成功回调
|
|
11
|
+
// onFailed: (error) => ..., // 可选,失败回调
|
|
12
|
+
// }));
|
|
13
|
+
|
|
14
|
+
import { createAsyncThunk } from "@reduxjs/toolkit";
|
|
15
|
+
import type { RootState } from "../../app/store";
|
|
16
|
+
import { selectCurrentServer } from "../../app/settings/settingSlice";
|
|
17
|
+
import { resolveRetryAfterMs } from "../../app/utils/retryAfter";
|
|
18
|
+
import { selectCurrentToken } from "../../auth/authSlice";
|
|
19
|
+
import { createSSEParser } from "../chat/parseMultilineSSE";
|
|
20
|
+
|
|
21
|
+
export type DialogStatus = "pending" | "running" | "done" | "failed" | "cancelled" | "reconnecting";
|
|
22
|
+
|
|
23
|
+
export interface RunAgentBackgroundResult {
|
|
24
|
+
dialogId: string;
|
|
25
|
+
content?: string;
|
|
26
|
+
usage?: unknown;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
export interface RunAgentBackgroundArgs {
|
|
30
|
+
agentKey: string;
|
|
31
|
+
userInput: string;
|
|
32
|
+
serverBase?: string;
|
|
33
|
+
spaceId?: string;
|
|
34
|
+
/** 任务状态变化时触发(pending → running → done/failed) */
|
|
35
|
+
onStatusChange?: (status: DialogStatus) => void;
|
|
36
|
+
/** agent 成功完成时触发 */
|
|
37
|
+
onDone?: (result: { dialogId: string; content?: string; usage?: unknown }) => void;
|
|
38
|
+
/** agent 失败时触发 */
|
|
39
|
+
onFailed?: (error: string) => void;
|
|
40
|
+
/** 外部取消信号 */
|
|
41
|
+
signal?: AbortSignal;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
const MAX_SSE_RETRIES = 3;
|
|
45
|
+
const SSE_RETRY_DELAY_MS = 1500;
|
|
46
|
+
const MAX_RUN_START_RETRIES = 1;
|
|
47
|
+
|
|
48
|
+
type RetryableError = Error & { retryable?: boolean; retryAfterMs?: number };
|
|
49
|
+
|
|
50
|
+
function createRetryableError(message: string, retryAfterMs?: number): RetryableError {
|
|
51
|
+
return Object.assign(new Error(message), {
|
|
52
|
+
retryable: true,
|
|
53
|
+
retryAfterMs,
|
|
54
|
+
});
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
function createSubscriptionError(
|
|
58
|
+
status: number,
|
|
59
|
+
hasBody: boolean,
|
|
60
|
+
retryAfterMs?: number
|
|
61
|
+
): RetryableError {
|
|
62
|
+
const message = !hasBody
|
|
63
|
+
? `事件流响应缺少 body (${status})`
|
|
64
|
+
: `无法订阅事件流 (${status})`;
|
|
65
|
+
|
|
66
|
+
if (status === 401 || status === 403) {
|
|
67
|
+
return new Error(message);
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
return createRetryableError(message, retryAfterMs);
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
async function waitForRetryDelay(retryAfterMs: number, signal: AbortSignal) {
|
|
74
|
+
if (signal.aborted) throw new DOMException("Aborted", "AbortError");
|
|
75
|
+
await new Promise<void>((resolve, reject) => {
|
|
76
|
+
let timeoutId: ReturnType<typeof setTimeout> | null = null;
|
|
77
|
+
const onAbort = () => {
|
|
78
|
+
if (timeoutId !== null) clearTimeout(timeoutId);
|
|
79
|
+
signal.removeEventListener("abort", onAbort);
|
|
80
|
+
reject(new DOMException("Aborted", "AbortError"));
|
|
81
|
+
};
|
|
82
|
+
timeoutId = setTimeout(() => {
|
|
83
|
+
signal.removeEventListener("abort", onAbort);
|
|
84
|
+
resolve();
|
|
85
|
+
}, retryAfterMs);
|
|
86
|
+
signal.addEventListener("abort", onAbort, { once: true });
|
|
87
|
+
});
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
function parseRetryableJson(text: string) {
|
|
91
|
+
try {
|
|
92
|
+
return JSON.parse(text) as {
|
|
93
|
+
error?: string;
|
|
94
|
+
reason?: string;
|
|
95
|
+
retryable?: boolean;
|
|
96
|
+
retryAfterMs?: number;
|
|
97
|
+
};
|
|
98
|
+
} catch {
|
|
99
|
+
return null;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
/**
|
|
104
|
+
* 订阅单次 dialog 事件流,收到 done/failed 则 resolve/reject,
|
|
105
|
+
* 流意外关闭时 reject 并标记 retryable=true 供上层重试。
|
|
106
|
+
*/
|
|
107
|
+
async function listenToDialogEvents(
|
|
108
|
+
dialogId: string,
|
|
109
|
+
currentServer: string,
|
|
110
|
+
authHeader: string,
|
|
111
|
+
signal: AbortSignal,
|
|
112
|
+
onStatusChange?: (status: DialogStatus) => void,
|
|
113
|
+
onDone?: (result: { dialogId: string; content?: string; usage?: unknown }) => void,
|
|
114
|
+
onFailed?: (error: string) => void,
|
|
115
|
+
): Promise<RunAgentBackgroundResult> {
|
|
116
|
+
let eventsRes: Response;
|
|
117
|
+
try {
|
|
118
|
+
eventsRes = await fetch(
|
|
119
|
+
`${currentServer}/api/events/dialog-${dialogId}`,
|
|
120
|
+
{
|
|
121
|
+
method: "GET",
|
|
122
|
+
headers: {
|
|
123
|
+
Accept: "text/event-stream",
|
|
124
|
+
...(authHeader && { Authorization: authHeader }),
|
|
125
|
+
},
|
|
126
|
+
signal,
|
|
127
|
+
}
|
|
128
|
+
);
|
|
129
|
+
} catch (e) {
|
|
130
|
+
if (e instanceof Error && e.name === "AbortError") throw e;
|
|
131
|
+
throw createRetryableError("事件流连接失败");
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
if (!eventsRes.ok || !eventsRes.body) {
|
|
135
|
+
throw createSubscriptionError(
|
|
136
|
+
eventsRes.status,
|
|
137
|
+
!!eventsRes.body,
|
|
138
|
+
resolveRetryAfterMs(eventsRes.headers, SSE_RETRY_DELAY_MS)
|
|
139
|
+
);
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
const reader = eventsRes.body.getReader();
|
|
143
|
+
const decoder = new TextDecoder();
|
|
144
|
+
const parseSSE = createSSEParser();
|
|
145
|
+
|
|
146
|
+
return new Promise<RunAgentBackgroundResult>((resolve, reject) => {
|
|
147
|
+
const processStream = async () => {
|
|
148
|
+
try {
|
|
149
|
+
while (true) {
|
|
150
|
+
const { done, value } = await reader.read();
|
|
151
|
+
if (done) break;
|
|
152
|
+
|
|
153
|
+
const chunk = decoder.decode(value, { stream: true });
|
|
154
|
+
const events = parseSSE(chunk);
|
|
155
|
+
|
|
156
|
+
for (const event of events) {
|
|
157
|
+
const type = event.type as string;
|
|
158
|
+
|
|
159
|
+
if (type === "status") {
|
|
160
|
+
onStatusChange?.(event.status as DialogStatus);
|
|
161
|
+
} else if (type === "done") {
|
|
162
|
+
const result = {
|
|
163
|
+
dialogId,
|
|
164
|
+
content: event.content as string | undefined,
|
|
165
|
+
usage: event.usage,
|
|
166
|
+
};
|
|
167
|
+
onStatusChange?.("done");
|
|
168
|
+
onDone?.(result);
|
|
169
|
+
reader.cancel().catch(() => { });
|
|
170
|
+
resolve(result);
|
|
171
|
+
return;
|
|
172
|
+
} else if (type === "failed") {
|
|
173
|
+
const errMsg = (event.error as string) ?? "未知错误";
|
|
174
|
+
onStatusChange?.("failed");
|
|
175
|
+
onFailed?.(errMsg);
|
|
176
|
+
reader.cancel().catch(() => { });
|
|
177
|
+
reject(new Error(errMsg));
|
|
178
|
+
return;
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
// 流正常关闭但未收到 done/failed(服务重启等),标记可重试
|
|
183
|
+
const err = createRetryableError("事件流意外关闭");
|
|
184
|
+
reject(err);
|
|
185
|
+
} catch (e: unknown) {
|
|
186
|
+
if (e instanceof Error && e.name === "AbortError") {
|
|
187
|
+
resolve({ dialogId });
|
|
188
|
+
} else {
|
|
189
|
+
reject(e);
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
};
|
|
193
|
+
|
|
194
|
+
processStream();
|
|
195
|
+
});
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
export const runAgentBackground = createAsyncThunk<
|
|
199
|
+
RunAgentBackgroundResult,
|
|
200
|
+
RunAgentBackgroundArgs,
|
|
201
|
+
{ state: RootState }
|
|
202
|
+
>("agent/runBackground", async (args, { getState, signal: thunkSignal }) => {
|
|
203
|
+
const { agentKey, userInput, serverBase, spaceId, onStatusChange, onDone, onFailed } = args;
|
|
204
|
+
|
|
205
|
+
const state = getState();
|
|
206
|
+
const currentServer = serverBase?.trim().replace(/\/+$/, "") || selectCurrentServer(state);
|
|
207
|
+
const token = selectCurrentToken(state);
|
|
208
|
+
if (!currentServer) throw new Error("未配置服务器地址");
|
|
209
|
+
|
|
210
|
+
const authHeader = token ? `Bearer ${token}` : "";
|
|
211
|
+
|
|
212
|
+
// ── Step 1: 触发后台运行,获取 dialogId ──────────────────────────────────
|
|
213
|
+
const effectiveSignal = args.signal ?? thunkSignal;
|
|
214
|
+
let runResponse:
|
|
215
|
+
| {
|
|
216
|
+
dialogId: string;
|
|
217
|
+
status: string;
|
|
218
|
+
serverBase?: string;
|
|
219
|
+
}
|
|
220
|
+
| null = null;
|
|
221
|
+
|
|
222
|
+
for (let attempt = 0; attempt <= MAX_RUN_START_RETRIES; attempt++) {
|
|
223
|
+
const runRes = await fetch(`${currentServer}/api/agent/run`, {
|
|
224
|
+
method: "POST",
|
|
225
|
+
headers: {
|
|
226
|
+
"Content-Type": "application/json",
|
|
227
|
+
...(authHeader && { Authorization: authHeader }),
|
|
228
|
+
},
|
|
229
|
+
body: JSON.stringify({
|
|
230
|
+
agentKey,
|
|
231
|
+
userInput,
|
|
232
|
+
spaceId,
|
|
233
|
+
background: true,
|
|
234
|
+
runtimeContext: {
|
|
235
|
+
surface: "web",
|
|
236
|
+
host: "browser",
|
|
237
|
+
runtime: "react",
|
|
238
|
+
entrypoint: "background-agent-run",
|
|
239
|
+
capabilities: ["background", "sse-events"],
|
|
240
|
+
},
|
|
241
|
+
}),
|
|
242
|
+
signal: effectiveSignal,
|
|
243
|
+
});
|
|
244
|
+
|
|
245
|
+
if (runRes.ok) {
|
|
246
|
+
runResponse = (await runRes.json()) as {
|
|
247
|
+
dialogId: string;
|
|
248
|
+
status: string;
|
|
249
|
+
serverBase?: string;
|
|
250
|
+
};
|
|
251
|
+
break;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
const errText = await runRes.text();
|
|
255
|
+
const payload = parseRetryableJson(errText);
|
|
256
|
+
const retryAfterMs = resolveRetryAfterMs(
|
|
257
|
+
runRes.headers,
|
|
258
|
+
SSE_RETRY_DELAY_MS,
|
|
259
|
+
payload?.retryAfterMs
|
|
260
|
+
);
|
|
261
|
+
const retryable =
|
|
262
|
+
payload?.retryable === true ||
|
|
263
|
+
payload?.reason === "core_draining" ||
|
|
264
|
+
runRes.status === 502 ||
|
|
265
|
+
runRes.status === 503 ||
|
|
266
|
+
runRes.status === 504;
|
|
267
|
+
|
|
268
|
+
if (retryable && attempt < MAX_RUN_START_RETRIES) {
|
|
269
|
+
await waitForRetryDelay(retryAfterMs, effectiveSignal);
|
|
270
|
+
continue;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
throw new Error(`启动后台任务失败 (${runRes.status}): ${errText}`);
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
if (!runResponse) {
|
|
277
|
+
throw new Error("启动后台任务失败:未收到可用的后台运行响应");
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
const {
|
|
281
|
+
dialogId,
|
|
282
|
+
serverBase: routedServerBase,
|
|
283
|
+
} = runResponse;
|
|
284
|
+
onStatusChange?.("pending");
|
|
285
|
+
|
|
286
|
+
// ── Step 2: 订阅 SSE 事件流(含断线重连,最多 3 次)────────────────────────
|
|
287
|
+
let lastError: Error | undefined;
|
|
288
|
+
|
|
289
|
+
const eventServer =
|
|
290
|
+
typeof routedServerBase === "string" && routedServerBase.trim()
|
|
291
|
+
? routedServerBase.trim().replace(/\/+$/, "")
|
|
292
|
+
: currentServer;
|
|
293
|
+
|
|
294
|
+
for (let attempt = 0; attempt <= MAX_SSE_RETRIES; attempt++) {
|
|
295
|
+
try {
|
|
296
|
+
return await listenToDialogEvents(
|
|
297
|
+
dialogId, eventServer, authHeader, effectiveSignal,
|
|
298
|
+
onStatusChange, onDone, onFailed,
|
|
299
|
+
);
|
|
300
|
+
} catch (e: any) {
|
|
301
|
+
if (e?.name === "AbortError") throw e; // 用户主动取消,不重试
|
|
302
|
+
if (!e?.retryable || attempt >= MAX_SSE_RETRIES) throw e; // 非可重试错误或超限
|
|
303
|
+
lastError = e;
|
|
304
|
+
onStatusChange?.("reconnecting");
|
|
305
|
+
await waitForRetryDelay(e?.retryAfterMs ?? SSE_RETRY_DELAY_MS, effectiveSignal);
|
|
306
|
+
}
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
throw lastError ?? new Error("事件流重连失败");
|
|
310
|
+
});
|
|
@@ -0,0 +1,164 @@
|
|
|
1
|
+
// packages/ai/agent/runAgentClientLoop.ts
|
|
2
|
+
//
|
|
3
|
+
// 客户端多轮 Agent 循环:复现服务端 runAgentLoop 的逻辑
|
|
4
|
+
// - 不支持 Response API(当前全部走 OpenAI Completions 格式)
|
|
5
|
+
// - 工具执行通过 executeToolCall 在客户端完成
|
|
6
|
+
// - 每轮:调 LLM → 有 tool_calls → 执行工具 → 追加 tool 消息 → 继续
|
|
7
|
+
|
|
8
|
+
import { RootState } from "../../app/store";
|
|
9
|
+
import { Message } from "../../app/types";
|
|
10
|
+
import { read } from "../../database/dbSlice";
|
|
11
|
+
import { fetchAgentContexts } from "../agent/fetchAgentContexts";
|
|
12
|
+
import { generateRequestBody } from "../llm/generateRequestBody";
|
|
13
|
+
import { getApiEndpoint } from "../llm/providers";
|
|
14
|
+
import { selectCurrentServer } from "../../app/settings/settingSlice";
|
|
15
|
+
import { selectCurrentToken } from "../../auth/authSlice";
|
|
16
|
+
import { performFetchRequest } from "../chat/fetchUtils";
|
|
17
|
+
import { executeToolCall } from "../agent/executeToolCall";
|
|
18
|
+
import { extractCustomId } from "../../core/prefix";
|
|
19
|
+
import { updateTokensAction } from "../../chat/dialog/actions/updateTokensAction";
|
|
20
|
+
import {
|
|
21
|
+
recordConsecutiveToolFailure,
|
|
22
|
+
type ToolFailureGuardState,
|
|
23
|
+
} from "../agent/toolFailureGuard";
|
|
24
|
+
|
|
25
|
+
export interface RunAgentClientLoopArgs {
|
|
26
|
+
agentKey: string;
|
|
27
|
+
content: any;
|
|
28
|
+
parentMessageId?: string;
|
|
29
|
+
billingDialogKey?: string;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
export interface RunAgentClientLoopResult {
|
|
33
|
+
content: string;
|
|
34
|
+
toolCallCount: number;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
/**
|
|
38
|
+
* 客户端多轮 Agent 执行循环。
|
|
39
|
+
*
|
|
40
|
+
* 使用场景:callAgentTool 的 client 模式、runAgent thunk。
|
|
41
|
+
* 不适合需要流式输出的场景(请用 runStreamingAgent)。
|
|
42
|
+
*/
|
|
43
|
+
export async function runAgentClientLoop(
|
|
44
|
+
args: RunAgentClientLoopArgs,
|
|
45
|
+
thunkApi: any
|
|
46
|
+
): Promise<RunAgentClientLoopResult> {
|
|
47
|
+
const { agentKey, content, parentMessageId, billingDialogKey } = args;
|
|
48
|
+
const { getState, dispatch } = thunkApi;
|
|
49
|
+
const state = getState() as RootState;
|
|
50
|
+
|
|
51
|
+
// 1. 加载 Agent 配置
|
|
52
|
+
const agentConfig = await dispatch(read({ dbKey: agentKey })).unwrap();
|
|
53
|
+
|
|
54
|
+
// 2. 加载 Agent 上下文(知识库 / references)
|
|
55
|
+
const agentContexts = await fetchAgentContexts(
|
|
56
|
+
agentConfig.references,
|
|
57
|
+
dispatch
|
|
58
|
+
);
|
|
59
|
+
|
|
60
|
+
// 3. 构造首轮 body(generateRequestBody 会注入 system prompt)
|
|
61
|
+
const initialMessages: Message[] = [{ role: "user", content }];
|
|
62
|
+
const body = generateRequestBody({
|
|
63
|
+
agentConfig,
|
|
64
|
+
messages: initialMessages,
|
|
65
|
+
userInput: typeof content === "string" ? content : JSON.stringify(content),
|
|
66
|
+
contexts: agentContexts,
|
|
67
|
+
});
|
|
68
|
+
body.stream = false; // 多轮模式不用流式
|
|
69
|
+
|
|
70
|
+
// body.messages 包含了 system 消息 + 用户消息,后续累积 tool 结果入此数组
|
|
71
|
+
const messages: Message[] = body.messages as Message[];
|
|
72
|
+
|
|
73
|
+
const api = getApiEndpoint(agentConfig);
|
|
74
|
+
const currentServer = selectCurrentServer(state);
|
|
75
|
+
const token = selectCurrentToken(state);
|
|
76
|
+
|
|
77
|
+
let finalContent = "";
|
|
78
|
+
let toolCallCount = 0;
|
|
79
|
+
const toolFailureGuard: ToolFailureGuardState = {
|
|
80
|
+
signature: null,
|
|
81
|
+
count: 0,
|
|
82
|
+
};
|
|
83
|
+
|
|
84
|
+
// 4. 多轮循环
|
|
85
|
+
loop:
|
|
86
|
+
for (;;) {
|
|
87
|
+
// 更新 messages(含累积的 tool 结果)
|
|
88
|
+
body.messages = messages;
|
|
89
|
+
|
|
90
|
+
const response = await performFetchRequest({
|
|
91
|
+
agentConfig,
|
|
92
|
+
api,
|
|
93
|
+
bodyData: body as any,
|
|
94
|
+
currentServer,
|
|
95
|
+
token,
|
|
96
|
+
});
|
|
97
|
+
|
|
98
|
+
const data = await response.json();
|
|
99
|
+
const choice = data.choices?.[0];
|
|
100
|
+
|
|
101
|
+
if (billingDialogKey && data?.usage) {
|
|
102
|
+
await updateTokensAction(
|
|
103
|
+
{
|
|
104
|
+
dialogId: extractCustomId(billingDialogKey),
|
|
105
|
+
dialogKey: billingDialogKey,
|
|
106
|
+
usage: data.usage,
|
|
107
|
+
agentConfig,
|
|
108
|
+
},
|
|
109
|
+
thunkApi
|
|
110
|
+
);
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
if (!choice) {
|
|
114
|
+
console.warn("[runAgentClientLoop] 响应中找不到 choices[0],停止");
|
|
115
|
+
break;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
const assistantMsg = choice.message;
|
|
119
|
+
const finishReason: string = choice.finish_reason ?? "";
|
|
120
|
+
|
|
121
|
+
// 追加 assistant 消息
|
|
122
|
+
messages.push(assistantMsg);
|
|
123
|
+
|
|
124
|
+
// 记录文本内容
|
|
125
|
+
if (typeof assistantMsg.content === "string" && assistantMsg.content) {
|
|
126
|
+
finalContent = assistantMsg.content;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
// 无工具调用 or 模型明确 stop → 结束
|
|
130
|
+
if (!assistantMsg.tool_calls?.length || finishReason === "stop") {
|
|
131
|
+
break;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
// 5. 执行工具调用
|
|
135
|
+
for (const tc of assistantMsg.tool_calls) {
|
|
136
|
+
toolCallCount++;
|
|
137
|
+
const toolResultContent = await executeToolCall(tc, thunkApi, {
|
|
138
|
+
parentMessageId,
|
|
139
|
+
agentKey,
|
|
140
|
+
});
|
|
141
|
+
const stopReason = recordConsecutiveToolFailure(
|
|
142
|
+
toolFailureGuard,
|
|
143
|
+
tc,
|
|
144
|
+
toolResultContent
|
|
145
|
+
);
|
|
146
|
+
if (stopReason) {
|
|
147
|
+
finalContent = stopReason;
|
|
148
|
+
messages.push({
|
|
149
|
+
role: "tool",
|
|
150
|
+
tool_call_id: tc.id,
|
|
151
|
+
content: toolResultContent,
|
|
152
|
+
} as any);
|
|
153
|
+
break loop;
|
|
154
|
+
}
|
|
155
|
+
messages.push({
|
|
156
|
+
role: "tool",
|
|
157
|
+
tool_call_id: tc.id,
|
|
158
|
+
content: toolResultContent,
|
|
159
|
+
} as any);
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
return { content: finalContent, toolCallCount };
|
|
164
|
+
}
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
import { canonicalizeToolNames } from "../tools/toolNameAliases";
|
|
2
|
+
import { buildContextLayerContractBlock } from "./contextLayerContract";
|
|
3
|
+
import { buildStartupProtocolBlock } from "./startupProtocol";
|
|
4
|
+
|
|
5
|
+
export type RuntimeGuidanceToolOptions = {
|
|
6
|
+
hasCheckEnvTool: boolean;
|
|
7
|
+
hasExecShellTool: boolean;
|
|
8
|
+
hasRememberMemoryTool: boolean;
|
|
9
|
+
hasDocTools: boolean;
|
|
10
|
+
hasBrowserTools: boolean;
|
|
11
|
+
hasEmailRegistrationTools: boolean;
|
|
12
|
+
hasEmailRegistrationWorkflow: boolean;
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
const normalizeToolName = (name: string): string =>
|
|
16
|
+
name.replace(/[-_]/g, "").toLowerCase();
|
|
17
|
+
|
|
18
|
+
const hasAnyTool = (normalizedTools: Set<string>, candidates: string[]): boolean =>
|
|
19
|
+
candidates.some((candidate) => normalizedTools.has(normalizeToolName(candidate)));
|
|
20
|
+
|
|
21
|
+
const hasAllTools = (normalizedTools: Set<string>, candidates: string[]): boolean =>
|
|
22
|
+
candidates.every((candidate) => normalizedTools.has(normalizeToolName(candidate)));
|
|
23
|
+
|
|
24
|
+
const buildEmailRegistrationWorkflowBlock = (
|
|
25
|
+
enabled: boolean
|
|
26
|
+
): string => {
|
|
27
|
+
if (!enabled) return "";
|
|
28
|
+
|
|
29
|
+
return [
|
|
30
|
+
"--- 邮箱验证码注册流程 ---",
|
|
31
|
+
"当用户要求你注册网站账号时,只允许处理用户明确指定的当前目标网站,不要自行扩展到其他网站、批量注册或规避平台风控。",
|
|
32
|
+
"",
|
|
33
|
+
"分阶段协议:discover before acting -> assess supportability -> register -> verify -> closeout。",
|
|
34
|
+
"",
|
|
35
|
+
"推荐流程:",
|
|
36
|
+
"1. discover before acting:先用 browser_openSession / browser_readContent 阅读页面,确认目标注册页 URL、账号用途、必填项和停止条件;不要一打开页面就盲点按钮。如果缺少目标网站,先询问用户。",
|
|
37
|
+
"2. assess supportability:先判断该流程是否支持当前受控自动化。遇到 CAPTCHA、手机号验证、支付、身份/KYC、OAuth-only、服务条款确认、或任何看起来像规避风控的步骤时,必须立即停止并向用户说明 blockingReason;不要硬闯。",
|
|
38
|
+
"3. register:只有在确认支持后,才使用 email_provision_identity 为当前 agent 生成受控域名邮箱身份,再使用 browser_openSession / browser_typeText / browser_click / browser_readContent 填写并提交注册表单。",
|
|
39
|
+
"4. verify:提交后使用 email_wait_for 等待该 agent 收件箱里的验证邮件,再用 email_extract_verification 提取验证码或验证链接,回填验证码或打开验证链接完成验证。",
|
|
40
|
+
"5. closeout:无论成功还是失败都要 always close sessions,主动清理浏览器会话(例如 browser_closeSession)。如果流程失败,必须明确 failedStage 与 blockingReason,并说明可恢复选项;不要盲目尝试无关网站或绕过验证。",
|
|
41
|
+
"6. 最终只在对话中返回账号、邮箱和一次性生成的密码;不要持久化密码,不要写入 agent metadata、数据库、文档或记忆。",
|
|
42
|
+
"",
|
|
43
|
+
"必须暂停并询问用户的情况:CAPTCHA、手机号验证、支付、身份/KYC、OAuth 授权、OAuth-only、服务条款确认、或任何看起来像规避风控的步骤。",
|
|
44
|
+
"如果流程失败,说明 failedStage、blockingReason 和可恢复选项,不要盲目尝试无关网站或绕过验证。",
|
|
45
|
+
].join("\n");
|
|
46
|
+
};
|
|
47
|
+
|
|
48
|
+
const buildWebResearchToolPolicyBlock = (
|
|
49
|
+
hasExecShellTool: boolean,
|
|
50
|
+
hasFetchWebpageTool: boolean
|
|
51
|
+
): string => {
|
|
52
|
+
if (!hasExecShellTool || !hasFetchWebpageTool) return "";
|
|
53
|
+
|
|
54
|
+
return [
|
|
55
|
+
"--- 生产环境网页研究工具策略 ---",
|
|
56
|
+
"生产环境网页研究优先使用 fetchWebpage、站点 Markdown / llms.txt、或专用浏览/搜索工具。",
|
|
57
|
+
"不要用 execShell 调 curl、grep、sed 等命令抓网页或截取网页段落;生产环境通常会禁用 dev shell,反复尝试只会浪费回合。",
|
|
58
|
+
"如果网页内容过长或锚点段落没有被单独提取,先寻找该文档站提供的 Markdown 版本、独立页面、llms.txt 索引或更具体 URL,再继续回答。",
|
|
59
|
+
].join("\n");
|
|
60
|
+
};
|
|
61
|
+
|
|
62
|
+
export const resolveRuntimeGuidanceToolOptions = (
|
|
63
|
+
tools: string[] = []
|
|
64
|
+
): RuntimeGuidanceToolOptions => {
|
|
65
|
+
const normalizedTools = canonicalizeToolNames(tools);
|
|
66
|
+
const normalizedToolSet = new Set(normalizedTools.map(normalizeToolName));
|
|
67
|
+
const hasBrowserTools = hasAllTools(normalizedToolSet, [
|
|
68
|
+
"browser_openSession",
|
|
69
|
+
"browser_readContent",
|
|
70
|
+
"browser_typeText",
|
|
71
|
+
"browser_click",
|
|
72
|
+
"browser_closeSession",
|
|
73
|
+
]);
|
|
74
|
+
const hasBrowserProbe = hasAnyTool(normalizedToolSet, ["browser_probePage", "browserProbePage"]);
|
|
75
|
+
const hasEmailRegistrationTools = hasAllTools(normalizedToolSet, [
|
|
76
|
+
"email_provision_identity",
|
|
77
|
+
"email_wait_for",
|
|
78
|
+
"email_extract_verification",
|
|
79
|
+
]);
|
|
80
|
+
|
|
81
|
+
return {
|
|
82
|
+
hasCheckEnvTool: normalizedTools.includes("checkEnv"),
|
|
83
|
+
hasExecShellTool: normalizedTools.includes("execShell"),
|
|
84
|
+
hasRememberMemoryTool: normalizedTools.includes("rememberMemory"),
|
|
85
|
+
hasDocTools: normalizedTools.some((tool) =>
|
|
86
|
+
["read", "readDoc", "readPage", "createDoc", "updateDoc"].includes(tool)
|
|
87
|
+
),
|
|
88
|
+
hasBrowserTools,
|
|
89
|
+
hasEmailRegistrationTools,
|
|
90
|
+
// Require browser_probePage to be present before enabling email registration workflow guidance.
|
|
91
|
+
hasEmailRegistrationWorkflow: hasBrowserTools && hasBrowserProbe && hasEmailRegistrationTools,
|
|
92
|
+
};
|
|
93
|
+
};
|
|
94
|
+
|
|
95
|
+
export const buildRuntimeGuidanceBlocks = (tools: string[] = []) => {
|
|
96
|
+
const options = resolveRuntimeGuidanceToolOptions(tools);
|
|
97
|
+
const normalizedTools = canonicalizeToolNames(tools);
|
|
98
|
+
|
|
99
|
+
return {
|
|
100
|
+
startupProtocol: buildStartupProtocolBlock({
|
|
101
|
+
hasCheckEnvTool: options.hasCheckEnvTool,
|
|
102
|
+
hasExecShellTool: options.hasExecShellTool,
|
|
103
|
+
}),
|
|
104
|
+
contextLayerContract: buildContextLayerContractBlock({
|
|
105
|
+
hasRememberMemoryTool: options.hasRememberMemoryTool,
|
|
106
|
+
hasDocTools: options.hasDocTools,
|
|
107
|
+
}),
|
|
108
|
+
emailRegistrationWorkflow: buildEmailRegistrationWorkflowBlock(
|
|
109
|
+
options.hasEmailRegistrationWorkflow
|
|
110
|
+
),
|
|
111
|
+
webResearchToolPolicy: buildWebResearchToolPolicyBlock(
|
|
112
|
+
options.hasExecShellTool,
|
|
113
|
+
normalizedTools.includes("fetchWebpage")
|
|
114
|
+
),
|
|
115
|
+
};
|
|
116
|
+
};
|