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,93 @@
|
|
|
1
|
+
// ai/llm/getModelContextWindow.ts
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* 获取指定模型的 Context Window 大小。
|
|
5
|
+
*
|
|
6
|
+
* 复用 ALL_MODELS 数据源,保持与模型选择器的一致性。
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
import { ALL_MODELS, type ModelWithProvider } from "./models";
|
|
10
|
+
|
|
11
|
+
// 默认 Context Window(用于未知模型)
|
|
12
|
+
const DEFAULT_CONTEXT_WINDOW = 128000;
|
|
13
|
+
const QWEN_3_6_CONTEXT_WINDOW = 262144;
|
|
14
|
+
|
|
15
|
+
// 缓存模型映射表
|
|
16
|
+
let modelMap: Map<string, ModelWithProvider> | null = null;
|
|
17
|
+
|
|
18
|
+
const getModelMap = (): Map<string, ModelWithProvider> => {
|
|
19
|
+
if (!modelMap) {
|
|
20
|
+
modelMap = new Map();
|
|
21
|
+
for (const model of ALL_MODELS) {
|
|
22
|
+
modelMap.set(model.name, model);
|
|
23
|
+
// 也按 displayName 索引(如果有)
|
|
24
|
+
if (model.displayName) {
|
|
25
|
+
modelMap.set(model.displayName.toLowerCase(), model);
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
return modelMap;
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
* 根据模型名称获取 Context Window 大小
|
|
34
|
+
* @param modelName 模型名称(如 "gpt-4o", "claude-3-5-sonnet")
|
|
35
|
+
* @returns Context Window 大小(tokens)
|
|
36
|
+
*/
|
|
37
|
+
export const getModelContextWindow = (modelName: string): number => {
|
|
38
|
+
if (!modelName) return DEFAULT_CONTEXT_WINDOW;
|
|
39
|
+
|
|
40
|
+
const normalizedName = modelName.toLowerCase();
|
|
41
|
+
const map = getModelMap();
|
|
42
|
+
const model =
|
|
43
|
+
map.get(modelName) ||
|
|
44
|
+
map.get(normalizedName);
|
|
45
|
+
|
|
46
|
+
if (model?.contextWindow) {
|
|
47
|
+
return typeof model.contextWindow === "number"
|
|
48
|
+
? model.contextWindow
|
|
49
|
+
: DEFAULT_CONTEXT_WINDOW;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
if (
|
|
53
|
+
normalizedName.includes("qwen3.6") ||
|
|
54
|
+
normalizedName.includes("qwen3p6")
|
|
55
|
+
) {
|
|
56
|
+
return QWEN_3_6_CONTEXT_WINDOW;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
return DEFAULT_CONTEXT_WINDOW;
|
|
60
|
+
};
|
|
61
|
+
|
|
62
|
+
/**
|
|
63
|
+
* 获取模型的完整信息
|
|
64
|
+
*/
|
|
65
|
+
export const getModelInfo = (modelName: string): ModelWithProvider | null => {
|
|
66
|
+
if (!modelName) return null;
|
|
67
|
+
|
|
68
|
+
const map = getModelMap();
|
|
69
|
+
return (
|
|
70
|
+
map.get(modelName) ||
|
|
71
|
+
map.get(modelName.toLowerCase()) ||
|
|
72
|
+
null
|
|
73
|
+
);
|
|
74
|
+
};
|
|
75
|
+
|
|
76
|
+
/**
|
|
77
|
+
* 获取模型的 Max Output Tokens
|
|
78
|
+
*/
|
|
79
|
+
export const getModelMaxOutputTokens = (modelName: string): number => {
|
|
80
|
+
const model = getModelInfo(modelName);
|
|
81
|
+
if (model?.maxOutputTokens && typeof model.maxOutputTokens === "number") {
|
|
82
|
+
return model.maxOutputTokens;
|
|
83
|
+
}
|
|
84
|
+
return 4096; // 保守默认值
|
|
85
|
+
};
|
|
86
|
+
|
|
87
|
+
/**
|
|
88
|
+
* 获取模型是否支持视觉
|
|
89
|
+
*/
|
|
90
|
+
export const getModelHasVision = (modelName: string): boolean => {
|
|
91
|
+
const model = getModelInfo(modelName);
|
|
92
|
+
return model?.hasVision ?? false;
|
|
93
|
+
};
|
|
@@ -0,0 +1,252 @@
|
|
|
1
|
+
import type { Agent } from "../../app/types";
|
|
2
|
+
import { getModelConfig } from "../llm/providers";
|
|
3
|
+
import {
|
|
4
|
+
isOpenAIFlexPricedModel,
|
|
5
|
+
resolveOpenAIServiceTier,
|
|
6
|
+
} from "../../integrations/openai/flexTier";
|
|
7
|
+
import { getPublicImageAgentDefaultProfile } from "../agent/utils/publicImageAgentMode";
|
|
8
|
+
import { getApproxPricePerImage } from "./imagePricing";
|
|
9
|
+
|
|
10
|
+
interface ModelPricing {
|
|
11
|
+
inputPrice: number;
|
|
12
|
+
inputCacheHitPrice: number;
|
|
13
|
+
outputPrice: number;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
interface Prices {
|
|
17
|
+
cybotInput: number;
|
|
18
|
+
cybotOutput: number;
|
|
19
|
+
serverInput: number;
|
|
20
|
+
serverOutput: number;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
const MAX_OUTPUT_TOKENS = 8192; // 单次返回最大 token 数
|
|
24
|
+
|
|
25
|
+
export const getModelPricing = (
|
|
26
|
+
provider: string,
|
|
27
|
+
modelName: string,
|
|
28
|
+
requestedServiceTier?: string
|
|
29
|
+
): ModelPricing | null => {
|
|
30
|
+
let model;
|
|
31
|
+
try {
|
|
32
|
+
model = getModelConfig(provider as any, modelName);
|
|
33
|
+
} catch {
|
|
34
|
+
return null;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
if (!model?.price) return null;
|
|
38
|
+
|
|
39
|
+
return getModelPricingForModel(provider, modelName, model, requestedServiceTier);
|
|
40
|
+
};
|
|
41
|
+
|
|
42
|
+
export const getModelPricingForModel = (
|
|
43
|
+
provider: string,
|
|
44
|
+
modelName: string,
|
|
45
|
+
model: { price?: { input: number; inputCacheHit?: number; output: number } | null },
|
|
46
|
+
requestedServiceTier?: string
|
|
47
|
+
): ModelPricing | null => {
|
|
48
|
+
if (!model.price) return null;
|
|
49
|
+
const normalizedRequestedServiceTier =
|
|
50
|
+
requestedServiceTier === "flex" || requestedServiceTier === "default"
|
|
51
|
+
? requestedServiceTier
|
|
52
|
+
: undefined;
|
|
53
|
+
const shouldApplyFlexDiscount =
|
|
54
|
+
provider === "openai" &&
|
|
55
|
+
(normalizedRequestedServiceTier === "flex" ||
|
|
56
|
+
resolveOpenAIServiceTier({
|
|
57
|
+
providerName: provider,
|
|
58
|
+
model: modelName,
|
|
59
|
+
}) === "flex") &&
|
|
60
|
+
!isOpenAIFlexPricedModel(modelName);
|
|
61
|
+
const priceMultiplier = shouldApplyFlexDiscount ? 0.5 : 1;
|
|
62
|
+
|
|
63
|
+
return {
|
|
64
|
+
inputPrice: model.price.input * priceMultiplier,
|
|
65
|
+
inputCacheHitPrice:
|
|
66
|
+
typeof model.price.inputCacheHit === "number"
|
|
67
|
+
? model.price.inputCacheHit * priceMultiplier
|
|
68
|
+
: 0,
|
|
69
|
+
outputPrice: model.price.output * priceMultiplier,
|
|
70
|
+
};
|
|
71
|
+
};
|
|
72
|
+
|
|
73
|
+
export const hasExplicitAgentPricing = (config: any): boolean =>
|
|
74
|
+
[config?.inputPrice, config?.outputPrice].some(
|
|
75
|
+
(value) =>
|
|
76
|
+
typeof value === "number" && Number.isFinite(value) && value > 0
|
|
77
|
+
);
|
|
78
|
+
|
|
79
|
+
export const getPrices = (config: any, serverPrices: any): Prices => ({
|
|
80
|
+
cybotInput: Number(config?.inputPrice ?? 0),
|
|
81
|
+
cybotOutput: Number(config?.outputPrice ?? 0),
|
|
82
|
+
serverInput: Number(serverPrices?.inputPrice ?? 0),
|
|
83
|
+
serverOutput: Number(serverPrices?.outputPrice ?? 0),
|
|
84
|
+
});
|
|
85
|
+
|
|
86
|
+
/**
|
|
87
|
+
* 计算最终价格:
|
|
88
|
+
* - 从所有价格中取「每百万 tokens 价格」的最大值
|
|
89
|
+
* - 再换算成单 token 价格
|
|
90
|
+
* - 再乘以最大输出 token 数
|
|
91
|
+
*/
|
|
92
|
+
export const getFinalPrice = (prices: Prices): number => {
|
|
93
|
+
// 1. 取出所有价格字段
|
|
94
|
+
const rawValues = Object.values(prices);
|
|
95
|
+
|
|
96
|
+
// 2. 过滤出合法数字(去掉 NaN、Infinity、null/undefined 等)
|
|
97
|
+
const validValues = rawValues.filter(
|
|
98
|
+
(value) => typeof value === "number" && Number.isFinite(value)
|
|
99
|
+
);
|
|
100
|
+
|
|
101
|
+
// 3. 没有合法值时返回 0,避免 Math.max(...[]) 抛错
|
|
102
|
+
if (validValues.length === 0) {
|
|
103
|
+
return 0;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
// 4. 找到每百万 token 的最高单价
|
|
107
|
+
const maxPricePerMillion = Math.max(...validValues);
|
|
108
|
+
|
|
109
|
+
// 5. 换算成单 token 价格
|
|
110
|
+
const maxPricePerToken = maxPricePerMillion / 1_000_000;
|
|
111
|
+
|
|
112
|
+
// 6. 计算 8192 个 token 的费用
|
|
113
|
+
return maxPricePerToken * MAX_OUTPUT_TOKENS;
|
|
114
|
+
};
|
|
115
|
+
|
|
116
|
+
/**
|
|
117
|
+
* 每次对话估算的典型 token 用量(输入含历史上下文,输出为单次回复)
|
|
118
|
+
* 仅用于 UI 展示的估算,并非计费依据。
|
|
119
|
+
*/
|
|
120
|
+
const TYPICAL_INPUT_TOKENS = 500;
|
|
121
|
+
const TYPICAL_OUTPUT_TOKENS = 300;
|
|
122
|
+
|
|
123
|
+
export type AgentPriceHint =
|
|
124
|
+
| {
|
|
125
|
+
type: "per_image";
|
|
126
|
+
amount: number;
|
|
127
|
+
labelKey?: "defaultImageProfileEstimate";
|
|
128
|
+
profileLabel?: string;
|
|
129
|
+
}
|
|
130
|
+
| { type: "per_turn"; amount: number };
|
|
131
|
+
|
|
132
|
+
export interface CompactTurnPriceDisplay {
|
|
133
|
+
amountText: string;
|
|
134
|
+
unitCount: number;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
const trimTrailingZeros = (value: string): string => {
|
|
138
|
+
if (!value.includes(".")) return value;
|
|
139
|
+
return value.replace(/\.?0+$/, "");
|
|
140
|
+
};
|
|
141
|
+
|
|
142
|
+
/**
|
|
143
|
+
* 根据 agent 配置返回用户可读的价格提示:
|
|
144
|
+
* - 图像 agent(imageConfig.enabled):从 model config 查 pricePerImage,以每张为单位
|
|
145
|
+
* - 文字 agent:用典型 token 用量估算每次对话费用
|
|
146
|
+
* - 无价格信息则返回 null
|
|
147
|
+
*/
|
|
148
|
+
export const getAgentPriceHint = (
|
|
149
|
+
agent: Pick<
|
|
150
|
+
Agent,
|
|
151
|
+
| "inputPrice"
|
|
152
|
+
| "outputPrice"
|
|
153
|
+
| "model"
|
|
154
|
+
| "imageModel"
|
|
155
|
+
| "provider"
|
|
156
|
+
| "imageConfig"
|
|
157
|
+
| "imageWorkflow"
|
|
158
|
+
>
|
|
159
|
+
): AgentPriceHint | null => {
|
|
160
|
+
const imagePriceModel = agent.imageModel ?? agent.model;
|
|
161
|
+
|
|
162
|
+
if (agent.imageConfig?.enabled && agent.provider && imagePriceModel) {
|
|
163
|
+
try {
|
|
164
|
+
const model = getModelConfig(agent.provider as any, imagePriceModel);
|
|
165
|
+
const mode = agent.imageWorkflow;
|
|
166
|
+
|
|
167
|
+
if (mode === "generate") {
|
|
168
|
+
// For generator agents, always use the default profile price
|
|
169
|
+
const defaultProfile = getPublicImageAgentDefaultProfile("generate");
|
|
170
|
+
const pricePerImage = getApproxPricePerImage(model, "1K");
|
|
171
|
+
if (typeof pricePerImage === "number") {
|
|
172
|
+
return {
|
|
173
|
+
type: "per_image",
|
|
174
|
+
amount: pricePerImage,
|
|
175
|
+
labelKey: "defaultImageProfileEstimate",
|
|
176
|
+
profileLabel: `${defaultProfile.quality} · ${defaultProfile.size}`,
|
|
177
|
+
};
|
|
178
|
+
}
|
|
179
|
+
} else {
|
|
180
|
+
const pricePerImage = getApproxPricePerImage(
|
|
181
|
+
model,
|
|
182
|
+
agent.imageConfig?.imageSize
|
|
183
|
+
);
|
|
184
|
+
if (typeof pricePerImage === "number") {
|
|
185
|
+
return { type: "per_image", amount: pricePerImage };
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
} catch {
|
|
189
|
+
// Fall through to token-based pricing or null.
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
const inputPrice = agent.inputPrice ?? 0;
|
|
194
|
+
const outputPrice = agent.outputPrice ?? 0;
|
|
195
|
+
if (inputPrice === 0 && outputPrice === 0) return null;
|
|
196
|
+
|
|
197
|
+
const amount =
|
|
198
|
+
(inputPrice * TYPICAL_INPUT_TOKENS + outputPrice * TYPICAL_OUTPUT_TOKENS) /
|
|
199
|
+
1_000_000;
|
|
200
|
+
return { type: "per_turn", amount };
|
|
201
|
+
};
|
|
202
|
+
|
|
203
|
+
/** 将金额格式化为用户可读字符串(2 位有效数字,不使用科学计数法)*/
|
|
204
|
+
export const formatPriceAmount = (amount: number): string => {
|
|
205
|
+
if (amount >= 0.1) return amount.toFixed(2);
|
|
206
|
+
if (amount >= 0.01) return amount.toFixed(3);
|
|
207
|
+
if (amount >= 0.001) return amount.toFixed(4);
|
|
208
|
+
if (amount >= 0.0001) return amount.toFixed(5);
|
|
209
|
+
return amount.toFixed(6);
|
|
210
|
+
};
|
|
211
|
+
|
|
212
|
+
export const formatModelCostPerMillion = (
|
|
213
|
+
value?: number,
|
|
214
|
+
creditsUnit = "积分"
|
|
215
|
+
): string => {
|
|
216
|
+
if (typeof value !== "number" || !Number.isFinite(value)) return "未知";
|
|
217
|
+
if (value === 0) return "免费";
|
|
218
|
+
const decimals = Math.abs(value) < 1 ? 3 : 2;
|
|
219
|
+
const amount = value
|
|
220
|
+
.toFixed(decimals)
|
|
221
|
+
.replace(/\.0+$/, "")
|
|
222
|
+
.replace(/(\.\d*?[1-9])0+$/, "$1");
|
|
223
|
+
return `${amount} ${creditsUnit}`;
|
|
224
|
+
};
|
|
225
|
+
|
|
226
|
+
export const formatCompactTurnPrice = (
|
|
227
|
+
amount: number
|
|
228
|
+
): CompactTurnPriceDisplay => {
|
|
229
|
+
if (amount <= 0) {
|
|
230
|
+
return { amountText: "0", unitCount: 1 };
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
if (amount >= 0.01) {
|
|
234
|
+
return {
|
|
235
|
+
amountText: trimTrailingZeros(formatPriceAmount(amount)),
|
|
236
|
+
unitCount: 1,
|
|
237
|
+
};
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
const perHundred = amount * 100;
|
|
241
|
+
if (perHundred >= 0.01) {
|
|
242
|
+
return {
|
|
243
|
+
amountText: trimTrailingZeros(formatPriceAmount(perHundred)),
|
|
244
|
+
unitCount: 100,
|
|
245
|
+
};
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
return {
|
|
249
|
+
amountText: trimTrailingZeros(formatPriceAmount(amount * 1000)),
|
|
250
|
+
unitCount: 1000,
|
|
251
|
+
};
|
|
252
|
+
};
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import type { Agent } from "../../app/types";
|
|
2
|
+
import { findModelConfig } from "./providers";
|
|
3
|
+
import type { Model } from "./types";
|
|
4
|
+
|
|
5
|
+
export type ImageSizeKey = "1K" | "2K" | "4K";
|
|
6
|
+
|
|
7
|
+
type ImagePricingModel = Pick<
|
|
8
|
+
Model,
|
|
9
|
+
"pricePerImage" | "imageTokenPricePerMillion" | "imageOutputTokenEstimateBySize"
|
|
10
|
+
>;
|
|
11
|
+
|
|
12
|
+
const DEFAULT_IMAGE_SIZE: ImageSizeKey = "1K";
|
|
13
|
+
|
|
14
|
+
export const getApproxPricePerImage = (
|
|
15
|
+
model: ImagePricingModel | null | undefined,
|
|
16
|
+
requestedSize?: ImageSizeKey
|
|
17
|
+
): number | undefined => {
|
|
18
|
+
if (!model) return undefined;
|
|
19
|
+
|
|
20
|
+
if (typeof model.pricePerImage === "number") {
|
|
21
|
+
return model.pricePerImage;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
if (typeof model.imageTokenPricePerMillion !== "number") {
|
|
25
|
+
return undefined;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
const tokenEstimates = model.imageOutputTokenEstimateBySize;
|
|
29
|
+
if (!tokenEstimates) return undefined;
|
|
30
|
+
|
|
31
|
+
const resolvedSize =
|
|
32
|
+
requestedSize && typeof tokenEstimates[requestedSize] === "number"
|
|
33
|
+
? requestedSize
|
|
34
|
+
: DEFAULT_IMAGE_SIZE;
|
|
35
|
+
const outputTokens = tokenEstimates[resolvedSize];
|
|
36
|
+
|
|
37
|
+
if (typeof outputTokens !== "number") {
|
|
38
|
+
return undefined;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
return (model.imageTokenPricePerMillion * outputTokens) / 1_000_000;
|
|
42
|
+
};
|
|
43
|
+
|
|
44
|
+
const OPENAI_IMAGE_FALLBACK_MODEL = "gpt-image-2";
|
|
45
|
+
|
|
46
|
+
export const getApproxAgentPricePerImage = (
|
|
47
|
+
agent: Pick<Agent, "provider" | "model" | "imageConfig">
|
|
48
|
+
): number | undefined => {
|
|
49
|
+
if (!agent.imageConfig?.enabled || !agent.provider || !agent.model) {
|
|
50
|
+
return undefined;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
const requestedSize = agent.imageConfig.imageSize as ImageSizeKey | undefined;
|
|
54
|
+
const directModel = findModelConfig(agent.provider, agent.model);
|
|
55
|
+
const directPrice = getApproxPricePerImage(directModel, requestedSize);
|
|
56
|
+
if (typeof directPrice === "number") {
|
|
57
|
+
return directPrice;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
if (String(agent.provider).toLowerCase() !== "openai") {
|
|
61
|
+
return undefined;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
const fallbackModel = findModelConfig("openai", OPENAI_IMAGE_FALLBACK_MODEL);
|
|
65
|
+
return getApproxPricePerImage(fallbackModel, requestedSize);
|
|
66
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { getModelConfig } from "./providers";
|
|
2
|
+
|
|
3
|
+
export const isResponseAPIModel = (agentConfig) => {
|
|
4
|
+
if (agentConfig.provider !== "openai") return false;
|
|
5
|
+
if (agentConfig.endpointKey === "responses") return true;
|
|
6
|
+
if (!agentConfig.model) return false;
|
|
7
|
+
|
|
8
|
+
try {
|
|
9
|
+
return getModelConfig("openai", agentConfig.model).endpointKey === "responses";
|
|
10
|
+
} catch {
|
|
11
|
+
return false;
|
|
12
|
+
}
|
|
13
|
+
};
|
package/ai/llm/kimi.ts
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
export const FIREWORKS_KIMI_LATEST_MODEL = "accounts/fireworks/models/kimi-latest";
|
|
2
|
+
export const FIREWORKS_KIMI_CURRENT_MODEL = "accounts/fireworks/models/kimi-k2p6";
|
|
3
|
+
export const DEEPINFRA_KIMI_FALLBACK_MODEL = "moonshotai/Kimi-K2.6";
|
|
4
|
+
export const OPENROUTER_KIMI_FALLBACK_MODEL = "moonshotai/kimi-k2.6";
|
|
5
|
+
export const KIMI_PLATFORM_FALLBACK_STATUSES = [401, 402, 429, 500, 502, 503, 504];
|
|
6
|
+
|
|
7
|
+
export const isFireworksKimiModel = (model?: string | null): boolean =>
|
|
8
|
+
model === FIREWORKS_KIMI_LATEST_MODEL || model === FIREWORKS_KIMI_CURRENT_MODEL;
|
|
9
|
+
|
|
10
|
+
export const isDeepInfraKimiModel = (model?: string | null): boolean =>
|
|
11
|
+
model === DEEPINFRA_KIMI_FALLBACK_MODEL;
|
|
12
|
+
|
|
13
|
+
export const resolveFireworksKimiModel = (model?: string | null): string => {
|
|
14
|
+
if (model === FIREWORKS_KIMI_LATEST_MODEL) {
|
|
15
|
+
return FIREWORKS_KIMI_CURRENT_MODEL;
|
|
16
|
+
}
|
|
17
|
+
return model ?? "";
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
export const shouldHideKimiAliasFromPricing = (
|
|
21
|
+
provider?: string | null,
|
|
22
|
+
model?: string | null
|
|
23
|
+
): boolean => provider === "fireworks" && model === FIREWORKS_KIMI_LATEST_MODEL;
|
package/ai/llm/mimo.ts
ADDED
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
import type { Model } from "./types";
|
|
2
|
+
|
|
3
|
+
// 备注: 因为是中文(国内服务直接人民币计价),所以不用乘以 7
|
|
4
|
+
const MIMO_V25_PRO_PRICE = {
|
|
5
|
+
input: 3,
|
|
6
|
+
output: 6,
|
|
7
|
+
cachingRead: 0.025,
|
|
8
|
+
cachingWrite: 0,
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
const MIMO_V25_PRICE = {
|
|
12
|
+
input: 1,
|
|
13
|
+
output: 2,
|
|
14
|
+
cachingRead: 0.02,
|
|
15
|
+
cachingWrite: 0,
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
const MIMO_LEGACY_PRICE = {
|
|
19
|
+
input: 7,
|
|
20
|
+
output: 21,
|
|
21
|
+
cachingRead: 1.4,
|
|
22
|
+
cachingWrite: 0,
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
const MIMO_TTS_FREE = {
|
|
26
|
+
input: 0,
|
|
27
|
+
output: 0,
|
|
28
|
+
cachingRead: 0,
|
|
29
|
+
cachingWrite: 0,
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
const MIMO_TEXT_MODELS = [
|
|
33
|
+
{
|
|
34
|
+
name: "mimo-v2.5-pro",
|
|
35
|
+
displayName: "Xiaomi: MiMo V2.5 Pro",
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
name: "mimo-v2.5",
|
|
39
|
+
displayName: "Xiaomi: MiMo V2.5",
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
name: "mimo-v2-pro",
|
|
43
|
+
displayName: "Xiaomi: MiMo V2 Pro",
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
name: "mimo-v2-omni",
|
|
47
|
+
displayName: "Xiaomi: MiMo V2 Omni",
|
|
48
|
+
hasAudio: true,
|
|
49
|
+
},
|
|
50
|
+
];
|
|
51
|
+
|
|
52
|
+
const MIMO_TTS_MODELS = [
|
|
53
|
+
{
|
|
54
|
+
name: "mimo-v2.5-tts-voiceclone",
|
|
55
|
+
displayName: "Xiaomi: MiMo V2.5 TTS VoiceClone",
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
name: "mimo-v2.5-tts-voicedesign",
|
|
59
|
+
displayName: "Xiaomi: MiMo V2.5 TTS VoiceDesign",
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
name: "mimo-v2.5-tts",
|
|
63
|
+
displayName: "Xiaomi: MiMo V2.5 TTS",
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
name: "mimo-v2-tts",
|
|
67
|
+
displayName: "Xiaomi: MiMo V2 TTS",
|
|
68
|
+
},
|
|
69
|
+
];
|
|
70
|
+
|
|
71
|
+
export const mimoModels: Model[] = [
|
|
72
|
+
...MIMO_TEXT_MODELS.map((model): Model => {
|
|
73
|
+
let price = MIMO_LEGACY_PRICE;
|
|
74
|
+
if (model.name === "mimo-v2.5-pro") price = MIMO_V25_PRO_PRICE;
|
|
75
|
+
else if (model.name === "mimo-v2.5") price = MIMO_V25_PRICE;
|
|
76
|
+
|
|
77
|
+
return {
|
|
78
|
+
...model,
|
|
79
|
+
hasVision: true,
|
|
80
|
+
price,
|
|
81
|
+
maxOutputTokens: 131072,
|
|
82
|
+
contextWindow: 1048576,
|
|
83
|
+
supportsTool: true,
|
|
84
|
+
supportsReasoningEffort: true,
|
|
85
|
+
description: "MiMo platform chat model.",
|
|
86
|
+
};
|
|
87
|
+
}),
|
|
88
|
+
...MIMO_TTS_MODELS.map((model): Model => ({
|
|
89
|
+
...model,
|
|
90
|
+
hasVision: false,
|
|
91
|
+
hasAudio: true,
|
|
92
|
+
price: model.name.includes("v2.5") ? MIMO_TTS_FREE : MIMO_LEGACY_PRICE,
|
|
93
|
+
maxOutputTokens: 32768,
|
|
94
|
+
contextWindow: 32768,
|
|
95
|
+
supportsTool: false,
|
|
96
|
+
supportsReasoningEffort: false,
|
|
97
|
+
description: "MiMo platform TTS model.",
|
|
98
|
+
})),
|
|
99
|
+
];
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
// ai/llm/mistral.ts
|
|
2
|
+
|
|
3
|
+
import type { Model } from "./types";
|
|
4
|
+
|
|
5
|
+
export const mistralModels: Model[] = [
|
|
6
|
+
{
|
|
7
|
+
// 实际使用时建议改成你真实调用用的 model id
|
|
8
|
+
name: "devstral-2512",
|
|
9
|
+
displayName: "Mistral: Devstral 2",
|
|
10
|
+
hasVision: false,
|
|
11
|
+
price: {
|
|
12
|
+
input: 0.1 * 7,
|
|
13
|
+
output: 0.1 * 7,
|
|
14
|
+
},
|
|
15
|
+
maxOutputTokens: 262144,
|
|
16
|
+
contextWindow: 262144, // 256k ≈ 256 * 1024
|
|
17
|
+
supportsTool: true,
|
|
18
|
+
// 如果后面确认支持 reasoning effort,可以加上:
|
|
19
|
+
// supportsReasoningEffort: true,
|
|
20
|
+
},
|
|
21
|
+
];
|
package/ai/llm/models.ts
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
// ai/llm/models.ts
|
|
2
|
+
|
|
3
|
+
import type { Model } from "./types";
|
|
4
|
+
|
|
5
|
+
// 导入所有提供商的模型数据
|
|
6
|
+
import { deepSeekModels } from "../../integrations/deepseek/models";
|
|
7
|
+
import { googleModels } from "../../integrations/google/models";
|
|
8
|
+
import { openAIModels } from "../../integrations/openai/models";
|
|
9
|
+
import { deepinfraModels } from "./deepinfra";
|
|
10
|
+
import { openrouterModels } from "./openrouterModels";
|
|
11
|
+
import { fireworksModels } from "./fireworks";
|
|
12
|
+
import { mistralModels } from "./mistral";
|
|
13
|
+
import { mimoModels } from "./mimo";
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* @interface ModelWithProvider
|
|
17
|
+
* 扩展基础 Model 类型,增加了 provider 字段,用于UI显示和逻辑处理。
|
|
18
|
+
*/
|
|
19
|
+
export interface ModelWithProvider extends Model {
|
|
20
|
+
provider: string;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* 将一组模型打上 provider 标记的纯函数,方便复用和测试
|
|
25
|
+
*/
|
|
26
|
+
const withProvider =
|
|
27
|
+
(provider: ModelWithProvider["provider"]) =>
|
|
28
|
+
(models: Model[]): ModelWithProvider[] =>
|
|
29
|
+
models.map((model) => ({ ...model, provider }));
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
* @const ALL_MODELS
|
|
33
|
+
* 聚合了所有来源的模型数据,并为每个模型附加了其提供商信息。
|
|
34
|
+
* 这是整个应用中模型选择器的唯一数据源。
|
|
35
|
+
*/
|
|
36
|
+
export const ALL_MODELS: ModelWithProvider[] = [
|
|
37
|
+
...withProvider("google")(googleModels),
|
|
38
|
+
...withProvider("openai")(openAIModels),
|
|
39
|
+
...withProvider("openrouter")(openrouterModels),
|
|
40
|
+
...withProvider("deepseek")(deepSeekModels),
|
|
41
|
+
...withProvider("deepinfra")(deepinfraModels),
|
|
42
|
+
...withProvider("fireworks")(fireworksModels),
|
|
43
|
+
...withProvider("mistral")(mistralModels),
|
|
44
|
+
...withProvider("mimo")(mimoModels),
|
|
45
|
+
];
|