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,817 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
en: {
|
|
3
|
+
translation: {
|
|
4
|
+
AddAgent: "Add Agent",
|
|
5
|
+
selectedAgentsCount: "Selected {{count}} Agents",
|
|
6
|
+
addSelectedAgents: "Add selected",
|
|
7
|
+
clearSelection: "Clear",
|
|
8
|
+
recommended: "Recommended",
|
|
9
|
+
favoriteAgent: "Favorite",
|
|
10
|
+
myAgent: "Mine",
|
|
11
|
+
capabilityMatch: "Capability match",
|
|
12
|
+
confirm: "Confirm",
|
|
13
|
+
cancel: "Cancel",
|
|
14
|
+
clickHere: "Click here",
|
|
15
|
+
clearConversation: "Clear Conversation",
|
|
16
|
+
compressionError: "Image compression failed. Sending original images.",
|
|
17
|
+
compressingImages: "Compressing images...",
|
|
18
|
+
copyContent: "Copy Content",
|
|
19
|
+
copyDiagnostics: "Copy diagnostics",
|
|
20
|
+
copyFailed: "Copy failed",
|
|
21
|
+
copySuccess: "Copied successfully",
|
|
22
|
+
createDialog: "Create Dialog",
|
|
23
|
+
createDialogFromAI: "Create Dialog with AI",
|
|
24
|
+
createRobot: "Create Robot",
|
|
25
|
+
customizeYourAI: "Customize Your AI",
|
|
26
|
+
AgentAddFailed: "Failed to add Agent",
|
|
27
|
+
AgentAddedSuccess: "Agent added successfully",
|
|
28
|
+
MultipleAgentsAddedSuccess: "{{count}} Agents added successfully",
|
|
29
|
+
AgentRemoveFailed: "Failed to remove Agent",
|
|
30
|
+
AgentRemovedSuccess: "Agent removed successfully",
|
|
31
|
+
Agents: "Agents",
|
|
32
|
+
delete: "Delete",
|
|
33
|
+
deleteContentConfirmation:
|
|
34
|
+
"Are you sure you want to delete this content? This action cannot be undone.",
|
|
35
|
+
deleteContentTitle: 'Delete "{{title}}"',
|
|
36
|
+
deleteFailed: "Deletion failed",
|
|
37
|
+
deleteMessage: "Delete Message",
|
|
38
|
+
deleteSuccess: "Deleted successfully",
|
|
39
|
+
confirmDelete: "Click again to confirm deletion",
|
|
40
|
+
dropToUpload: "Drop files here to upload",
|
|
41
|
+
excelIsEmpty: "Excel file is empty",
|
|
42
|
+
excelIsEmptyOrInvalid: "Excel file is empty or invalid",
|
|
43
|
+
excelParseError: "Failed to parse Excel file",
|
|
44
|
+
FailedToLoadAgents: "Failed to load Agents",
|
|
45
|
+
fileReadError: "Failed to read file content",
|
|
46
|
+
First: "First",
|
|
47
|
+
Info: "Info",
|
|
48
|
+
LoadingAgents: "Loading Agents...",
|
|
49
|
+
messageInput: "Message input field",
|
|
50
|
+
messageInputArea: "Message input area with file upload",
|
|
51
|
+
messageOrFileHere: "Type a message or upload a file...",
|
|
52
|
+
Mode: "Mode",
|
|
53
|
+
ModeUpdateFailed: "Failed to update mode",
|
|
54
|
+
ModeUpdatedSuccess: "Mode updated successfully",
|
|
55
|
+
newchat: "New Chat",
|
|
56
|
+
NoAgents: "No Agents available yet",
|
|
57
|
+
NoDescription: "No description provided",
|
|
58
|
+
Orchestrated: "Orchestrated",
|
|
59
|
+
Parallel: "Parallel",
|
|
60
|
+
playAudio: "Play Audio",
|
|
61
|
+
resend: "Resend",
|
|
62
|
+
Retry: "Retry",
|
|
63
|
+
saveContent: "Save Content",
|
|
64
|
+
saveFailed: "Save failed",
|
|
65
|
+
saveSuccess: "Saved successfully",
|
|
66
|
+
SelectAgentToAdd: "Select an Agent to add to the dialog",
|
|
67
|
+
sendFail: "Failed to send message",
|
|
68
|
+
Sequential: "Sequential",
|
|
69
|
+
ShowDialogConfigInfo: "View dialog settings and info",
|
|
70
|
+
Tokens: "Tokens",
|
|
71
|
+
Unnamed: "Unnamed",
|
|
72
|
+
uploadFile: "Upload File",
|
|
73
|
+
useServerProxy: "Use Transit Service",
|
|
74
|
+
viewDetails: "for more details",
|
|
75
|
+
// 新增文件上传相关翻译
|
|
76
|
+
fileReadErrorMessage: "Failed to read file, please try again.",
|
|
77
|
+
excelEmptyMessage: "Excel file is empty or invalid.",
|
|
78
|
+
excelNoDataMessage: "No data found in Excel file.",
|
|
79
|
+
excelParseErrorMessage:
|
|
80
|
+
"Failed to parse Excel file, please check the format.",
|
|
81
|
+
excelUploadSuccess: "Excel file uploaded and converted successfully!",
|
|
82
|
+
docxUploadSuccess: "DOCX file uploaded and converted successfully!",
|
|
83
|
+
docxUploadError: "Failed to upload DOCX file, please check the format.",
|
|
84
|
+
pdfUploadSuccess: "PDF file uploaded and converted successfully!",
|
|
85
|
+
pdfUploadError: "Failed to upload PDF file, please check the format.",
|
|
86
|
+
compressingImagesMessage: "Compressing images, please wait...",
|
|
87
|
+
compressionErrorMessage:
|
|
88
|
+
"Image compression failed, sending original images.",
|
|
89
|
+
sendFailMessage: "Failed to send message, please try again.",
|
|
90
|
+
// 新增余额不足相关翻译
|
|
91
|
+
insufficientBalanceDetailed:
|
|
92
|
+
"Insufficient balance. Model: {{modelName}}, max cost per message: {{pricePerMessage}} credits. Balance: {{balance}} credits.",
|
|
93
|
+
insufficientBalance: "Insufficient balance",
|
|
94
|
+
agentConfigMissing: "Agent configuration missing",
|
|
95
|
+
agentConfigLoadFailed:
|
|
96
|
+
"Failed to load agent configuration. Please try again.",
|
|
97
|
+
modelPricingMissing: "Model pricing info missing",
|
|
98
|
+
chooseAnotherModelContinue: "Choose another model to continue",
|
|
99
|
+
chooseAnotherModelDialogTitle: "Choose another model",
|
|
100
|
+
useThisModelContinue: "Continue with this model",
|
|
101
|
+
switchModelContinueSuccess: "Switched model and continued this conversation",
|
|
102
|
+
switchModelContinueFailed: "Failed to switch model. Please try again.",
|
|
103
|
+
noAlternativeModels: "No other available models",
|
|
104
|
+
noAvailableAgentMessage: "No available Agent message",
|
|
105
|
+
creditsUnit: "credits",
|
|
106
|
+
recharge: "Click to recharge", // 新增单独的充值翻译
|
|
107
|
+
// 新增中止功能相关翻译
|
|
108
|
+
stopAllGeneration: "Stop All Generations",
|
|
109
|
+
allMessagesAborted: "All messages have been aborted",
|
|
110
|
+
// 新增发送按钮翻译
|
|
111
|
+
send: "Send",
|
|
112
|
+
// Guide / queue / loop related
|
|
113
|
+
guideFromMessage: "Quote message",
|
|
114
|
+
guideSeeded: "Inserted into input",
|
|
115
|
+
guideEmptyContent: "No quotable text in this message",
|
|
116
|
+
editMessage: "Edit message",
|
|
117
|
+
editSeeded: "Editing message",
|
|
118
|
+
editEmptyContent: "No editable text in this message",
|
|
119
|
+
editingMessageNotice:
|
|
120
|
+
"Editing a previous message. Sending will discard all later messages.",
|
|
121
|
+
cancelEditingMessage: "Cancel editing message",
|
|
122
|
+
branchMessage: "Branch",
|
|
123
|
+
branchCreated: "Branch chat created",
|
|
124
|
+
branchFailed: "Failed to create branch chat",
|
|
125
|
+
stopBeforeDelete: "Stop generation before deleting",
|
|
126
|
+
messageQueued: "Message queued; will be sent after the current turn",
|
|
127
|
+
cannotSendFileDuringLoop: "Agent is running. Please wait before sending attachments.",
|
|
128
|
+
MaxContext: "Max Context",
|
|
129
|
+
Compression: "Context Compression",
|
|
130
|
+
CompressionTimes: "{{count}} times",
|
|
131
|
+
inheritedContextNotice: "This chat inherits context from a previous conversation",
|
|
132
|
+
inheritedContextNoticeWithTitle:
|
|
133
|
+
'This chat inherits context from "{{title}}"',
|
|
134
|
+
openSourceDialog: "Open source chat",
|
|
135
|
+
privateDialogGuestTitle: "This is a private dialog link",
|
|
136
|
+
privateDialogGuestHint:
|
|
137
|
+
"The /dialog-… route is only available to signed-in users who have permission to this dialog. If you want to share it with someone else, use a /share/<token> link instead.",
|
|
138
|
+
contextRetention: {
|
|
139
|
+
title: "Context Retention",
|
|
140
|
+
description: "Controls how much historical context is preserved in AI conversations. Higher values retain more history, lower values leave more room for new content.",
|
|
141
|
+
},
|
|
142
|
+
thinkingProcess: "Thinking Process",
|
|
143
|
+
thinkingContent: "Thinking Content",
|
|
144
|
+
answerContent: "Answer",
|
|
145
|
+
// Mobile Upload
|
|
146
|
+
imagePickerError: "Image picker error: {{error}}",
|
|
147
|
+
shareAttachmentWarning: "Attachments ignored for share command",
|
|
148
|
+
uploading: "Uploading...",
|
|
149
|
+
uploadSuccess: "Upload success",
|
|
150
|
+
uploadFailed: "Upload failed",
|
|
151
|
+
deleteMessageTitle: "Delete Message",
|
|
152
|
+
delConfirm: "Delete this tool output?",
|
|
153
|
+
bash: {
|
|
154
|
+
blockedTitle: "Dangerous Command Blocked",
|
|
155
|
+
blockedDesc: "This command was detected as high-risk and was not executed. If necessary, please confirm the risk and continue.",
|
|
156
|
+
runUnsafe: "Run anyway (unsafe)",
|
|
157
|
+
exitCode: "exit: {{code}}",
|
|
158
|
+
noOutput: "(No output)",
|
|
159
|
+
},
|
|
160
|
+
codeEdit: {
|
|
161
|
+
viewFinal: "Final Result",
|
|
162
|
+
viewDiff: "Diff Preview",
|
|
163
|
+
conflictTitle: "Write Conflict: File Exists",
|
|
164
|
+
conflictMsg: "The target file already exists and this call did not allow overwriting, so no changes were made.",
|
|
165
|
+
overwrite: "Overwrite",
|
|
166
|
+
confirmOverwritePrompt: "A previous attempt to write to {{path}} failed because it exists and overwrite was not permitted. Please confirm if you want to overwrite it with the latest content.",
|
|
167
|
+
},
|
|
168
|
+
tool: {
|
|
169
|
+
failed: "Execution failed",
|
|
170
|
+
executing: "Executing...",
|
|
171
|
+
requiresApproval: "Requires Approval",
|
|
172
|
+
resumePrompt: "Please continue with your previous plan based on the tool execution results; if the task is complete, summarize it concisely.",
|
|
173
|
+
},
|
|
174
|
+
toolNames: {
|
|
175
|
+
tool: "Tool",
|
|
176
|
+
exa_search: "Search",
|
|
177
|
+
read_file: "Read file",
|
|
178
|
+
readFile: "Read file",
|
|
179
|
+
searchWorkspace: "Search workspace",
|
|
180
|
+
readWorkspaceFile: "Read file",
|
|
181
|
+
writeWorkspaceFile: "Write file",
|
|
182
|
+
replaceWorkspaceText: "Replace text",
|
|
183
|
+
startPreview: "Start preview",
|
|
184
|
+
getPreviewStatus: "Preview status",
|
|
185
|
+
stopPreview: "Stop preview",
|
|
186
|
+
releasePreview: "Release preview",
|
|
187
|
+
captureVisualState: "Screenshot",
|
|
188
|
+
execShell: "Shell",
|
|
189
|
+
},
|
|
190
|
+
gemini: {
|
|
191
|
+
title: "Image Generation",
|
|
192
|
+
count: "{{count}} images generated",
|
|
193
|
+
},
|
|
194
|
+
page: {
|
|
195
|
+
untitled: "Untitled Page",
|
|
196
|
+
},
|
|
197
|
+
table: {
|
|
198
|
+
untitled: "Untitled Table",
|
|
199
|
+
export: "Export",
|
|
200
|
+
convertToDataTable: "Convert to data table",
|
|
201
|
+
converting: "Converting...",
|
|
202
|
+
convertSuccess: "Converted to data table",
|
|
203
|
+
convertFailed: "Failed to convert data table",
|
|
204
|
+
defaultColumnLabel: "Column {{index}}",
|
|
205
|
+
convertedTitle: "Converted Table",
|
|
206
|
+
},
|
|
207
|
+
common: {
|
|
208
|
+
open: "Open",
|
|
209
|
+
retry: "Retry",
|
|
210
|
+
run: "Run",
|
|
211
|
+
},
|
|
212
|
+
imgOpts: {
|
|
213
|
+
defaultName: "Image {{index}}",
|
|
214
|
+
},
|
|
215
|
+
},
|
|
216
|
+
},
|
|
217
|
+
"zh-CN": {
|
|
218
|
+
translation: {
|
|
219
|
+
AddAgent: "添加智能体",
|
|
220
|
+
selectedAgentsCount: "已选择 {{count}} 个智能体",
|
|
221
|
+
addSelectedAgents: "添加选中",
|
|
222
|
+
clearSelection: "清空",
|
|
223
|
+
recommended: "推荐",
|
|
224
|
+
favoriteAgent: "收藏",
|
|
225
|
+
myAgent: "我的",
|
|
226
|
+
capabilityMatch: "能力匹配",
|
|
227
|
+
confirm: "确认",
|
|
228
|
+
cancel: "取消",
|
|
229
|
+
clickHere: "点击查看",
|
|
230
|
+
clearConversation: "清除对话记录",
|
|
231
|
+
compressionError: "图片压缩失败,将发送原始图片",
|
|
232
|
+
compressingImages: "正在压缩图片...",
|
|
233
|
+
copyContent: "复制内容",
|
|
234
|
+
copyDiagnostics: "复制诊断信息",
|
|
235
|
+
copyFailed: "复制失败",
|
|
236
|
+
copySuccess: "复制成功",
|
|
237
|
+
createDialog: "创建对话",
|
|
238
|
+
createDialogFromAI: "使用AI创建对话",
|
|
239
|
+
createRobot: "创建机器人",
|
|
240
|
+
customizeYourAI: "自定义AI助手",
|
|
241
|
+
AgentAddFailed: "添加智能体失败",
|
|
242
|
+
AgentAddedSuccess: "智能体添加成功",
|
|
243
|
+
MultipleAgentsAddedSuccess: "已添加 {{count}} 个智能体",
|
|
244
|
+
AgentRemoveFailed: "移除智能体失败",
|
|
245
|
+
AgentRemovedSuccess: "智能体移除成功",
|
|
246
|
+
Agents: "智能体",
|
|
247
|
+
delete: "删除",
|
|
248
|
+
deleteContentConfirmation: "您确定要删除此内容吗?此操作无法撤销。",
|
|
249
|
+
deleteContentTitle: '删除 "{{title}}"',
|
|
250
|
+
deleteFailed: "删除失败",
|
|
251
|
+
deleteMessage: "删除消息",
|
|
252
|
+
deleteSuccess: "删除成功",
|
|
253
|
+
confirmDelete: "再次点击确认删除",
|
|
254
|
+
dropToUpload: "将文件拖放到此处上传",
|
|
255
|
+
excelIsEmpty: "Excel 文件内容为空",
|
|
256
|
+
excelIsEmptyOrInvalid: "Excel 文件为空或格式无效",
|
|
257
|
+
excelParseError: "解析 Excel 文件失败",
|
|
258
|
+
FailedToLoadAgents: "加载智能体失败",
|
|
259
|
+
fileReadError: "读取文件内容失败",
|
|
260
|
+
First: "首个",
|
|
261
|
+
Info: "信息",
|
|
262
|
+
LoadingAgents: "正在加载智能体...",
|
|
263
|
+
messageInput: "消息输入框",
|
|
264
|
+
messageInputArea: "消息输入区,支持文件上传",
|
|
265
|
+
messageOrFileHere: "输入消息或上传文件...",
|
|
266
|
+
Mode: "模式",
|
|
267
|
+
ModeUpdateFailed: "模式更新失败",
|
|
268
|
+
ModeUpdatedSuccess: "模式更新成功",
|
|
269
|
+
newchat: "新对话",
|
|
270
|
+
NoAgents: "暂无可用智能体",
|
|
271
|
+
NoDescription: "暂无描述信息",
|
|
272
|
+
Orchestrated: "编排模式",
|
|
273
|
+
Parallel: "并行模式",
|
|
274
|
+
playAudio: "播放音频",
|
|
275
|
+
resend: "重新发送",
|
|
276
|
+
Retry: "重试",
|
|
277
|
+
saveContent: "保存内容",
|
|
278
|
+
saveFailed: "保存失败",
|
|
279
|
+
saveSuccess: "保存成功",
|
|
280
|
+
SelectAgentToAdd: "选择要添加到对话的智能体",
|
|
281
|
+
sendFail: "消息发送失败",
|
|
282
|
+
Sequential: "顺序模式",
|
|
283
|
+
ShowDialogConfigInfo: "查看对话设置与信息",
|
|
284
|
+
Tokens: "令牌数",
|
|
285
|
+
Unnamed: "未命名",
|
|
286
|
+
uploadFile: "上传文件",
|
|
287
|
+
useServerProxy: "使用中转服务",
|
|
288
|
+
viewDetails: "了解更多详情",
|
|
289
|
+
// 新增文件上传相关翻译
|
|
290
|
+
fileReadErrorMessage: "读取文件时出错,请重试。",
|
|
291
|
+
excelEmptyMessage: "Excel 文件为空或格式无效。",
|
|
292
|
+
excelNoDataMessage: "Excel 文件中没有数据。",
|
|
293
|
+
excelParseErrorMessage: "解析 Excel 文件时出错,请检查文件格式。",
|
|
294
|
+
excelUploadSuccess: "Excel 文件上传并转换成功!",
|
|
295
|
+
docxUploadSuccess: "DOCX 文件上传并转换成功!",
|
|
296
|
+
docxUploadError: "上传 DOCX 文件时出错,请检查文件格式。",
|
|
297
|
+
pdfUploadSuccess: "PDF 文件上传并转换成功!",
|
|
298
|
+
pdfUploadError: "上传 PDF 文件时出错,请检查文件格式。",
|
|
299
|
+
compressingImagesMessage: "正在压缩图片,请稍候...",
|
|
300
|
+
compressionErrorMessage: "图片压缩失败,将使用原始图片上传。",
|
|
301
|
+
sendFailMessage: "发送消息失败,请重试。",
|
|
302
|
+
// 新增余额不足相关翻译
|
|
303
|
+
insufficientBalanceDetailed:
|
|
304
|
+
"余额不足。当前模型:{{modelName}},单次最多消耗:{{pricePerMessage}}积分。余额:{{balance}}积分。",
|
|
305
|
+
insufficientBalance: "余额不足",
|
|
306
|
+
agentConfigMissing: "智能体配置缺失",
|
|
307
|
+
agentConfigLoadFailed: "智能体配置加载失败,请重试。",
|
|
308
|
+
modelPricingMissing: "模型定价信息缺失",
|
|
309
|
+
chooseAnotherModelContinue: "选择其他模型继续",
|
|
310
|
+
chooseAnotherModelDialogTitle: "选择其他模型",
|
|
311
|
+
useThisModelContinue: "用这个模型继续",
|
|
312
|
+
switchModelContinueSuccess: "已切换模型,并继续当前对话",
|
|
313
|
+
switchModelContinueFailed: "切换模型失败,请重试",
|
|
314
|
+
noAlternativeModels: "没有其他可用模型",
|
|
315
|
+
noAvailableAgentMessage: "没有可用的智能体消息",
|
|
316
|
+
creditsUnit: "积分",
|
|
317
|
+
recharge: "点此充值", // 新增单独的充值翻译
|
|
318
|
+
// 新增中止功能相关翻译
|
|
319
|
+
stopAllGeneration: "停止所有生成",
|
|
320
|
+
allMessagesAborted: "所有消息已中止",
|
|
321
|
+
// 新增发送按钮翻译
|
|
322
|
+
send: "发送",
|
|
323
|
+
// Guide / queue / loop 相关
|
|
324
|
+
guideFromMessage: "引用消息",
|
|
325
|
+
guideSeeded: "已填入输入框",
|
|
326
|
+
guideEmptyContent: "消息没有可引用的文本",
|
|
327
|
+
editMessage: "编辑消息",
|
|
328
|
+
editSeeded: "已进入编辑模式",
|
|
329
|
+
editEmptyContent: "消息没有可编辑的文本",
|
|
330
|
+
editingMessageNotice: "正在编辑历史消息,发送后将丢弃其后的消息",
|
|
331
|
+
cancelEditingMessage: "取消编辑消息",
|
|
332
|
+
branchMessage: "分支",
|
|
333
|
+
branchCreated: "已创建分支对话",
|
|
334
|
+
branchFailed: "创建分支失败",
|
|
335
|
+
stopBeforeDelete: "请等待生成停止后再删除",
|
|
336
|
+
messageQueued: "消息已排队,将在当前轮次结束后发送",
|
|
337
|
+
cannotSendFileDuringLoop: "Agent 运行中,含附件消息请等待完成后再发送",
|
|
338
|
+
MaxContext: "最大上下文",
|
|
339
|
+
Compression: "上下文压缩",
|
|
340
|
+
CompressionTimes: "{{count}} 次",
|
|
341
|
+
inheritedContextNotice: "此对话继承自上一段对话的上下文",
|
|
342
|
+
inheritedContextNoticeWithTitle: '此对话继承自“{{title}}”的上下文',
|
|
343
|
+
openSourceDialog: "查看原对话",
|
|
344
|
+
privateDialogGuestTitle: "这是私有对话链接",
|
|
345
|
+
privateDialogGuestHint:
|
|
346
|
+
"当前 /dialog-… 路由只对登录且有权限的账号可见。若要把这段对话发给别人,请改用 /share/<token> 链接。",
|
|
347
|
+
contextRetention: {
|
|
348
|
+
title: "上下文保留程度",
|
|
349
|
+
description: "控制 AI 对话中保留的历史上下文量。值越高保留越多历史,值越低留给新内容的空间越大。",
|
|
350
|
+
},
|
|
351
|
+
thinkingProcess: "思考过程",
|
|
352
|
+
thinkingContent: "思考内容",
|
|
353
|
+
answerContent: "回答",
|
|
354
|
+
deleteMessageTitle: "删除消息",
|
|
355
|
+
delConfirm: "删除此工具输出?",
|
|
356
|
+
bash: {
|
|
357
|
+
blockedTitle: "危险命令已被拦截",
|
|
358
|
+
blockedDesc: "该命令被检测为高危操作,默认未执行。如确有必要,请确认风险后继续。",
|
|
359
|
+
runUnsafe: "仍要执行(unsafe)",
|
|
360
|
+
exitCode: "退出码: {{code}}",
|
|
361
|
+
noOutput: "(无输出)",
|
|
362
|
+
},
|
|
363
|
+
codeEdit: {
|
|
364
|
+
viewFinal: "最终结果",
|
|
365
|
+
viewDiff: "差异预览",
|
|
366
|
+
conflictTitle: "写入冲突:文件已存在",
|
|
367
|
+
conflictMsg: "目标文件已存在,且本次调用未允许覆盖,因此没有进行写入。",
|
|
368
|
+
overwrite: "覆盖写入",
|
|
369
|
+
confirmOverwritePrompt: "刚才尝试写入文件 {{path}} 时发现文件已存在,且未覆盖。请确认覆盖该文件,并使用你刚才生成的最新内容。",
|
|
370
|
+
},
|
|
371
|
+
tool: {
|
|
372
|
+
failed: "执行失败",
|
|
373
|
+
executing: "正在执行...",
|
|
374
|
+
requiresApproval: "等待确认",
|
|
375
|
+
resumePrompt: "请基于刚才工具执行的结果继续完成你之前的计划;如果任务已经完成,请用简洁的方式总结结果。",
|
|
376
|
+
},
|
|
377
|
+
toolNames: {
|
|
378
|
+
tool: "工具",
|
|
379
|
+
exa_search: "搜索",
|
|
380
|
+
read_file: "读取文件",
|
|
381
|
+
readFile: "读取文件",
|
|
382
|
+
searchWorkspace: "搜索工作区",
|
|
383
|
+
readWorkspaceFile: "读取文件",
|
|
384
|
+
writeWorkspaceFile: "写入文件",
|
|
385
|
+
replaceWorkspaceText: "替换文本",
|
|
386
|
+
startPreview: "启动预览",
|
|
387
|
+
getPreviewStatus: "预览状态",
|
|
388
|
+
stopPreview: "停止预览",
|
|
389
|
+
releasePreview: "释放预览",
|
|
390
|
+
captureVisualState: "截图检查",
|
|
391
|
+
execShell: "命令行",
|
|
392
|
+
},
|
|
393
|
+
gemini: {
|
|
394
|
+
title: "图像生成",
|
|
395
|
+
count: "生成了 {{count}} 张图片",
|
|
396
|
+
},
|
|
397
|
+
page: {
|
|
398
|
+
untitled: "未命名页面",
|
|
399
|
+
},
|
|
400
|
+
table: {
|
|
401
|
+
untitled: "未命名表格",
|
|
402
|
+
export: "导出",
|
|
403
|
+
convertToDataTable: "转为数据表",
|
|
404
|
+
converting: "转换中...",
|
|
405
|
+
convertSuccess: "已转换为数据表",
|
|
406
|
+
convertFailed: "转换为数据表失败",
|
|
407
|
+
defaultColumnLabel: "列 {{index}}",
|
|
408
|
+
convertedTitle: "转换后的表格",
|
|
409
|
+
},
|
|
410
|
+
common: {
|
|
411
|
+
open: "打开",
|
|
412
|
+
retry: "重试",
|
|
413
|
+
run: "运行",
|
|
414
|
+
},
|
|
415
|
+
imgOpts: {
|
|
416
|
+
defaultName: "图片 {{index}}",
|
|
417
|
+
},
|
|
418
|
+
},
|
|
419
|
+
},
|
|
420
|
+
"zh-Hant": {
|
|
421
|
+
translation: {
|
|
422
|
+
AddAgent: "添加智能體",
|
|
423
|
+
selectedAgentsCount: "已選擇 {{count}} 個智能體",
|
|
424
|
+
addSelectedAgents: "添加選中",
|
|
425
|
+
clearSelection: "清空",
|
|
426
|
+
recommended: "推薦",
|
|
427
|
+
favoriteAgent: "收藏",
|
|
428
|
+
myAgent: "我的",
|
|
429
|
+
capabilityMatch: "能力匹配",
|
|
430
|
+
confirm: "確認",
|
|
431
|
+
cancel: "取消",
|
|
432
|
+
clickHere: "點擊查看",
|
|
433
|
+
clearConversation: "清除對話記錄",
|
|
434
|
+
compressionError: "圖片壓縮失敗,將發送原始圖片",
|
|
435
|
+
compressingImages: "正在壓縮圖片...",
|
|
436
|
+
copyContent: "複製內容",
|
|
437
|
+
copyDiagnostics: "複製診斷資訊",
|
|
438
|
+
copyFailed: "複製失敗",
|
|
439
|
+
copySuccess: "複製成功",
|
|
440
|
+
createDialog: "創建對話",
|
|
441
|
+
createDialogFromAI: "使用AI創建對話",
|
|
442
|
+
createRobot: "創建機器人",
|
|
443
|
+
customizeYourAI: "自定義AI助手",
|
|
444
|
+
AgentAddFailed: "添加智能體失敗",
|
|
445
|
+
AgentAddedSuccess: "智能體添加成功",
|
|
446
|
+
MultipleAgentsAddedSuccess: "已添加 {{count}} 個智能體",
|
|
447
|
+
AgentRemoveFailed: "移除智能體失敗",
|
|
448
|
+
AgentRemovedSuccess: "智能體移除成功",
|
|
449
|
+
Agents: "智能體",
|
|
450
|
+
delete: "刪除",
|
|
451
|
+
deleteContentConfirmation: "您確定要刪除此內容嗎?此操作無法撤銷。",
|
|
452
|
+
deleteContentTitle: '刪除 "{{title}}"',
|
|
453
|
+
deleteFailed: "刪除失敗",
|
|
454
|
+
deleteMessage: "刪除訊息",
|
|
455
|
+
deleteSuccess: "刪除成功",
|
|
456
|
+
confirmDelete: "再次點擊確認刪除",
|
|
457
|
+
dropToUpload: "將檔案拖放到此處上傳",
|
|
458
|
+
excelIsEmpty: "Excel 檔案內容為空",
|
|
459
|
+
excelIsEmptyOrInvalid: "Excel 檔案為空或格式無效",
|
|
460
|
+
excelParseError: "解析 Excel 檔案失敗",
|
|
461
|
+
FailedToLoadAgents: "載入智能體失敗",
|
|
462
|
+
fileReadError: "讀取檔案內容失敗",
|
|
463
|
+
First: "首個",
|
|
464
|
+
Info: "資訊",
|
|
465
|
+
LoadingAgents: "正在載入智能體...",
|
|
466
|
+
messageInput: "訊息輸入框",
|
|
467
|
+
messageInputArea: "訊息輸入區,支持檔案上傳",
|
|
468
|
+
messageOrFileHere: "輸入訊息或上傳檔案...",
|
|
469
|
+
Mode: "模式",
|
|
470
|
+
ModeUpdateFailed: "模式更新失敗",
|
|
471
|
+
ModeUpdatedSuccess: "模式更新成功",
|
|
472
|
+
newchat: "新對話",
|
|
473
|
+
NoAgents: "暫無可用智能體",
|
|
474
|
+
NoDescription: "暫無描述資訊",
|
|
475
|
+
Orchestrated: "編排模式",
|
|
476
|
+
Parallel: "並行模式",
|
|
477
|
+
playAudio: "播放音頻",
|
|
478
|
+
resend: "重新發送",
|
|
479
|
+
Retry: "重試",
|
|
480
|
+
saveContent: "儲存內容",
|
|
481
|
+
saveFailed: "儲存失敗",
|
|
482
|
+
saveSuccess: "儲存成功",
|
|
483
|
+
SelectAgentToAdd: "選擇要添加到對話的智能體",
|
|
484
|
+
sendFail: "訊息發送失敗",
|
|
485
|
+
Sequential: "順序模式",
|
|
486
|
+
ShowDialogConfigInfo: "查看對話設定與資訊",
|
|
487
|
+
Tokens: "令牌數",
|
|
488
|
+
Unnamed: "未命名",
|
|
489
|
+
uploadFile: "上傳檔案",
|
|
490
|
+
useServerProxy: "使用中轉服務",
|
|
491
|
+
viewDetails: "了解更多詳情",
|
|
492
|
+
// 新增文件上传相关翻译
|
|
493
|
+
fileReadErrorMessage: "讀取檔案時出錯,請重試。",
|
|
494
|
+
excelEmptyMessage: "Excel 檔案為空或格式無效。",
|
|
495
|
+
excelNoDataMessage: "Excel 檔案中沒有數據。",
|
|
496
|
+
excelParseErrorMessage: "解析 Excel 檔案時出錯,請檢查檔案格式。",
|
|
497
|
+
excelUploadSuccess: "Excel 檔案上傳並轉換成功!",
|
|
498
|
+
docxUploadSuccess: "DOCX 檔案上傳並轉換成功!",
|
|
499
|
+
docxUploadError: "上傳 DOCX 檔案時出錯,請檢查檔案格式。",
|
|
500
|
+
pdfUploadSuccess: "PDF 檔案上傳並轉換成功!",
|
|
501
|
+
pdfUploadError: "上傳 PDF 檔案時出錯,請檢查檔案格式。",
|
|
502
|
+
compressingImagesMessage: "正在壓縮圖片,請稍候...",
|
|
503
|
+
compressionErrorMessage: "圖片壓縮失敗,將使用原始圖片上傳。",
|
|
504
|
+
sendFailMessage: "發送訊息失敗,請重試。",
|
|
505
|
+
// 新增余额不足相关翻译
|
|
506
|
+
insufficientBalanceDetailed:
|
|
507
|
+
"餘額不足。當前模型:{{modelName}},單次最多消耗:{{pricePerMessage}}積分。餘額:{{balance}}積分。",
|
|
508
|
+
insufficientBalance: "餘額不足",
|
|
509
|
+
agentConfigMissing: "智能體配置缺失",
|
|
510
|
+
agentConfigLoadFailed: "智能體配置載入失敗,請再試一次。",
|
|
511
|
+
modelPricingMissing: "模型定價信息缺失",
|
|
512
|
+
chooseAnotherModelContinue: "選擇其他模型繼續",
|
|
513
|
+
chooseAnotherModelDialogTitle: "選擇其他模型",
|
|
514
|
+
useThisModelContinue: "用這個模型繼續",
|
|
515
|
+
switchModelContinueSuccess: "已切換模型,並繼續當前對話",
|
|
516
|
+
switchModelContinueFailed: "切換模型失敗,請重試",
|
|
517
|
+
noAlternativeModels: "沒有其他可用模型",
|
|
518
|
+
noAvailableAgentMessage: "沒有可用的智能體消息",
|
|
519
|
+
creditsUnit: "積分",
|
|
520
|
+
recharge: "點此充值", // 新增单独的充值翻译
|
|
521
|
+
// 新增中止功能相关翻译
|
|
522
|
+
stopAllGeneration: "停止所有生成",
|
|
523
|
+
allMessagesAborted: "所有訊息已中止",
|
|
524
|
+
// 新增发送按钮翻译
|
|
525
|
+
send: "發送",
|
|
526
|
+
// Guide / queue / loop 相关
|
|
527
|
+
guideFromMessage: "引用訊息",
|
|
528
|
+
guideSeeded: "已填入輸入框",
|
|
529
|
+
guideEmptyContent: "訊息沒有可引用的文本",
|
|
530
|
+
stopBeforeDelete: "請等待生成停止後再刪除",
|
|
531
|
+
messageQueued: "訊息已排隊,將在當前輪次結束後發送",
|
|
532
|
+
cannotSendFileDuringLoop: "Agent 運行中,含附件訊息請等待完成後再發送",
|
|
533
|
+
MaxContext: "最大上下文",
|
|
534
|
+
Compression: "上下文壓縮",
|
|
535
|
+
CompressionTimes: "{{count}} 次",
|
|
536
|
+
privateDialogGuestTitle: "這是私有對話連結",
|
|
537
|
+
privateDialogGuestHint:
|
|
538
|
+
"目前 /dialog-… 路由只對已登入且有權限的帳號可見。若要把這段對話分享給別人,請改用 /share/<token> 連結。",
|
|
539
|
+
contextRetention: {
|
|
540
|
+
title: "上下文保留程度",
|
|
541
|
+
description: "控制 AI 對話中保留的歷史上下文量。值越高保留越多歷史,值越低留給新內容的空間越大。",
|
|
542
|
+
},
|
|
543
|
+
thinkingProcess: "思考過程",
|
|
544
|
+
thinkingContent: "思考內容",
|
|
545
|
+
answerContent: "回答",
|
|
546
|
+
deleteMessageTitle: "刪除訊息",
|
|
547
|
+
delConfirm: "刪除此工具輸出?",
|
|
548
|
+
bash: {
|
|
549
|
+
blockedTitle: "危險命令已被攔截",
|
|
550
|
+
blockedDesc: "該命令被檢測為高危操作,預設未執行。如確有必要,請確認風險後繼續。",
|
|
551
|
+
runUnsafe: "仍要執行(unsafe)",
|
|
552
|
+
exitCode: "退出碼: {{code}}",
|
|
553
|
+
noOutput: "(無輸出)",
|
|
554
|
+
},
|
|
555
|
+
codeEdit: {
|
|
556
|
+
viewFinal: "最終結果",
|
|
557
|
+
viewDiff: "差異預覽",
|
|
558
|
+
conflictTitle: "寫入衝突:檔案已存在",
|
|
559
|
+
conflictMsg: "目標檔案已存在,且本次調用未允許覆蓋,因此沒有進行寫入。",
|
|
560
|
+
overwrite: "覆蓋寫入",
|
|
561
|
+
confirmOverwritePrompt: "剛才嘗試寫入檔案 {{path}} 時發現檔案已存在,且未覆蓋。請確認覆蓋該檔案,並使用你剛才生成的最新內容。",
|
|
562
|
+
},
|
|
563
|
+
tool: {
|
|
564
|
+
failed: "執行失敗",
|
|
565
|
+
executing: "正在執行...",
|
|
566
|
+
requiresApproval: "等待確認",
|
|
567
|
+
resumePrompt: "請基於剛才工具執行的結果繼續完成你之前的計劃;如果任務已經完成,請用簡潔的方式總結結果。",
|
|
568
|
+
},
|
|
569
|
+
toolNames: {
|
|
570
|
+
tool: "工具",
|
|
571
|
+
exa_search: "搜尋",
|
|
572
|
+
read_file: "讀取檔案",
|
|
573
|
+
readFile: "讀取檔案",
|
|
574
|
+
searchWorkspace: "搜尋工作區",
|
|
575
|
+
readWorkspaceFile: "讀取檔案",
|
|
576
|
+
writeWorkspaceFile: "寫入檔案",
|
|
577
|
+
replaceWorkspaceText: "替換文字",
|
|
578
|
+
startPreview: "啟動預覽",
|
|
579
|
+
getPreviewStatus: "預覽狀態",
|
|
580
|
+
stopPreview: "停止預覽",
|
|
581
|
+
releasePreview: "釋放預覽",
|
|
582
|
+
captureVisualState: "截圖檢查",
|
|
583
|
+
execShell: "命令列",
|
|
584
|
+
},
|
|
585
|
+
gemini: {
|
|
586
|
+
title: "圖像生成",
|
|
587
|
+
count: "生成了 {{count}} 張圖片",
|
|
588
|
+
},
|
|
589
|
+
page: {
|
|
590
|
+
untitled: "未命名頁面",
|
|
591
|
+
},
|
|
592
|
+
table: {
|
|
593
|
+
untitled: "未命名表格",
|
|
594
|
+
export: "匯出",
|
|
595
|
+
convertToDataTable: "轉為資料表",
|
|
596
|
+
converting: "轉換中...",
|
|
597
|
+
convertSuccess: "已轉換為資料表",
|
|
598
|
+
convertFailed: "轉換為資料表失敗",
|
|
599
|
+
defaultColumnLabel: "欄 {{index}}",
|
|
600
|
+
convertedTitle: "轉換後的表格",
|
|
601
|
+
},
|
|
602
|
+
common: {
|
|
603
|
+
open: "打開",
|
|
604
|
+
retry: "重試",
|
|
605
|
+
run: "運行",
|
|
606
|
+
},
|
|
607
|
+
imgOpts: {
|
|
608
|
+
defaultName: "圖片 {{index}}",
|
|
609
|
+
},
|
|
610
|
+
},
|
|
611
|
+
},
|
|
612
|
+
ja: {
|
|
613
|
+
translation: {
|
|
614
|
+
AddAgent: "エージェントを追加",
|
|
615
|
+
selectedAgentsCount: "{{count}} 件のエージェントを選択中",
|
|
616
|
+
addSelectedAgents: "選択項目を追加",
|
|
617
|
+
clearSelection: "クリア",
|
|
618
|
+
recommended: "おすすめ",
|
|
619
|
+
favoriteAgent: "お気に入り",
|
|
620
|
+
myAgent: "自分の",
|
|
621
|
+
capabilityMatch: "機能一致",
|
|
622
|
+
confirm: "確認",
|
|
623
|
+
cancel: "キャンセル",
|
|
624
|
+
clickHere: "こちらをクリック",
|
|
625
|
+
clearConversation: "会話をクリア",
|
|
626
|
+
compressionError: "画像圧縮に失敗しました。元の画像を送信します。",
|
|
627
|
+
compressingImages: "画像を圧縮中...",
|
|
628
|
+
copyContent: "コンテンツをコピー",
|
|
629
|
+
copyDiagnostics: "診断情報をコピー",
|
|
630
|
+
copyFailed: "コピーに失敗しました",
|
|
631
|
+
copySuccess: "コピーに成功しました",
|
|
632
|
+
createDialog: "対話を作成",
|
|
633
|
+
createDialogFromAI: "AIで対話を作成",
|
|
634
|
+
createRobot: "ロボットを作成",
|
|
635
|
+
customizeYourAI: "AIをカスタマイズ",
|
|
636
|
+
AgentAddFailed: "エージェントの追加に失敗しました",
|
|
637
|
+
AgentAddedSuccess: "エージェントを追加しました",
|
|
638
|
+
MultipleAgentsAddedSuccess: "{{count}} 件のエージェントを追加しました",
|
|
639
|
+
AgentRemoveFailed: "エージェントの削除に失敗しました",
|
|
640
|
+
AgentRemovedSuccess: "エージェントを削除しました",
|
|
641
|
+
Agents: "エージェント",
|
|
642
|
+
delete: "削除",
|
|
643
|
+
deleteContentConfirmation:
|
|
644
|
+
"このコンテンツを削除しますか?この操作は元に戻せません。",
|
|
645
|
+
deleteContentTitle: "「{{title}}」を削除",
|
|
646
|
+
deleteFailed: "削除に失敗しました",
|
|
647
|
+
deleteMessage: "メッセージを削除",
|
|
648
|
+
deleteSuccess: "削除に成功しました",
|
|
649
|
+
confirmDelete: "もう一度クリックして削除を確認",
|
|
650
|
+
dropToUpload: "ファイルをここにドロップしてアップロード",
|
|
651
|
+
excelIsEmpty: "Excelファイルが空です",
|
|
652
|
+
excelIsEmptyOrInvalid: "Excelファイルが空か無効です",
|
|
653
|
+
excelParseError: "Excelファイルの解析に失敗しました",
|
|
654
|
+
FailedToLoadAgents: "エージェントの読み込みに失敗しました",
|
|
655
|
+
fileReadError: "ファイルの読み込みに失敗しました",
|
|
656
|
+
First: "最初",
|
|
657
|
+
Info: "情報",
|
|
658
|
+
LoadingAgents: "エージェントを読み込み中...",
|
|
659
|
+
messageInput: "メッセージ入力欄",
|
|
660
|
+
messageInputArea: "ファイルアップロード対応のメッセージ入力エリア",
|
|
661
|
+
messageOrFileHere: "メッセージを入力またはファイルをアップロード...",
|
|
662
|
+
Mode: "モード",
|
|
663
|
+
ModeUpdateFailed: "モードの更新に失敗しました",
|
|
664
|
+
ModeUpdatedSuccess: "モードを更新しました",
|
|
665
|
+
newchat: "新しいチャット",
|
|
666
|
+
NoAgents: "エージェントはまだありません",
|
|
667
|
+
NoDescription: "説明がありません",
|
|
668
|
+
Orchestrated: "編成モード",
|
|
669
|
+
Parallel: "並行モード",
|
|
670
|
+
playAudio: "音声を再生",
|
|
671
|
+
resend: "再送信",
|
|
672
|
+
Retry: "再試行",
|
|
673
|
+
saveContent: "コンテンツを保存",
|
|
674
|
+
saveFailed: "保存に失敗しました",
|
|
675
|
+
saveSuccess: "保存に成功しました",
|
|
676
|
+
SelectAgentToAdd: "対話に追加するエージェントを選択",
|
|
677
|
+
sendFail: "メッセージの送信に失敗しました",
|
|
678
|
+
Sequential: "順次モード",
|
|
679
|
+
ShowDialogConfigInfo: "対話の設定と情報を表示",
|
|
680
|
+
Tokens: "トークン数",
|
|
681
|
+
Unnamed: "名前なし",
|
|
682
|
+
uploadFile: "ファイルをアップロード",
|
|
683
|
+
useServerProxy: "中継サービスを使用",
|
|
684
|
+
viewDetails: "詳細を確認",
|
|
685
|
+
// 新增文件上传相关翻译
|
|
686
|
+
fileReadErrorMessage:
|
|
687
|
+
"ファイルの読み込みに失敗しました。もう一度お試しください。",
|
|
688
|
+
excelEmptyMessage: "Excelファイルが空か無効です。",
|
|
689
|
+
excelNoDataMessage: "Excelファイルにデータが見つかりません。",
|
|
690
|
+
excelParseErrorMessage:
|
|
691
|
+
"Excelファイルの解析に失敗しました。フォーマットを確認してください。",
|
|
692
|
+
excelUploadSuccess: "Excelファイルのアップロードと変換が成功しました!",
|
|
693
|
+
docxUploadSuccess: "DOCXファイルのアップロードと変換が成功しました!",
|
|
694
|
+
docxUploadError:
|
|
695
|
+
"DOCXファイルのアップロードに失敗しました。フォーマットを確認してください。",
|
|
696
|
+
pdfUploadSuccess: "PDFファイルのアップロードと変換が成功しました!",
|
|
697
|
+
pdfUploadError:
|
|
698
|
+
"PDFファイルのアップロードに失敗しました。フォーマットを確認してください。",
|
|
699
|
+
compressingImagesMessage: "画像を圧縮中です。お待ちください...",
|
|
700
|
+
compressionErrorMessage: "画像圧縮に失敗しました。元の画像を送信します。",
|
|
701
|
+
sendFailMessage:
|
|
702
|
+
"メッセージの送信に失敗しました。もう一度お試しください。",
|
|
703
|
+
// 新增余额不足相关翻译
|
|
704
|
+
insufficientBalanceDetailed:
|
|
705
|
+
"残高不足。モデル:{{modelName}}、1回の最大コスト:{{pricePerMessage}}ポイント。残高:{{balance}}ポイント。",
|
|
706
|
+
insufficientBalance: "残高不足",
|
|
707
|
+
agentConfigMissing: "エージェントの設定が見つかりません",
|
|
708
|
+
agentConfigLoadFailed:
|
|
709
|
+
"エージェント設定の読み込みに失敗しました。再試行してください。",
|
|
710
|
+
modelPricingMissing: "モデルの価格情報が見つかりません",
|
|
711
|
+
chooseAnotherModelContinue: "別のモデルを選んで続ける",
|
|
712
|
+
chooseAnotherModelDialogTitle: "別のモデルを選択",
|
|
713
|
+
useThisModelContinue: "このモデルで続ける",
|
|
714
|
+
switchModelContinueSuccess: "モデルを切り替えて現在の会話を続けました",
|
|
715
|
+
switchModelContinueFailed: "モデルの切り替えに失敗しました。再試行してください。",
|
|
716
|
+
noAlternativeModels: "利用可能な他のモデルがありません",
|
|
717
|
+
noAvailableAgentMessage: "利用可能なエージェントメッセージがありません",
|
|
718
|
+
creditsUnit: "ポイント",
|
|
719
|
+
recharge: "クリックしてチャージ", // 新增单独的充值翻译
|
|
720
|
+
// 新增中止功能相关翻译
|
|
721
|
+
stopAllGeneration: "すべての生成を停止",
|
|
722
|
+
allMessagesAborted: "すべてのメッセージが中止されました",
|
|
723
|
+
// 新增发送按钮翻译
|
|
724
|
+
send: "送信",
|
|
725
|
+
// Guide / queue / loop 関連新規訳
|
|
726
|
+
guideFromMessage: "メッセージを引用",
|
|
727
|
+
guideSeeded: "入力欄に挿入しました",
|
|
728
|
+
guideEmptyContent: "このメッセージに引用できるテキストがありません",
|
|
729
|
+
stopBeforeDelete: "生成が停止するまでお待ちください",
|
|
730
|
+
messageQueued: "メッセージをキューに入れました。現在のターン後に送信されます",
|
|
731
|
+
cannotSendFileDuringLoop: "Agent 実行中です。添付メッセージは完了後にお送りください",
|
|
732
|
+
MaxContext: "最大コンテキスト",
|
|
733
|
+
Compression: "コンテキスト圧縮",
|
|
734
|
+
CompressionTimes: "{{count}} 回",
|
|
735
|
+
privateDialogGuestTitle: "これは非公開ダイアログリンクです",
|
|
736
|
+
privateDialogGuestHint:
|
|
737
|
+
"/dialog-… ルートは、このダイアログに権限のあるログイン済みユーザーだけが開けます。他の人に共有したい場合は、/share/<token> リンクを使ってください。",
|
|
738
|
+
contextRetention: {
|
|
739
|
+
title: "コンテキスト保持度",
|
|
740
|
+
description: "AIの会話で保持される履歴コンテキストの量を制御します。値が高いほどより多くの履歴が保持され、低いほど新しいコンテンツのためのスペースが確保されます。",
|
|
741
|
+
},
|
|
742
|
+
thinkingProcess: "思考プロセス",
|
|
743
|
+
thinkingContent: "思考内容",
|
|
744
|
+
answerContent: "回答",
|
|
745
|
+
// Mobile Upload
|
|
746
|
+
imagePickerError: "画像選択エラー: {{error}}",
|
|
747
|
+
shareAttachmentWarning: "共有コマンドでは添付ファイルは無視されます",
|
|
748
|
+
uploading: "アップロード中...",
|
|
749
|
+
uploadSuccess: "アップロード成功",
|
|
750
|
+
uploadFailed: "アップロード失敗",
|
|
751
|
+
deleteMessageTitle: "メッセージを削除",
|
|
752
|
+
delConfirm: "この工具の出力を削除しますか?",
|
|
753
|
+
bash: {
|
|
754
|
+
blockedTitle: "危険なコマンドをブロックしました",
|
|
755
|
+
blockedDesc: "このコマンドは高リスクとして検出され、実行されませんでした。必要に応じてリスクを確認し、続行してください。",
|
|
756
|
+
runUnsafe: "そのまま実行(アンセーフ)",
|
|
757
|
+
exitCode: "終了コード: {{code}}",
|
|
758
|
+
noOutput: "(出力なし)",
|
|
759
|
+
},
|
|
760
|
+
codeEdit: {
|
|
761
|
+
viewFinal: "最終結果",
|
|
762
|
+
viewDiff: "差分プレビュー",
|
|
763
|
+
conflictTitle: "書き込み競合:ファイルが既に存在します",
|
|
764
|
+
conflictMsg: "対象ファイルが既に存在し、上書きが許可されていないため、変更は行われませんでした。",
|
|
765
|
+
overwrite: "上書き",
|
|
766
|
+
confirmOverwritePrompt: "{{path}}への書き込み試行は、ファイルが存在し上書きが許可されていなかったため失敗しました。最新のコンテンツで上書きするか確認してください。",
|
|
767
|
+
},
|
|
768
|
+
tool: {
|
|
769
|
+
failed: "実行失敗",
|
|
770
|
+
executing: "実行中...",
|
|
771
|
+
requiresApproval: "承認が必要",
|
|
772
|
+
resumePrompt: "ツールの実行結果に基づいて、前の計画を続行してください。タスクが完了した場合は、簡潔にまとめてください。",
|
|
773
|
+
},
|
|
774
|
+
toolNames: {
|
|
775
|
+
tool: "ツール",
|
|
776
|
+
exa_search: "検索",
|
|
777
|
+
read_file: "ファイル読み取り",
|
|
778
|
+
readFile: "ファイル読み取り",
|
|
779
|
+
searchWorkspace: "ワークスペース検索",
|
|
780
|
+
readWorkspaceFile: "ファイル読み取り",
|
|
781
|
+
writeWorkspaceFile: "ファイル書き込み",
|
|
782
|
+
replaceWorkspaceText: "テキスト置換",
|
|
783
|
+
startPreview: "プレビュー開始",
|
|
784
|
+
getPreviewStatus: "プレビュー状態",
|
|
785
|
+
stopPreview: "プレビュー停止",
|
|
786
|
+
releasePreview: "プレビュー解放",
|
|
787
|
+
captureVisualState: "スクリーンショット確認",
|
|
788
|
+
execShell: "シェル",
|
|
789
|
+
},
|
|
790
|
+
gemini: {
|
|
791
|
+
title: "画像生成",
|
|
792
|
+
count: "{{count}} 枚の画像を生成しました",
|
|
793
|
+
},
|
|
794
|
+
page: {
|
|
795
|
+
untitled: "無題のページ",
|
|
796
|
+
},
|
|
797
|
+
table: {
|
|
798
|
+
untitled: "無題のテーブル",
|
|
799
|
+
export: "エクスポート",
|
|
800
|
+
convertToDataTable: "データテーブルに変換",
|
|
801
|
+
converting: "変換中...",
|
|
802
|
+
convertSuccess: "データテーブルに変換しました",
|
|
803
|
+
convertFailed: "データテーブルへの変換に失敗しました",
|
|
804
|
+
defaultColumnLabel: "列 {{index}}",
|
|
805
|
+
convertedTitle: "変換済みテーブル",
|
|
806
|
+
},
|
|
807
|
+
common: {
|
|
808
|
+
open: "開く",
|
|
809
|
+
retry: "再試行",
|
|
810
|
+
run: "実行",
|
|
811
|
+
},
|
|
812
|
+
imgOpts: {
|
|
813
|
+
defaultName: "画像 {{index}}",
|
|
814
|
+
},
|
|
815
|
+
},
|
|
816
|
+
},
|
|
817
|
+
};
|