@promptbook/cli 0.103.0-1 → 0.103.0-100
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 +153 -89
- package/apps/agents-server/README.md +3 -0
- package/apps/agents-server/TODO.txt +7 -0
- package/apps/agents-server/config.ts +128 -0
- package/apps/agents-server/next.config.ts +45 -0
- package/apps/agents-server/package-lock.json +1163 -0
- package/apps/agents-server/package.json +18 -0
- package/apps/agents-server/postcss.config.mjs +8 -0
- package/apps/agents-server/public/.gitkeep +0 -0
- package/apps/agents-server/public/favicon.ico +0 -0
- package/apps/agents-server/public/fonts/OpenMoji-black-glyf.woff2 +0 -0
- package/apps/agents-server/public/fonts/download-font.js +22 -0
- package/apps/agents-server/public/logo-blue-white-256.png +0 -0
- package/apps/agents-server/public/sw.js +16 -0
- package/apps/agents-server/src/app/AddAgentButton.tsx +41 -0
- package/apps/agents-server/src/app/[agentName]/[...rest]/page.tsx +11 -0
- package/apps/agents-server/src/app/[agentName]/page.tsx +1 -0
- package/apps/agents-server/src/app/actions.ts +51 -0
- package/apps/agents-server/src/app/admin/api-tokens/ApiTokensClient.tsx +186 -0
- package/apps/agents-server/src/app/admin/api-tokens/page.tsx +13 -0
- package/apps/agents-server/src/app/admin/chat-feedback/ChatFeedbackClient.tsx +614 -0
- package/apps/agents-server/src/app/admin/chat-feedback/page.tsx +22 -0
- package/apps/agents-server/src/app/admin/chat-history/ChatHistoryClient.tsx +634 -0
- package/apps/agents-server/src/app/admin/chat-history/page.tsx +21 -0
- package/apps/agents-server/src/app/admin/metadata/MetadataClient.tsx +477 -0
- package/apps/agents-server/src/app/admin/metadata/page.tsx +13 -0
- package/apps/agents-server/src/app/admin/models/page.tsx +22 -0
- package/apps/agents-server/src/app/admin/users/[userId]/UserDetailClient.tsx +131 -0
- package/apps/agents-server/src/app/admin/users/[userId]/page.tsx +21 -0
- package/apps/agents-server/src/app/admin/users/page.tsx +18 -0
- package/apps/agents-server/src/app/agents/[agentName]/AgentChatWrapper.tsx +78 -0
- package/apps/agents-server/src/app/agents/[agentName]/AgentOptionsMenu.tsx +216 -0
- package/apps/agents-server/src/app/agents/[agentName]/AgentProfileChat.tsx +78 -0
- package/apps/agents-server/src/app/agents/[agentName]/AgentProfileView.tsx +233 -0
- package/apps/agents-server/src/app/agents/[agentName]/AgentQrCode.tsx +55 -0
- package/apps/agents-server/src/app/agents/[agentName]/AgentUrlCopy.tsx +40 -0
- package/apps/agents-server/src/app/agents/[agentName]/ClearAgentChatFeedbackButton.tsx +63 -0
- package/apps/agents-server/src/app/agents/[agentName]/ClearAgentChatHistoryButton.tsx +63 -0
- package/apps/agents-server/src/app/agents/[agentName]/CloneAgentButton.tsx +41 -0
- package/apps/agents-server/src/app/agents/[agentName]/CopyField.tsx +44 -0
- package/apps/agents-server/src/app/agents/[agentName]/InstallPwaButton.tsx +74 -0
- package/apps/agents-server/src/app/agents/[agentName]/QrCodeModal.tsx +90 -0
- package/apps/agents-server/src/app/agents/[agentName]/ServiceWorkerRegister.tsx +24 -0
- package/apps/agents-server/src/app/agents/[agentName]/TODO.txt +1 -0
- package/apps/agents-server/src/app/agents/[agentName]/_utils.ts +19 -0
- package/apps/agents-server/src/app/agents/[agentName]/agentLinks.tsx +80 -0
- package/apps/agents-server/src/app/agents/[agentName]/api/agents/route.ts +67 -0
- package/apps/agents-server/src/app/agents/[agentName]/api/book/route.ts +88 -0
- package/apps/agents-server/src/app/agents/[agentName]/api/book/test.http +37 -0
- package/apps/agents-server/src/app/agents/[agentName]/api/chat/route.ts +174 -0
- package/apps/agents-server/src/app/agents/[agentName]/api/feedback/route.ts +54 -0
- package/apps/agents-server/src/app/agents/[agentName]/api/mcp/route.ts +203 -0
- package/apps/agents-server/src/app/agents/[agentName]/api/modelRequirements/TODO.txt +1 -0
- package/apps/agents-server/src/app/agents/[agentName]/api/modelRequirements/route.ts +55 -0
- package/apps/agents-server/src/app/agents/[agentName]/api/modelRequirements/systemMessage/route.ts +47 -0
- package/apps/agents-server/src/app/agents/[agentName]/api/openai/chat/completions/route.ts +10 -0
- package/apps/agents-server/src/app/agents/[agentName]/api/openai/models/route.ts +93 -0
- package/apps/agents-server/src/app/agents/[agentName]/api/openai/v1/chat/completions/route.ts +10 -0
- package/apps/agents-server/src/app/agents/[agentName]/api/openai/v1/models/route.ts +93 -0
- package/apps/agents-server/src/app/agents/[agentName]/api/openrouter/chat/completions/route.ts +10 -0
- package/apps/agents-server/src/app/agents/[agentName]/api/profile/route.ts +76 -0
- package/apps/agents-server/src/app/agents/[agentName]/api/voice/route.ts +181 -0
- package/apps/agents-server/src/app/agents/[agentName]/book/BookEditorWrapper.tsx +139 -0
- package/apps/agents-server/src/app/agents/[agentName]/book/page.tsx +35 -0
- package/apps/agents-server/src/app/agents/[agentName]/book+chat/AgentBookAndChat.tsx +75 -0
- package/apps/agents-server/src/app/agents/[agentName]/book+chat/AgentBookAndChatComponent.tsx.todo +160 -0
- package/apps/agents-server/src/app/agents/[agentName]/book+chat/page.tsx +32 -0
- package/apps/agents-server/src/app/agents/[agentName]/book+chat/page.tsx.todo +21 -0
- package/apps/agents-server/src/app/agents/[agentName]/chat/AgentChatWrapper.tsx +68 -0
- package/apps/agents-server/src/app/agents/[agentName]/chat/page.tsx +33 -0
- package/apps/agents-server/src/app/agents/[agentName]/generateAgentMetadata.ts +42 -0
- package/apps/agents-server/src/app/agents/[agentName]/history/RestoreVersionButton.tsx +46 -0
- package/apps/agents-server/src/app/agents/[agentName]/history/actions.ts +12 -0
- package/apps/agents-server/src/app/agents/[agentName]/history/page.tsx +62 -0
- package/apps/agents-server/src/app/agents/[agentName]/images/icon-256.png/route.tsx +80 -0
- package/apps/agents-server/src/app/agents/[agentName]/images/screenshot-fullhd.png/route.tsx +92 -0
- package/apps/agents-server/src/app/agents/[agentName]/images/screenshot-phone.png/route.tsx +92 -0
- package/apps/agents-server/src/app/agents/[agentName]/integration/SdkCodeTabs.tsx +31 -0
- package/apps/agents-server/src/app/agents/[agentName]/integration/page.tsx +302 -0
- package/apps/agents-server/src/app/agents/[agentName]/links/page.tsx +182 -0
- package/apps/agents-server/src/app/agents/[agentName]/opengraph-image.tsx +102 -0
- package/apps/agents-server/src/app/agents/[agentName]/page.tsx +159 -0
- package/apps/agents-server/src/app/agents/[agentName]/website-integration/page.tsx +61 -0
- package/apps/agents-server/src/app/agents/page.tsx +11 -0
- package/apps/agents-server/src/app/api/agents/[agentName]/clone/route.ts +47 -0
- package/apps/agents-server/src/app/api/agents/[agentName]/route.ts +19 -0
- package/apps/agents-server/src/app/api/agents/route.ts +43 -0
- package/apps/agents-server/src/app/api/api-tokens/route.ts +76 -0
- package/apps/agents-server/src/app/api/auth/change-password/route.ts +75 -0
- package/apps/agents-server/src/app/api/auth/login/route.ts +27 -0
- package/apps/agents-server/src/app/api/auth/logout/route.ts +7 -0
- package/apps/agents-server/src/app/api/chat/route.ts +32 -0
- package/apps/agents-server/src/app/api/chat-feedback/[id]/route.ts +38 -0
- package/apps/agents-server/src/app/api/chat-feedback/export/route.ts +55 -0
- package/apps/agents-server/src/app/api/chat-feedback/route.ts +157 -0
- package/apps/agents-server/src/app/api/chat-history/[id]/route.ts +37 -0
- package/apps/agents-server/src/app/api/chat-history/export/route.ts +55 -0
- package/apps/agents-server/src/app/api/chat-history/route.ts +147 -0
- package/apps/agents-server/src/app/api/chat-streaming/route.ts +48 -0
- package/apps/agents-server/src/app/api/embed.js/route.ts +93 -0
- package/apps/agents-server/src/app/api/federated-agents/route.ts +17 -0
- package/apps/agents-server/src/app/api/long-running-task/route.ts +7 -0
- package/apps/agents-server/src/app/api/long-streaming/route.ts +20 -0
- package/apps/agents-server/src/app/api/metadata/route.ts +116 -0
- package/apps/agents-server/src/app/api/openai/v1/chat/completions/route.ts +6 -0
- package/apps/agents-server/src/app/api/openai/v1/models/route.ts +65 -0
- package/apps/agents-server/src/app/api/upload/route.ts +83 -0
- package/apps/agents-server/src/app/api/users/[username]/route.ts +75 -0
- package/apps/agents-server/src/app/api/users/route.ts +71 -0
- package/apps/agents-server/src/app/docs/[docId]/page.tsx +43 -0
- package/apps/agents-server/src/app/docs/page.tsx +59 -0
- package/apps/agents-server/src/app/embed/page.tsx +24 -0
- package/apps/agents-server/src/app/globals.css +276 -0
- package/apps/agents-server/src/app/layout.tsx +124 -0
- package/apps/agents-server/src/app/manifest.ts +109 -0
- package/apps/agents-server/src/app/not-found.tsx +5 -0
- package/apps/agents-server/src/app/page.tsx +96 -0
- package/apps/agents-server/src/app/recycle-bin/RestoreAgentButton.tsx +40 -0
- package/apps/agents-server/src/app/recycle-bin/actions.ts +27 -0
- package/apps/agents-server/src/app/recycle-bin/page.tsx +58 -0
- package/apps/agents-server/src/app/restricted/page.tsx +33 -0
- package/apps/agents-server/src/app/test/og-image/README.md +1 -0
- package/apps/agents-server/src/app/test/og-image/opengraph-image.tsx +37 -0
- package/apps/agents-server/src/app/test/og-image/page.tsx +22 -0
- package/apps/agents-server/src/components/Auth/AuthControls.tsx +123 -0
- package/apps/agents-server/src/components/ChangePasswordDialog/ChangePasswordDialog.tsx +41 -0
- package/apps/agents-server/src/components/ChangePasswordForm/ChangePasswordForm.tsx +159 -0
- package/apps/agents-server/src/components/DocumentationContent/DocumentationContent.tsx +87 -0
- package/apps/agents-server/src/components/ErrorPage/ErrorPage.tsx +33 -0
- package/apps/agents-server/src/components/Footer/Footer.tsx +175 -0
- package/apps/agents-server/src/components/ForbiddenPage/ForbiddenPage.tsx +15 -0
- package/apps/agents-server/src/components/Header/Header.tsx +593 -0
- package/apps/agents-server/src/components/Homepage/AgentCard.tsx +60 -0
- package/apps/agents-server/src/components/Homepage/AgentsList.tsx +58 -0
- package/apps/agents-server/src/components/Homepage/Card.tsx +18 -0
- package/apps/agents-server/src/components/Homepage/ExternalAgentsSection.tsx +21 -0
- package/apps/agents-server/src/components/Homepage/ExternalAgentsSectionClient.tsx +183 -0
- package/apps/agents-server/src/components/Homepage/ModelCard.tsx +29 -0
- package/apps/agents-server/src/components/Homepage/ModelsSection.tsx +75 -0
- package/apps/agents-server/src/components/Homepage/Section.tsx +17 -0
- package/apps/agents-server/src/components/Homepage/TechInfoCard.tsx +20 -0
- package/apps/agents-server/src/components/LayoutWrapper/LayoutWrapper.tsx +53 -0
- package/apps/agents-server/src/components/LoginDialog/LoginDialog.tsx +41 -0
- package/apps/agents-server/src/components/LoginForm/LoginForm.tsx +109 -0
- package/apps/agents-server/src/components/NotFoundPage/NotFoundPage.tsx +17 -0
- package/apps/agents-server/src/components/OpenMojiIcon/OpenMojiIcon.tsx +20 -0
- package/apps/agents-server/src/components/Portal/Portal.tsx +38 -0
- package/apps/agents-server/src/components/PrintButton/PrintButton.tsx +18 -0
- package/apps/agents-server/src/components/PrintHeader/PrintHeader.tsx +18 -0
- package/apps/agents-server/src/components/UsersList/UsersList.tsx +141 -0
- package/apps/agents-server/src/components/UsersList/useUsersAdmin.ts +139 -0
- package/apps/agents-server/src/components/VercelDeploymentCard/VercelDeploymentCard.tsx +55 -0
- package/apps/agents-server/src/database/$getTableName.ts +18 -0
- package/apps/agents-server/src/database/$provideSupabase.ts +29 -0
- package/apps/agents-server/src/database/$provideSupabaseForBrowser.ts +41 -0
- package/apps/agents-server/src/database/$provideSupabaseForServer.ts +48 -0
- package/apps/agents-server/src/database/$provideSupabaseForWorker.ts +43 -0
- package/apps/agents-server/src/database/getMetadata.ts +31 -0
- package/apps/agents-server/src/database/metadataDefaults.ts +69 -0
- package/apps/agents-server/src/database/migrate.ts +131 -0
- package/apps/agents-server/src/database/migrations/2025-11-0001-initial-schema.sql +163 -0
- package/apps/agents-server/src/database/migrations/2025-11-0002-metadata-table.sql +16 -0
- package/apps/agents-server/src/database/migrations/2025-12-0010-llm-cache.sql +12 -0
- package/apps/agents-server/src/database/migrations/2025-12-0060-api-tokens.sql +13 -0
- package/apps/agents-server/src/database/migrations/2025-12-0070-chat-history-source.sql +2 -0
- package/apps/agents-server/src/database/schema.ts +308 -0
- package/apps/agents-server/src/deamons/longRunningTask.ts +37 -0
- package/apps/agents-server/src/middleware.ts +301 -0
- package/apps/agents-server/src/tools/$provideAgentCollectionForServer.ts +54 -0
- package/apps/agents-server/src/tools/$provideCdnForServer.ts +24 -0
- package/apps/agents-server/src/tools/$provideExecutionToolsForServer.ts +117 -0
- package/apps/agents-server/src/tools/$provideOpenAiAssistantExecutionToolsForServer.ts +35 -0
- package/apps/agents-server/src/tools/$provideServer.ts +39 -0
- package/apps/agents-server/src/utils/auth.ts +33 -0
- package/apps/agents-server/src/utils/authenticateUser.ts +42 -0
- package/apps/agents-server/src/utils/cache/SupabaseCacheStorage.ts +55 -0
- package/apps/agents-server/src/utils/cdn/classes/VercelBlobStorage.ts +63 -0
- package/apps/agents-server/src/utils/cdn/interfaces/IFilesStorage.ts +32 -0
- package/apps/agents-server/src/utils/cdn/interfaces/IStorage.ts +14 -0
- package/apps/agents-server/src/utils/cdn/utils/getUserFileCdnKey.ts +28 -0
- package/apps/agents-server/src/utils/cdn/utils/nameToSubfolderPath.ts +9 -0
- package/apps/agents-server/src/utils/cdn/utils/nextRequestToNodeRequest.ts +27 -0
- package/apps/agents-server/src/utils/chatFeedbackAdmin.ts +96 -0
- package/apps/agents-server/src/utils/chatHistoryAdmin.ts +96 -0
- package/apps/agents-server/src/utils/convertToCsv.ts +31 -0
- package/apps/agents-server/src/utils/getCurrentUser.ts +32 -0
- package/apps/agents-server/src/utils/getEffectiveFederatedServers.ts +22 -0
- package/apps/agents-server/src/utils/getFederatedAgents.ts +89 -0
- package/apps/agents-server/src/utils/getFederatedServersFromMetadata.ts +10 -0
- package/apps/agents-server/src/utils/getVisibleCommitmentDefinitions.ts +12 -0
- package/apps/agents-server/src/utils/handleChatCompletion.ts +355 -0
- package/apps/agents-server/src/utils/isIpAllowed.ts +101 -0
- package/apps/agents-server/src/utils/isUserAdmin.ts +31 -0
- package/apps/agents-server/src/utils/resolveInheritedAgentSource.ts +100 -0
- package/apps/agents-server/src/utils/session.ts +50 -0
- package/apps/agents-server/src/utils/validateApiKey.ts +128 -0
- package/apps/agents-server/src/utils/validators/validateMimeType.ts +24 -0
- package/apps/agents-server/tailwind.config.ts +26 -0
- package/apps/agents-server/tsconfig.json +29 -0
- package/apps/agents-server/vercel.json +7 -0
- package/esm/index.es.js +5114 -383
- package/esm/index.es.js.map +1 -1
- package/esm/typings/books/index.d.ts +0 -81
- package/esm/typings/servers.d.ts +9 -7
- package/esm/typings/src/_packages/browser.index.d.ts +6 -0
- package/esm/typings/src/_packages/cli.index.d.ts +4 -0
- package/esm/typings/src/_packages/components.index.d.ts +20 -8
- package/esm/typings/src/_packages/core.index.d.ts +58 -18
- package/esm/typings/src/_packages/node.index.d.ts +2 -2
- package/esm/typings/src/_packages/remote-server.index.d.ts +2 -0
- package/esm/typings/src/_packages/types.index.d.ts +58 -8
- package/esm/typings/src/_packages/utils.index.d.ts +6 -0
- package/esm/typings/src/_packages/wizard.index.d.ts +4 -0
- package/esm/typings/src/book-2.0/agent-source/AgentBasicInformation.d.ts +19 -5
- package/esm/typings/src/book-2.0/agent-source/AgentModelRequirements.d.ts +17 -1
- package/esm/typings/src/book-2.0/agent-source/AgentSourceParseResult.d.ts +3 -2
- package/esm/typings/src/book-2.0/agent-source/computeAgentHash.d.ts +8 -0
- package/esm/typings/src/book-2.0/agent-source/createCommitmentRegex.d.ts +3 -3
- package/esm/typings/src/book-2.0/agent-source/createDefaultAgentName.d.ts +8 -0
- package/esm/typings/src/book-2.0/agent-source/normalizeAgentName.d.ts +9 -0
- package/esm/typings/src/book-2.0/agent-source/padBook.d.ts +18 -0
- package/esm/typings/src/book-2.0/agent-source/parseAgentSourceWithCommitments.d.ts +1 -1
- package/esm/typings/src/book-2.0/agent-source/string_book.d.ts +3 -0
- package/esm/typings/src/book-components/AvatarProfile/AvatarProfile/AvatarProfile.d.ts +10 -0
- package/esm/typings/src/book-components/AvatarProfile/AvatarProfile/AvatarProfileTooltip.d.ts +15 -0
- package/esm/typings/src/book-components/BookEditor/BookEditor.d.ts +83 -8
- package/esm/typings/src/book-components/BookEditor/BookEditorActionbar.d.ts +14 -0
- package/esm/typings/src/book-components/BookEditor/BookEditorMonaco.d.ts +5 -0
- package/esm/typings/src/book-components/Chat/AgentChat/AgentChat.d.ts +14 -0
- package/esm/typings/src/book-components/Chat/AgentChat/AgentChatProps.d.ts +13 -0
- package/esm/typings/src/book-components/Chat/Chat/ChatProps.d.ts +10 -0
- package/esm/typings/src/book-components/Chat/LlmChat/LlmChatProps.d.ts +5 -0
- package/esm/typings/src/book-components/Chat/MarkdownContent/MarkdownContent.d.ts +15 -0
- package/esm/typings/src/book-components/Chat/MockedChat/MockedChat.d.ts +5 -0
- package/esm/typings/src/book-components/Chat/save/_common/ChatSaveFormatDefinition.d.ts +1 -1
- package/esm/typings/src/book-components/Chat/save/html/htmlSaveFormatDefinition.d.ts +1 -0
- package/esm/typings/src/book-components/Chat/save/pdf/pdfSaveFormatDefinition.d.ts +4 -0
- package/esm/typings/src/book-components/Chat/types/ChatParticipant.d.ts +5 -0
- package/esm/typings/src/book-components/PromptbookAgent/PromptbookAgent.d.ts +29 -0
- package/esm/typings/src/book-components/Qr/BrandedQrCode.d.ts +18 -0
- package/esm/typings/src/book-components/Qr/GenericQrCode.d.ts +10 -0
- package/esm/typings/src/book-components/Qr/PromptbookQrCode.d.ts +18 -0
- package/esm/typings/src/book-components/Qr/useQrCode.d.ts +15 -0
- package/esm/typings/src/book-components/_common/Dropdown/Dropdown.d.ts +15 -0
- package/esm/typings/src/book-components/_common/HamburgerMenu/HamburgerMenu.d.ts +12 -0
- package/esm/typings/src/book-components/_common/Modal/Modal.d.ts +13 -0
- package/esm/typings/src/book-components/_common/Tooltip/Tooltip.d.ts +47 -0
- package/esm/typings/src/book-components/_common/react-utils/classNames.d.ts +1 -1
- package/esm/typings/src/book-components/icons/AboutIcon.d.ts +9 -0
- package/esm/typings/src/book-components/icons/CloseIcon.d.ts +4 -8
- package/esm/typings/src/book-components/icons/DownloadIcon.d.ts +9 -0
- package/esm/typings/src/book-components/icons/ExitFullscreenIcon.d.ts +7 -0
- package/esm/typings/src/book-components/icons/FullscreenIcon.d.ts +7 -0
- package/esm/typings/src/book-components/icons/MenuIcon.d.ts +12 -0
- package/esm/typings/src/book-components/icons/MicIcon.d.ts +8 -0
- package/esm/typings/src/cli/cli-commands/_boilerplate.d.ts +2 -1
- package/esm/typings/src/cli/cli-commands/about.d.ts +3 -1
- package/esm/typings/src/cli/cli-commands/hello.d.ts +2 -1
- package/esm/typings/src/cli/cli-commands/list-models.d.ts +2 -1
- package/esm/typings/src/cli/cli-commands/list-scrapers.d.ts +2 -1
- package/esm/typings/src/cli/cli-commands/login.d.ts +2 -1
- package/esm/typings/src/cli/cli-commands/make.d.ts +2 -1
- package/esm/typings/src/cli/cli-commands/prettify.d.ts +2 -1
- package/esm/typings/src/cli/cli-commands/run.d.ts +2 -1
- package/esm/typings/src/cli/cli-commands/{start-server.d.ts → start-agents-server.d.ts} +3 -2
- package/esm/typings/src/cli/cli-commands/start-pipelines-server.d.ts +15 -0
- package/esm/typings/src/cli/cli-commands/test-command.d.ts +2 -1
- package/esm/typings/src/cli/common/$addGlobalOptionsToCommand.d.ts +2 -1
- package/esm/typings/src/collection/agent-collection/AgentCollection.d.ts +12 -0
- package/esm/typings/src/collection/agent-collection/constructors/agent-collection-in-supabase/AgentCollectionInSupabase.d.ts +75 -0
- package/esm/typings/src/collection/agent-collection/constructors/agent-collection-in-supabase/AgentCollectionInSupabaseOptions.d.ts +10 -0
- package/esm/typings/src/collection/agent-collection/constructors/agent-collection-in-supabase/AgentsDatabaseSchema.d.ts +154 -0
- package/esm/typings/src/collection/{PipelineCollection.d.ts → pipeline-collection/PipelineCollection.d.ts} +7 -3
- package/esm/typings/src/collection/{SimplePipelineCollection.d.ts → pipeline-collection/SimplePipelineCollection.d.ts} +5 -5
- package/esm/typings/src/collection/{constructors/createCollectionFromDirectory.d.ts → pipeline-collection/constructors/createPipelineCollectionFromDirectory.d.ts} +8 -11
- package/esm/typings/src/collection/pipeline-collection/constructors/createPipelineCollectionFromJson.d.ts +13 -0
- package/esm/typings/src/collection/{constructors/createCollectionFromPromise.d.ts → pipeline-collection/constructors/createPipelineCollectionFromPromise.d.ts} +6 -5
- package/esm/typings/src/collection/pipeline-collection/constructors/createPipelineCollectionFromPromise.test.d.ts +1 -0
- package/esm/typings/src/collection/{constructors/createCollectionFromUrl.d.ts → pipeline-collection/constructors/createPipelineCollectionFromUrl.d.ts} +3 -3
- package/esm/typings/src/collection/{constructors/createSubcollection.d.ts → pipeline-collection/constructors/createPipelineSubcollection.d.ts} +3 -3
- package/esm/typings/src/collection/pipeline-collection/pipelineCollectionToJson.d.ts +13 -0
- package/esm/typings/src/commands/_common/types/CommandParser.d.ts +4 -5
- package/esm/typings/src/{book-2.0/commitments → commitments}/ACTION/ACTION.d.ts +5 -1
- package/esm/typings/src/commitments/CLOSED/CLOSED.d.ts +35 -0
- package/esm/typings/src/commitments/COMPONENT/COMPONENT.d.ts +28 -0
- package/esm/typings/src/{book-2.0/commitments → commitments}/DELETE/DELETE.d.ts +5 -1
- package/esm/typings/src/{book-2.0/commitments → commitments}/FORMAT/FORMAT.d.ts +5 -1
- package/esm/typings/src/commitments/FROM/FROM.d.ts +34 -0
- package/esm/typings/src/{book-2.0/commitments → commitments}/GOAL/GOAL.d.ts +5 -1
- package/esm/typings/src/{book-2.0/commitments → commitments}/KNOWLEDGE/KNOWLEDGE.d.ts +5 -5
- package/esm/typings/src/commitments/LANGUAGE/LANGUAGE.d.ts +35 -0
- package/esm/typings/src/{book-2.0/commitments → commitments}/MEMORY/MEMORY.d.ts +5 -1
- package/esm/typings/src/commitments/MESSAGE/AgentMessageCommitmentDefinition.d.ts +32 -0
- package/esm/typings/src/commitments/MESSAGE/InitialMessageCommitmentDefinition.d.ts +32 -0
- package/esm/typings/src/{book-2.0/commitments → commitments}/MESSAGE/MESSAGE.d.ts +5 -1
- package/esm/typings/src/commitments/MESSAGE/UserMessageCommitmentDefinition.d.ts +32 -0
- package/esm/typings/src/{book-2.0/commitments → commitments}/META/META.d.ts +5 -1
- package/esm/typings/src/commitments/META_COLOR/META_COLOR.d.ts +48 -0
- package/esm/typings/src/commitments/META_FONT/META_FONT.d.ts +42 -0
- package/esm/typings/src/{book-2.0/commitments → commitments}/META_IMAGE/META_IMAGE.d.ts +5 -1
- package/esm/typings/src/{book-2.0/commitments → commitments}/META_LINK/META_LINK.d.ts +5 -1
- package/esm/typings/src/{book-2.0/commitments → commitments}/MODEL/MODEL.d.ts +5 -1
- package/esm/typings/src/{book-2.0/commitments → commitments}/NOTE/NOTE.d.ts +5 -1
- package/esm/typings/src/commitments/OPEN/OPEN.d.ts +35 -0
- package/esm/typings/src/{book-2.0/commitments → commitments}/PERSONA/PERSONA.d.ts +5 -1
- package/esm/typings/src/{book-2.0/commitments → commitments}/RULE/RULE.d.ts +5 -1
- package/esm/typings/src/{book-2.0/commitments → commitments}/SAMPLE/SAMPLE.d.ts +5 -1
- package/esm/typings/src/{book-2.0/commitments → commitments}/SCENARIO/SCENARIO.d.ts +5 -1
- package/esm/typings/src/{book-2.0/commitments → commitments}/STYLE/STYLE.d.ts +5 -1
- package/esm/typings/src/commitments/USE/USE.d.ts +53 -0
- package/esm/typings/src/commitments/USE_BROWSER/USE_BROWSER.d.ts +38 -0
- package/esm/typings/src/commitments/USE_BROWSER/USE_BROWSER.test.d.ts +1 -0
- package/esm/typings/src/commitments/USE_MCP/USE_MCP.d.ts +37 -0
- package/esm/typings/src/commitments/USE_SEARCH_ENGINE/USE_SEARCH_ENGINE.d.ts +38 -0
- package/esm/typings/src/{book-2.0/commitments → commitments}/_base/BaseCommitmentDefinition.d.ts +8 -2
- package/esm/typings/src/{book-2.0/commitments → commitments}/_base/CommitmentDefinition.d.ts +6 -1
- package/esm/typings/src/{book-2.0/commitments → commitments}/_base/NotYetImplementedCommitmentDefinition.d.ts +5 -1
- package/esm/typings/src/{book-2.0/commitments → commitments}/_base/createEmptyAgentModelRequirements.d.ts +1 -1
- package/esm/typings/src/commitments/index.d.ts +93 -0
- package/esm/typings/src/config.d.ts +24 -3
- package/esm/typings/src/conversion/validation/validatePipeline.d.ts +2 -0
- package/esm/typings/src/errors/0-index.d.ts +6 -0
- package/esm/typings/src/errors/DatabaseError.d.ts +12 -0
- package/esm/typings/src/errors/NotAllowed.d.ts +9 -0
- package/esm/typings/src/errors/WrappedError.d.ts +2 -2
- package/esm/typings/src/execution/AvailableModel.d.ts +1 -0
- package/esm/typings/src/execution/Executables.d.ts +3 -0
- package/esm/typings/src/execution/ExecutionTask.d.ts +12 -3
- package/esm/typings/src/execution/ExecutionTools.d.ts +5 -0
- package/esm/typings/src/execution/FilesystemTools.d.ts +1 -1
- package/esm/typings/src/execution/LlmExecutionTools.d.ts +21 -1
- package/esm/typings/src/execution/createPipelineExecutor/10-executePipeline.d.ts +5 -0
- package/esm/typings/src/execution/createPipelineExecutor/20-executeTask.d.ts +5 -0
- package/esm/typings/src/execution/createPipelineExecutor/30-executeFormatSubvalues.d.ts +5 -0
- package/esm/typings/src/execution/createPipelineExecutor/40-executeAttempts.d.ts +5 -0
- package/esm/typings/src/execution/utils/usage-constants.d.ts +4 -124
- package/esm/typings/src/execution/utils/validatePromptResult.d.ts +2 -0
- package/esm/typings/src/high-level-abstractions/_common/HighLevelAbstraction.d.ts +2 -1
- package/esm/typings/src/llm-providers/_common/register/$provideLlmToolsForWizardOrCli.d.ts +2 -2
- package/esm/typings/src/llm-providers/_common/register/$registeredLlmToolsMessage.d.ts +2 -1
- package/esm/typings/src/llm-providers/_common/register/LlmToolsMetadata.d.ts +1 -1
- package/esm/typings/src/llm-providers/_common/utils/assertUniqueModels.d.ts +12 -0
- package/esm/typings/src/llm-providers/_multiple/getSingleLlmExecutionTools.d.ts +1 -0
- package/esm/typings/src/llm-providers/_multiple/joinLlmExecutionTools.d.ts +1 -0
- package/esm/typings/src/llm-providers/agent/Agent.d.ts +70 -0
- package/esm/typings/src/llm-providers/agent/AgentLlmExecutionTools.d.ts +26 -4
- package/esm/typings/src/llm-providers/agent/AgentOptions.d.ts +19 -0
- package/esm/typings/src/llm-providers/agent/CreateAgentLlmExecutionToolsOptions.d.ts +17 -0
- package/esm/typings/src/llm-providers/agent/RemoteAgent.d.ts +50 -0
- package/esm/typings/src/llm-providers/agent/RemoteAgentOptions.d.ts +11 -0
- package/esm/typings/src/llm-providers/agent/createAgentLlmExecutionTools.d.ts +1 -19
- package/esm/typings/src/llm-providers/anthropic-claude/anthropic-claude-models.d.ts +1 -1
- package/esm/typings/src/llm-providers/google/google-models.d.ts +1 -1
- package/esm/typings/src/llm-providers/openai/OpenAiAssistantExecutionTools.d.ts +60 -2
- package/esm/typings/src/llm-providers/openai/OpenAiAssistantExecutionToolsOptions.d.ts +7 -1
- package/esm/typings/src/llm-providers/openai/openai-models.d.ts +1 -1
- package/esm/typings/src/llm-providers/openai/openai-models.test.d.ts +4 -0
- package/esm/typings/src/other/templates/getTemplatesPipelineCollection.d.ts +1 -1
- package/esm/typings/src/pipeline/validatePipelineString.d.ts +2 -0
- package/esm/typings/src/playground/permanent/_boilerplate.d.ts +5 -0
- package/esm/typings/src/playground/permanent/agent-with-browser-playground.d.ts +5 -0
- package/esm/typings/src/prepare/PrepareAndScrapeOptions.d.ts +1 -0
- package/esm/typings/src/remote-server/startAgentServer.d.ts +26 -0
- package/esm/typings/src/remote-server/startRemoteServer.d.ts +4 -1
- package/esm/typings/src/remote-server/types/RemoteServerOptions.d.ts +3 -8
- package/esm/typings/src/scrapers/_boilerplate/createBoilerplateScraper.d.ts +1 -12
- package/esm/typings/src/scrapers/_boilerplate/register-metadata.d.ts +1 -9
- package/esm/typings/src/scrapers/document/createDocumentScraper.d.ts +1 -12
- package/esm/typings/src/scrapers/document/register-metadata.d.ts +1 -9
- package/esm/typings/src/scrapers/document-legacy/createLegacyDocumentScraper.d.ts +1 -12
- package/esm/typings/src/scrapers/document-legacy/register-metadata.d.ts +1 -9
- package/esm/typings/src/scrapers/markdown/createMarkdownScraper.d.ts +1 -12
- package/esm/typings/src/scrapers/markdown/register-metadata.d.ts +1 -9
- package/esm/typings/src/scrapers/markitdown/createMarkitdownScraper.d.ts +1 -12
- package/esm/typings/src/scrapers/markitdown/register-metadata.d.ts +1 -9
- package/esm/typings/src/scrapers/pdf/createPdfScraper.d.ts +1 -12
- package/esm/typings/src/scrapers/pdf/register-metadata.d.ts +1 -9
- package/esm/typings/src/scrapers/website/createWebsiteScraper.d.ts +1 -12
- package/esm/typings/src/scrapers/website/register-metadata.d.ts +1 -9
- package/esm/typings/src/storage/_common/PromptbookStorage.d.ts +1 -0
- package/esm/typings/src/storage/env-storage/$EnvStorage.d.ts +2 -1
- package/esm/typings/src/transpilers/_common/BookTranspiler.d.ts +33 -0
- package/esm/typings/src/transpilers/_common/BookTranspilerOptions.d.ts +18 -0
- package/esm/typings/src/transpilers/_common/register/$bookTranspilersRegister.d.ts +15 -0
- package/esm/typings/src/transpilers/formatted-book-in-markdown/FormattedBookInMarkdownTranspiler.d.ts +16 -0
- package/esm/typings/src/transpilers/formatted-book-in-markdown/register.d.ts +15 -0
- package/esm/typings/src/transpilers/openai-sdk/OpenAiSdkTranspiler.d.ts +16 -0
- package/esm/typings/src/transpilers/openai-sdk/OpenAiSdkTranspiler.test.d.ts +1 -0
- package/esm/typings/src/transpilers/openai-sdk/playground/playground.d.ts +5 -0
- package/esm/typings/src/transpilers/openai-sdk/register.d.ts +15 -0
- package/esm/typings/src/types/LlmCall.d.ts +20 -0
- package/esm/typings/src/types/Updatable.d.ts +19 -0
- package/esm/typings/src/types/typeAliases.d.ts +32 -2
- package/esm/typings/src/utils/color/$randomColor.d.ts +1 -0
- package/esm/typings/src/utils/color/Color.d.ts +15 -0
- package/esm/typings/src/utils/color/Color.test.d.ts +1 -0
- package/esm/typings/src/utils/color/css-colors.d.ts +1 -0
- package/esm/typings/src/utils/color/internal-utils/checkChannelValue.d.ts +0 -3
- package/esm/typings/src/utils/color/operators/darken.d.ts +1 -1
- package/esm/typings/src/utils/color/operators/grayscale.d.ts +1 -1
- package/esm/typings/src/utils/color/operators/lighten.d.ts +1 -1
- package/esm/typings/src/utils/color/operators/mixWithColor.d.ts +1 -1
- package/esm/typings/src/utils/color/operators/saturate.d.ts +1 -1
- package/esm/typings/src/utils/environment/$detectRuntimeEnvironment.d.ts +16 -0
- package/esm/typings/src/utils/environment/$getGlobalScope.d.ts +2 -2
- package/esm/typings/src/utils/execCommand/$execCommand.d.ts +2 -1
- package/esm/typings/src/utils/execCommand/$execCommands.d.ts +2 -1
- package/esm/typings/src/utils/files/$induceBookDownload.d.ts +13 -0
- package/esm/typings/src/utils/files/$induceFileDownload.d.ts +13 -0
- package/esm/typings/src/utils/files/ObjectUrl.d.ts +46 -0
- package/esm/typings/src/utils/files/listAllFiles.d.ts +2 -3
- package/esm/typings/src/utils/misc/aboutPromptbookInformation.d.ts +27 -0
- package/esm/typings/src/utils/misc/computeHash.d.ts +11 -0
- package/esm/typings/src/utils/misc/computeHash.test.d.ts +1 -0
- package/esm/typings/src/utils/misc/injectCssModuleIntoShadowRoot.d.ts +1 -0
- package/esm/typings/src/utils/misc/xAboutPromptbookInformation.d.ts +13 -0
- package/esm/typings/src/utils/normalization/normalize-to-kebab-case.d.ts +2 -0
- package/esm/typings/src/utils/normalization/normalizeMessageText.d.ts +9 -0
- package/esm/typings/src/utils/normalization/normalizeMessageText.test.d.ts +1 -0
- package/esm/typings/src/utils/normalization/normalizeTo_PascalCase.d.ts +3 -0
- package/esm/typings/src/utils/normalization/normalizeTo_camelCase.d.ts +2 -0
- package/esm/typings/src/utils/normalization/titleToName.d.ts +2 -0
- package/esm/typings/src/utils/organization/$sideEffect.d.ts +2 -2
- package/esm/typings/src/utils/organization/$side_effect.d.ts +7 -0
- package/esm/typings/src/utils/organization/TODO_USE.d.ts +2 -2
- package/esm/typings/src/utils/organization/keepUnused.d.ts +2 -2
- package/esm/typings/src/utils/organization/preserve.d.ts +3 -3
- package/esm/typings/src/utils/organization/really_any.d.ts +7 -0
- package/esm/typings/src/utils/random/$generateBookBoilerplate.d.ts +25 -0
- package/esm/typings/src/utils/random/$randomAgentPersona.d.ts +9 -0
- package/esm/typings/src/utils/random/$randomFullnameWithColor.d.ts +13 -0
- package/esm/typings/src/utils/random/$randomItem.d.ts +9 -0
- package/esm/typings/src/utils/random/$randomSeed.d.ts +3 -0
- package/esm/typings/src/utils/random/$randomToken.d.ts +2 -0
- package/esm/typings/src/utils/serialization/$deepFreeze.d.ts +2 -1
- package/esm/typings/src/utils/serialization/asSerializable.d.ts +2 -2
- package/esm/typings/src/utils/serialization/serializeToPromptbookJavascript.d.ts +2 -2
- package/esm/typings/src/utils/validators/parameterName/validateParameterName.d.ts +2 -0
- package/esm/typings/src/version.d.ts +1 -1
- package/esm/typings/src/wizard/$getCompiledBook.d.ts +1 -2
- package/package.json +15 -15
- package/umd/index.umd.js +5089 -356
- package/umd/index.umd.js.map +1 -1
- package/esm/typings/src/book-2.0/commitments/index.d.ts +0 -60
- package/esm/typings/src/book-components/BookEditor/BookEditorInner.d.ts +0 -5
- package/esm/typings/src/book-components/BookEditor/config.d.ts +0 -10
- package/esm/typings/src/book-components/Chat/utils/renderMarkdown.d.ts +0 -21
- package/esm/typings/src/collection/collectionToJson.d.ts +0 -13
- package/esm/typings/src/collection/constructors/createCollectionFromJson.d.ts +0 -13
- /package/esm/typings/src/{book-components/Chat/utils/renderMarkdown.test.d.ts → book-2.0/agent-source/computeAgentHash.test.d.ts} +0 -0
- /package/esm/typings/src/{collection/constructors/createCollectionFromDirectory.test.d.ts → book-2.0/agent-source/normalizeAgentName.test.d.ts} +0 -0
- /package/esm/typings/src/{collection/constructors/createCollectionFromJson.test.d.ts → book-components/Chat/AgentChat/AgentChat.test.d.ts} +0 -0
- /package/esm/typings/src/collection/{constructors/createCollectionFromPromise.test.d.ts → pipeline-collection/constructors/createPipelineCollectionFromDirectory.test.d.ts} +0 -0
- /package/esm/typings/src/{commands/_common/parseCommand.test.d.ts → collection/pipeline-collection/constructors/createPipelineCollectionFromJson.test.d.ts} +0 -0
- /package/esm/typings/src/collection/{collectionToJson.test.d.ts → pipeline-collection/pipelineCollectionToJson.test.d.ts} +0 -0
- /package/esm/typings/src/{book-2.0/commitments → commitments}/_base/BookCommitment.d.ts +0 -0
- /package/esm/typings/src/{book-2.0/commitments → commitments}/_base/ParsedCommitment.d.ts +0 -0
|
@@ -0,0 +1,182 @@
|
|
|
1
|
+
'use server';
|
|
2
|
+
|
|
3
|
+
import { $provideServer } from '@/src/tools/$provideServer';
|
|
4
|
+
import { PROMPTBOOK_COLOR } from '@promptbook-local/core';
|
|
5
|
+
import { ArrowLeftIcon, CodeIcon, HomeIcon, LinkIcon, ShareIcon } from 'lucide-react';
|
|
6
|
+
import { headers } from 'next/headers';
|
|
7
|
+
import Link from 'next/link';
|
|
8
|
+
import { notFound } from 'next/navigation';
|
|
9
|
+
import { Color } from '../../../../../../../src/utils/color/Color';
|
|
10
|
+
import { withAlpha } from '../../../../../../../src/utils/color/operators/withAlpha';
|
|
11
|
+
import { $sideEffect } from '../../../../../../../src/utils/organization/$sideEffect';
|
|
12
|
+
import { getAgentExternalLinks, getAgentLinks } from '../agentLinks';
|
|
13
|
+
import { CopyField } from '../CopyField';
|
|
14
|
+
import { getAgentName, getAgentProfile } from '../_utils';
|
|
15
|
+
import { generateAgentMetadata } from '../generateAgentMetadata';
|
|
16
|
+
|
|
17
|
+
export const generateMetadata = generateAgentMetadata;
|
|
18
|
+
|
|
19
|
+
export default async function AgentLinksPage({ params }: { params: Promise<{ agentName: string }> }) {
|
|
20
|
+
$sideEffect(headers());
|
|
21
|
+
const agentName = await getAgentName(params);
|
|
22
|
+
|
|
23
|
+
let agentProfile;
|
|
24
|
+
try {
|
|
25
|
+
agentProfile = await getAgentProfile(agentName);
|
|
26
|
+
} catch (error) {
|
|
27
|
+
if (
|
|
28
|
+
error instanceof Error &&
|
|
29
|
+
(error.message.includes('Cannot coerce the result to a single JSON object') ||
|
|
30
|
+
error.message.includes('JSON object requested, multiple (or no) results returned'))
|
|
31
|
+
) {
|
|
32
|
+
notFound();
|
|
33
|
+
}
|
|
34
|
+
throw error;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
const { publicUrl } = await $provideServer();
|
|
38
|
+
const baseUrl = `${publicUrl.href}agents/${encodeURIComponent(agentName)}`;
|
|
39
|
+
|
|
40
|
+
// Extract brand color from meta
|
|
41
|
+
const brandColor = Color.from(agentProfile.meta.color || PROMPTBOOK_COLOR);
|
|
42
|
+
const backgroundColor = (await brandColor.then(withAlpha(0.05))).toHex();
|
|
43
|
+
const borderColor = (await brandColor.then(withAlpha(0.1))).toHex();
|
|
44
|
+
const primaryColor = (await brandColor).toHex();
|
|
45
|
+
|
|
46
|
+
return (
|
|
47
|
+
<div
|
|
48
|
+
className="min-h-screen p-6 md:p-12 flex flex-col items-center"
|
|
49
|
+
style={{
|
|
50
|
+
backgroundColor,
|
|
51
|
+
}}
|
|
52
|
+
>
|
|
53
|
+
<div className="w-full max-w-3xl bg-white rounded-xl shadow-sm border border-gray-200 overflow-hidden">
|
|
54
|
+
{/* Header */}
|
|
55
|
+
<div className="p-6 border-b flex items-center gap-4" style={{ borderColor }}>
|
|
56
|
+
{agentProfile.meta.image && (
|
|
57
|
+
// eslint-disable-next-line @next/next/no-img-element
|
|
58
|
+
<img
|
|
59
|
+
src={agentProfile.meta.image as string}
|
|
60
|
+
alt={agentProfile.meta.fullname || agentName}
|
|
61
|
+
className="w-16 h-16 rounded-full object-cover border-2"
|
|
62
|
+
style={{ borderColor: primaryColor }}
|
|
63
|
+
/>
|
|
64
|
+
)}
|
|
65
|
+
<div className="flex-1">
|
|
66
|
+
<h1 className="text-2xl font-bold text-gray-900">{agentProfile.meta.fullname || agentName}</h1>
|
|
67
|
+
<p className="text-gray-500 flex items-center gap-2">
|
|
68
|
+
<LinkIcon className="w-4 h-4" />
|
|
69
|
+
Signpost & Links
|
|
70
|
+
</p>
|
|
71
|
+
</div>
|
|
72
|
+
<Link
|
|
73
|
+
href={`/agents/${encodeURIComponent(agentName)}`}
|
|
74
|
+
className="p-2 text-gray-500 hover:text-gray-700 hover:bg-gray-100 rounded-full transition-colors"
|
|
75
|
+
title="Back to Agent"
|
|
76
|
+
>
|
|
77
|
+
<ArrowLeftIcon className="w-6 h-6" />
|
|
78
|
+
</Link>
|
|
79
|
+
</div>
|
|
80
|
+
|
|
81
|
+
<div className="divide-y divide-gray-100">
|
|
82
|
+
{/* API Endpoints */}
|
|
83
|
+
<div className="p-6">
|
|
84
|
+
<h2 className="text-lg font-semibold text-gray-800 mb-4 flex items-center gap-2">
|
|
85
|
+
<CodeIcon className="w-5 h-5 text-gray-500" />
|
|
86
|
+
API Endpoints
|
|
87
|
+
</h2>
|
|
88
|
+
<div className="grid gap-4">
|
|
89
|
+
<div>
|
|
90
|
+
<h3 className="text-sm font-medium text-gray-700 mb-1">
|
|
91
|
+
OpenAI Compatible Chat Completion
|
|
92
|
+
</h3>
|
|
93
|
+
<p className="text-xs text-gray-500 mb-2">
|
|
94
|
+
Standard OpenAI API endpoint for chat completions.
|
|
95
|
+
</p>
|
|
96
|
+
<CopyField label="Endpoint URL" value={`${baseUrl}/api/openai/v1/chat/completions`} />
|
|
97
|
+
</div>
|
|
98
|
+
|
|
99
|
+
<div>
|
|
100
|
+
<h3 className="text-sm font-medium text-gray-700 mb-1">OpenRouter Compatible</h3>
|
|
101
|
+
<p className="text-xs text-gray-500 mb-2">
|
|
102
|
+
Endpoint compatible with OpenRouter API format.
|
|
103
|
+
</p>
|
|
104
|
+
<CopyField label="Endpoint URL" value={`${baseUrl}/api/openrouter/chat/completions`} />
|
|
105
|
+
</div>
|
|
106
|
+
|
|
107
|
+
<div>
|
|
108
|
+
<h3 className="text-sm font-medium text-gray-700 mb-1">Model Context Protocol (MCP)</h3>
|
|
109
|
+
<p className="text-xs text-gray-500 mb-2">
|
|
110
|
+
Endpoint for Model Context Protocol integration.
|
|
111
|
+
</p>
|
|
112
|
+
<CopyField label="Endpoint URL" value={`${baseUrl}/api/mcp`} />
|
|
113
|
+
</div>
|
|
114
|
+
|
|
115
|
+
<div>
|
|
116
|
+
<h3 className="text-sm font-medium text-gray-700 mb-1">Model Requirements</h3>
|
|
117
|
+
<p className="text-xs text-gray-500 mb-2">
|
|
118
|
+
Get requirements and capabilities of the model.
|
|
119
|
+
</p>
|
|
120
|
+
<CopyField label="Endpoint URL" value={`${baseUrl}/api/modelRequirements`} />
|
|
121
|
+
</div>
|
|
122
|
+
</div>
|
|
123
|
+
</div>
|
|
124
|
+
|
|
125
|
+
{/* Agent Resources */}
|
|
126
|
+
<div className="p-6">
|
|
127
|
+
<h2 className="text-lg font-semibold text-gray-800 mb-4 flex items-center gap-2">
|
|
128
|
+
<HomeIcon className="w-5 h-5 text-gray-500" />
|
|
129
|
+
Agent Resources
|
|
130
|
+
</h2>
|
|
131
|
+
<div className="grid md:grid-cols-2 gap-4">
|
|
132
|
+
{getAgentLinks(agentName)
|
|
133
|
+
.filter((link) =>
|
|
134
|
+
['Chat with Agent', 'History & Feedback', 'Integration'].includes(link.title),
|
|
135
|
+
)
|
|
136
|
+
.map((link) => (
|
|
137
|
+
<Link
|
|
138
|
+
key={link.href}
|
|
139
|
+
href={link.href}
|
|
140
|
+
className="block p-4 rounded-lg border border-gray-200 hover:border-gray-300 hover:shadow-md transition-all group bg-white"
|
|
141
|
+
>
|
|
142
|
+
<div className="flex items-center gap-3 mb-2">
|
|
143
|
+
<div className="p-2 rounded-lg bg-gray-50 text-gray-600 group-hover:bg-gray-100 transition-colors">
|
|
144
|
+
<link.icon className="w-5 h-5" />
|
|
145
|
+
</div>
|
|
146
|
+
<span className="font-medium text-gray-900">{link.title}</span>
|
|
147
|
+
</div>
|
|
148
|
+
<p className="text-sm text-gray-500">{link.description}</p>
|
|
149
|
+
</Link>
|
|
150
|
+
))}
|
|
151
|
+
</div>
|
|
152
|
+
</div>
|
|
153
|
+
|
|
154
|
+
{/* Ecosystem */}
|
|
155
|
+
<div className="p-6 bg-gray-50">
|
|
156
|
+
<h2 className="text-lg font-semibold text-gray-800 mb-4 flex items-center gap-2">
|
|
157
|
+
<ShareIcon className="w-5 h-5 text-gray-500" />
|
|
158
|
+
Promptbook Ecosystem
|
|
159
|
+
</h2>
|
|
160
|
+
<div className="grid md:grid-cols-2 gap-4">
|
|
161
|
+
{getAgentExternalLinks().map((link) => (
|
|
162
|
+
<a
|
|
163
|
+
key={link.href}
|
|
164
|
+
href={link.href}
|
|
165
|
+
target={link.target}
|
|
166
|
+
rel={link.rel}
|
|
167
|
+
className="flex items-center gap-3 p-3 rounded-lg bg-white border border-gray-200 hover:border-gray-300 transition-colors"
|
|
168
|
+
>
|
|
169
|
+
<link.icon className="w-5 h-5 text-gray-400" />
|
|
170
|
+
<div>
|
|
171
|
+
<div className="font-medium text-gray-900">{link.title}</div>
|
|
172
|
+
<div className="text-xs text-gray-500">{link.description}</div>
|
|
173
|
+
</div>
|
|
174
|
+
</a>
|
|
175
|
+
))}
|
|
176
|
+
</div>
|
|
177
|
+
</div>
|
|
178
|
+
</div>
|
|
179
|
+
</div>
|
|
180
|
+
</div>
|
|
181
|
+
);
|
|
182
|
+
}
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
import { PROMPTBOOK_COLOR } from '@promptbook-local/core';
|
|
2
|
+
import { serializeError } from '@promptbook-local/utils';
|
|
3
|
+
import { ImageResponse } from 'next/og';
|
|
4
|
+
import { assertsError } from '../../../../../../src/errors/assertsError';
|
|
5
|
+
import { Color } from '../../../../../../src/utils/color/Color';
|
|
6
|
+
import { textColor } from '../../../../../../src/utils/color/operators/furthest';
|
|
7
|
+
import { grayscale } from '../../../../../../src/utils/color/operators/grayscale';
|
|
8
|
+
import { getAgentName, getAgentProfile } from './_utils';
|
|
9
|
+
|
|
10
|
+
// export const runtime = 'edge';
|
|
11
|
+
// <- Note: On Vercel Edge runtime some modules are not working *(like `crypto`)*
|
|
12
|
+
|
|
13
|
+
export const alt = 'Agent Profile';
|
|
14
|
+
export const size = {
|
|
15
|
+
width: 1200,
|
|
16
|
+
height: 630,
|
|
17
|
+
};
|
|
18
|
+
|
|
19
|
+
export const contentType = 'image/png';
|
|
20
|
+
|
|
21
|
+
export default async function Image({ params }: { params: Promise<{ agentName: string }> }) {
|
|
22
|
+
try {
|
|
23
|
+
const agentName = await getAgentName(params);
|
|
24
|
+
const agentProfile = await getAgentProfile(agentName);
|
|
25
|
+
const agentColor = Color.from(agentProfile.meta.color || PROMPTBOOK_COLOR);
|
|
26
|
+
const backgroundColor = agentColor.then(grayscale(0.5));
|
|
27
|
+
|
|
28
|
+
return new ImageResponse(
|
|
29
|
+
(
|
|
30
|
+
<div
|
|
31
|
+
style={{
|
|
32
|
+
width: '100%',
|
|
33
|
+
height: '100%',
|
|
34
|
+
backgroundColor: backgroundColor.toHex(),
|
|
35
|
+
color: agentColor.then(textColor).toHex(),
|
|
36
|
+
display: 'flex',
|
|
37
|
+
alignItems: 'center',
|
|
38
|
+
justifyContent: 'center',
|
|
39
|
+
}}
|
|
40
|
+
>
|
|
41
|
+
<div
|
|
42
|
+
style={{
|
|
43
|
+
width: '50%',
|
|
44
|
+
display: 'flex',
|
|
45
|
+
alignItems: 'center',
|
|
46
|
+
justifyContent: 'center',
|
|
47
|
+
}}
|
|
48
|
+
>
|
|
49
|
+
{/* Note: `next/image` is not working propperly with `next/og` */}
|
|
50
|
+
{/* eslint-disable-next-line @next/next/no-img-element */}
|
|
51
|
+
<img
|
|
52
|
+
style={{
|
|
53
|
+
width: '80%',
|
|
54
|
+
backgroundColor: agentColor.toHex(),
|
|
55
|
+
borderRadius: '50%',
|
|
56
|
+
}}
|
|
57
|
+
src={agentProfile.meta.image!}
|
|
58
|
+
alt="Agent Icon"
|
|
59
|
+
/>
|
|
60
|
+
</div>
|
|
61
|
+
<div
|
|
62
|
+
style={{
|
|
63
|
+
width: '50%',
|
|
64
|
+
display: 'flex',
|
|
65
|
+
alignItems: 'center',
|
|
66
|
+
justifyContent: 'center',
|
|
67
|
+
textAlign: 'center',
|
|
68
|
+
}}
|
|
69
|
+
>
|
|
70
|
+
<h1 style={{ fontSize: '100px' }}>{agentProfile.meta.fullname || agentName}</h1>
|
|
71
|
+
</div>
|
|
72
|
+
</div>
|
|
73
|
+
),
|
|
74
|
+
{
|
|
75
|
+
...size,
|
|
76
|
+
emoji: 'openmoji',
|
|
77
|
+
},
|
|
78
|
+
);
|
|
79
|
+
} catch (error) {
|
|
80
|
+
assertsError(error);
|
|
81
|
+
|
|
82
|
+
console.error(error);
|
|
83
|
+
|
|
84
|
+
return new Response(
|
|
85
|
+
JSON.stringify(
|
|
86
|
+
serializeError(error),
|
|
87
|
+
// <- TODO: [🐱🚀] Rename `serializeError` to `errorToJson`
|
|
88
|
+
null,
|
|
89
|
+
4,
|
|
90
|
+
// <- TODO: [🐱🚀] Allow to configure pretty print for agent server
|
|
91
|
+
),
|
|
92
|
+
{
|
|
93
|
+
status: 400, // <- TODO: [🐱🚀] Make `errorToHttpStatusCode`
|
|
94
|
+
headers: { 'Content-Type': 'application/json' },
|
|
95
|
+
},
|
|
96
|
+
);
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
/**
|
|
101
|
+
* TODO: [🦚] DRY
|
|
102
|
+
*/
|
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
'use server';
|
|
2
|
+
|
|
3
|
+
import { $provideServer } from '@/src/tools/$provideServer';
|
|
4
|
+
import { isUserAdmin } from '@/src/utils/isUserAdmin';
|
|
5
|
+
import { PROMPTBOOK_COLOR } from '@promptbook-local/core';
|
|
6
|
+
import { notFound } from 'next/navigation';
|
|
7
|
+
import spaceTrim from 'spacetrim';
|
|
8
|
+
import { Color } from '../../../../../../src/utils/color/Color';
|
|
9
|
+
import { darken } from '../../../../../../src/utils/color/operators/darken';
|
|
10
|
+
import { lighten } from '../../../../../../src/utils/color/operators/lighten';
|
|
11
|
+
import { getAgentName, getAgentProfile } from './_utils';
|
|
12
|
+
import { AgentProfileView } from './AgentProfileView';
|
|
13
|
+
import { generateAgentMetadata } from './generateAgentMetadata';
|
|
14
|
+
import { ServiceWorkerRegister } from './ServiceWorkerRegister';
|
|
15
|
+
|
|
16
|
+
export const generateMetadata = generateAgentMetadata;
|
|
17
|
+
|
|
18
|
+
export default async function AgentPage({ params }: { params: Promise<{ agentName: string }> }) {
|
|
19
|
+
const agentName = await getAgentName(params);
|
|
20
|
+
const isAdmin = await isUserAdmin();
|
|
21
|
+
|
|
22
|
+
let agentProfile;
|
|
23
|
+
try {
|
|
24
|
+
agentProfile = await getAgentProfile(agentName);
|
|
25
|
+
} catch (error) {
|
|
26
|
+
if (
|
|
27
|
+
error instanceof Error &&
|
|
28
|
+
// Note: This is a bit hacky, but valid way to check for specific error message
|
|
29
|
+
(error.message.includes('Cannot coerce the result to a single JSON object') ||
|
|
30
|
+
error.message.includes('JSON object requested, multiple (or no) results returned'))
|
|
31
|
+
) {
|
|
32
|
+
notFound();
|
|
33
|
+
}
|
|
34
|
+
throw error;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
const { publicUrl } = await $provideServer();
|
|
38
|
+
|
|
39
|
+
// Build agent page URL for QR and copy
|
|
40
|
+
const agentUrl = `${publicUrl.href}${encodeURIComponent(agentName)}`;
|
|
41
|
+
// <- TODO: [🐱🚀] Better
|
|
42
|
+
|
|
43
|
+
const agentEmail = `${agentName}@${publicUrl.hostname}`;
|
|
44
|
+
|
|
45
|
+
// Extract brand color from meta and create color variations
|
|
46
|
+
const brandColorString = agentProfile.meta.color || PROMPTBOOK_COLOR.toHex();
|
|
47
|
+
const brandColors = brandColorString.split(',').map((c) => Color.fromSafe(c.trim()));
|
|
48
|
+
|
|
49
|
+
// Ensure at least one color
|
|
50
|
+
if (brandColors.length === 0) {
|
|
51
|
+
brandColors.push(PROMPTBOOK_COLOR);
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
const brandColor = brandColors[0]!;
|
|
55
|
+
const brandColorHex = brandColor.toHex();
|
|
56
|
+
const brandColorLightHex = brandColor.then(lighten(0.2)).toHex();
|
|
57
|
+
const brandColorDarkHex = brandColor.then(darken(0.15)).toHex();
|
|
58
|
+
const brandColorsHex = brandColors.map((c) => c.toHex());
|
|
59
|
+
|
|
60
|
+
// Generate Noisy SVG Background
|
|
61
|
+
const color1 = brandColors[0]!;
|
|
62
|
+
const color2 = brandColors[1] || brandColors[0]!; // Use secondary color or fallback to primary
|
|
63
|
+
|
|
64
|
+
// [🧠] Make colors much lighter for the background as per feedback
|
|
65
|
+
const color1Light = color1.then(lighten(0.3)).toHex();
|
|
66
|
+
const color1Main = color1.toHex();
|
|
67
|
+
const color1Dark = color1.then(darken(0.3)).toHex();
|
|
68
|
+
|
|
69
|
+
const color2Light = color2.then(lighten(0.3)).toHex();
|
|
70
|
+
const color2Main = color2.toHex();
|
|
71
|
+
const color2Dark = color2.then(darken(0.3)).toHex();
|
|
72
|
+
|
|
73
|
+
const svgContent = spaceTrim(`
|
|
74
|
+
<svg xmlns="http://www.w3.org/2000/svg"
|
|
75
|
+
viewBox="0 0 1920 1080"
|
|
76
|
+
width="1920" height="1080"
|
|
77
|
+
preserveAspectRatio="xMidYMid slice">
|
|
78
|
+
<defs>
|
|
79
|
+
<!-- Bottom-left -->
|
|
80
|
+
<radialGradient id="grad1" cx="0%" cy="100%" r="90%">
|
|
81
|
+
<stop offset="0%" stop-color="${color1Light}" />
|
|
82
|
+
<stop offset="50%" stop-color="${color1Main}" />
|
|
83
|
+
<stop offset="100%" stop-color="${color1Dark}" />
|
|
84
|
+
</radialGradient>
|
|
85
|
+
|
|
86
|
+
<!-- Bottom-right -->
|
|
87
|
+
<radialGradient id="grad2" cx="100%" cy="100%" r="90%">
|
|
88
|
+
<stop offset="0%" stop-color="${color2Light}" />
|
|
89
|
+
<stop offset="50%" stop-color="${color2Main}" />
|
|
90
|
+
<stop offset="100%" stop-color="${color2Dark}" />
|
|
91
|
+
</radialGradient>
|
|
92
|
+
|
|
93
|
+
<!-- White top fade -->
|
|
94
|
+
<linearGradient id="whiteTopGrad" x1="0%" y1="0%" x2="0%" y2="100%">
|
|
95
|
+
<stop offset="0%" stop-color="#ffffff" stop-opacity="1" />
|
|
96
|
+
<stop offset="100%" stop-color="#ffffff" stop-opacity="0.3" />
|
|
97
|
+
</linearGradient>
|
|
98
|
+
|
|
99
|
+
<!-- Strong grain -->
|
|
100
|
+
<filter id="grain" x="-10%" y="-10%" width="120%" height="120%">
|
|
101
|
+
<feTurbulence type="fractalNoise" baseFrequency="3.5" numOctaves="3" seed="8" result="noise" />
|
|
102
|
+
<feComponentTransfer>
|
|
103
|
+
<feFuncR type="linear" slope="3.5" intercept="-1.2" />
|
|
104
|
+
<feFuncG type="linear" slope="3.5" intercept="-1.2" />
|
|
105
|
+
<feFuncB type="linear" slope="3.5" intercept="-1.2" />
|
|
106
|
+
<feFuncA type="table" tableValues="0 0.8" />
|
|
107
|
+
</feComponentTransfer>
|
|
108
|
+
</filter>
|
|
109
|
+
</defs>
|
|
110
|
+
|
|
111
|
+
<!-- White base -->
|
|
112
|
+
<rect width="100%" height="100%" fill="#ffffff" />
|
|
113
|
+
|
|
114
|
+
<!-- Gradients -->
|
|
115
|
+
<rect width="100%" height="100%" fill="url(#grad1)" />
|
|
116
|
+
<rect width="100%" height="100%" fill="url(#grad2)" style="mix-blend-mode:screen; opacity:0.85" />
|
|
117
|
+
|
|
118
|
+
<!-- White fade on top -->
|
|
119
|
+
<rect width="100%" height="100%" fill="url(#whiteTopGrad)" />
|
|
120
|
+
|
|
121
|
+
<!-- Strong visible noise -->
|
|
122
|
+
<rect width="100%" height="100%" filter="url(#grain)"
|
|
123
|
+
style="mix-blend-mode:soft-light; opacity:1.2" />
|
|
124
|
+
</svg>
|
|
125
|
+
`);
|
|
126
|
+
|
|
127
|
+
const backgroundImage = `data:image/svg+xml;charset=utf-8,${encodeURIComponent(svgContent)}`;
|
|
128
|
+
|
|
129
|
+
const fullname = (agentProfile.meta.fullname || agentProfile.agentName || 'Agent') as string;
|
|
130
|
+
const imageUrl = (agentProfile.meta.image as string) || null;
|
|
131
|
+
|
|
132
|
+
return (
|
|
133
|
+
<>
|
|
134
|
+
<ServiceWorkerRegister scope={`/agents/${encodeURIComponent(agentName)}/`} />
|
|
135
|
+
<AgentProfileView
|
|
136
|
+
agentName={agentName}
|
|
137
|
+
fullname={fullname}
|
|
138
|
+
personaDescription={agentProfile.personaDescription || ''}
|
|
139
|
+
imageUrl={imageUrl}
|
|
140
|
+
agentUrl={agentUrl}
|
|
141
|
+
agentEmail={agentEmail}
|
|
142
|
+
brandColorHex={brandColorHex}
|
|
143
|
+
brandColorLightHex={brandColorLightHex}
|
|
144
|
+
brandColorDarkHex={brandColorDarkHex}
|
|
145
|
+
brandColorsHex={brandColorsHex}
|
|
146
|
+
backgroundImage={backgroundImage}
|
|
147
|
+
meta={agentProfile.meta}
|
|
148
|
+
isAdmin={isAdmin}
|
|
149
|
+
/>
|
|
150
|
+
</>
|
|
151
|
+
);
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
/**
|
|
155
|
+
* TODO: [🐱🚀] Make this page look nice - 🃏
|
|
156
|
+
* TODO: [🐱🚀] Show usage of LLM
|
|
157
|
+
* TODO: [🚗] Components and pages here should be just tiny UI wraper around proper agent logic and conponents
|
|
158
|
+
* TODO: [🎣][🧠] Maybe do API / Page for transpilers, Allow to export each agent
|
|
159
|
+
*/
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
'use server';
|
|
2
|
+
|
|
3
|
+
import { $provideAgentCollectionForServer } from '@/src/tools/$provideAgentCollectionForServer';
|
|
4
|
+
import { $provideServer } from '@/src/tools/$provideServer';
|
|
5
|
+
import { PromptbookAgent } from '@promptbook-local/components';
|
|
6
|
+
import { parseAgentSource } from '@promptbook-local/core';
|
|
7
|
+
import { headers } from 'next/headers';
|
|
8
|
+
import spaceTrim from 'spacetrim';
|
|
9
|
+
import { $sideEffect } from '../../../../../../../src/utils/organization/$sideEffect';
|
|
10
|
+
import { CodePreview } from '../../../../../../_common/components/CodePreview/CodePreview';
|
|
11
|
+
import { generateAgentMetadata } from '../generateAgentMetadata';
|
|
12
|
+
|
|
13
|
+
export const generateMetadata = generateAgentMetadata;
|
|
14
|
+
|
|
15
|
+
export default async function WebsiteIntegrationAgentPage({ params }: { params: Promise<{ agentName: string }> }) {
|
|
16
|
+
$sideEffect(headers());
|
|
17
|
+
let { agentName } = await params;
|
|
18
|
+
agentName = decodeURIComponent(agentName);
|
|
19
|
+
|
|
20
|
+
const collection = await $provideAgentCollectionForServer();
|
|
21
|
+
const agentSource = await collection.getAgentSource(agentName);
|
|
22
|
+
const { meta } = parseAgentSource(agentSource);
|
|
23
|
+
const { fullname, color, image, ...restMeta } = meta;
|
|
24
|
+
const { publicUrl } = await $provideServer();
|
|
25
|
+
const agentUrl = `${publicUrl.href}agents/${encodeURIComponent(agentName)}`;
|
|
26
|
+
|
|
27
|
+
const code = spaceTrim(
|
|
28
|
+
(block) => `
|
|
29
|
+
|
|
30
|
+
import { PromptbookAgent } from '@promptbook/components';
|
|
31
|
+
|
|
32
|
+
export function YourComponent() {
|
|
33
|
+
return(
|
|
34
|
+
<PromptbookAgent
|
|
35
|
+
agentUrl="${agentUrl}"
|
|
36
|
+
meta={${block(JSON.stringify({ fullname, color, image, ...restMeta }, null, 4))}}
|
|
37
|
+
/>
|
|
38
|
+
);
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
`,
|
|
42
|
+
);
|
|
43
|
+
|
|
44
|
+
return (
|
|
45
|
+
<main className="w-screen h-screen p-4">
|
|
46
|
+
<h1 className="text-2xl font-bold p-4 border-b">{meta.fullname || agentName} Integration Code</h1>
|
|
47
|
+
<p className="mt-4 mb-8 text-gray-600">
|
|
48
|
+
Use the following code to integrate the <strong>{meta.fullname || agentName}</strong> agent into your
|
|
49
|
+
React application using the <code>{'<PromptbookAgent />'}</code> component.
|
|
50
|
+
</p>
|
|
51
|
+
|
|
52
|
+
<CodePreview code={code} />
|
|
53
|
+
<PromptbookAgent agentUrl={agentUrl} meta={meta} />
|
|
54
|
+
</main>
|
|
55
|
+
);
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
/**
|
|
59
|
+
* TODO: Make this page better, bring from Promptbook.Studio
|
|
60
|
+
* TODO: [🚗] Components and pages here should be just tiny UI wraper around proper agent logic and conponents
|
|
61
|
+
*/
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
// POST /api/agents/[agentName]/clone
|
|
2
|
+
import { $provideAgentCollectionForServer } from '@/src/tools/$provideAgentCollectionForServer';
|
|
3
|
+
import { AgentBasicInformation } from '../../../../../../../../src/book-2.0/agent-source/AgentBasicInformation';
|
|
4
|
+
import { string_book } from '../../../../../../../../src/book-2.0/agent-source/string_book';
|
|
5
|
+
import { TODO_any } from '@promptbook-local/types';
|
|
6
|
+
import { NextResponse } from 'next/server';
|
|
7
|
+
|
|
8
|
+
export async function POST(request: Request, { params }: { params: Promise<{ agentName: string }> }) {
|
|
9
|
+
const { agentName } = await params;
|
|
10
|
+
const collection = await $provideAgentCollectionForServer();
|
|
11
|
+
|
|
12
|
+
try {
|
|
13
|
+
const source = await collection.getAgentSource(agentName);
|
|
14
|
+
|
|
15
|
+
// Generate new name
|
|
16
|
+
// TODO: [🧠] Better naming strategy, maybe check for collisions
|
|
17
|
+
let newAgentName = `${agentName} (Copy)`;
|
|
18
|
+
let counter = 1;
|
|
19
|
+
|
|
20
|
+
// eslint-disable-next-line no-constant-condition
|
|
21
|
+
while (true) {
|
|
22
|
+
try {
|
|
23
|
+
await collection.getAgentSource(newAgentName);
|
|
24
|
+
// If success, it means it exists, so we try next one
|
|
25
|
+
counter++;
|
|
26
|
+
newAgentName = `${agentName} (Copy ${counter})`;
|
|
27
|
+
} catch (error) {
|
|
28
|
+
// If error, it likely means it does not exist (NotFoundError), so we can use it
|
|
29
|
+
// TODO: [🧠] Check if it is really NotFoundError
|
|
30
|
+
break;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
const lines = source.split('\n');
|
|
35
|
+
lines[0] = newAgentName;
|
|
36
|
+
const newSource = lines.join('\n') as string_book;
|
|
37
|
+
|
|
38
|
+
const newAgent = await collection.createAgent(newSource);
|
|
39
|
+
|
|
40
|
+
return NextResponse.json(newAgent);
|
|
41
|
+
} catch (error) {
|
|
42
|
+
return NextResponse.json(
|
|
43
|
+
{ success: false, error: (error as TODO_any)?.message || 'Failed to clone agent' },
|
|
44
|
+
{ status: 500 },
|
|
45
|
+
);
|
|
46
|
+
}
|
|
47
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
// DELETE /api/agents/[agentName]
|
|
2
|
+
import { $provideAgentCollectionForServer } from '@/src/tools/$provideAgentCollectionForServer';
|
|
3
|
+
import { TODO_any } from '@promptbook-local/types';
|
|
4
|
+
import { NextResponse } from 'next/server';
|
|
5
|
+
|
|
6
|
+
export async function DELETE(request: Request, { params }: { params: Promise<{ agentName: string }> }) {
|
|
7
|
+
const { agentName } = await params;
|
|
8
|
+
const collection = await $provideAgentCollectionForServer();
|
|
9
|
+
|
|
10
|
+
try {
|
|
11
|
+
await collection.deleteAgent(agentName);
|
|
12
|
+
return NextResponse.json({ success: true });
|
|
13
|
+
} catch (error) {
|
|
14
|
+
return NextResponse.json(
|
|
15
|
+
{ success: false, error: (error as TODO_any)?.message || 'Failed to delete agent' },
|
|
16
|
+
{ status: 500 },
|
|
17
|
+
);
|
|
18
|
+
}
|
|
19
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { $provideServer } from '@/src/tools/$provideServer';
|
|
2
|
+
import { NextResponse } from 'next/server';
|
|
3
|
+
import { $provideAgentCollectionForServer } from '../../../tools/$provideAgentCollectionForServer';
|
|
4
|
+
import { getFederatedServersFromMetadata } from '../../../utils/getFederatedServersFromMetadata';
|
|
5
|
+
|
|
6
|
+
export const dynamic = 'force-dynamic';
|
|
7
|
+
|
|
8
|
+
export async function GET() {
|
|
9
|
+
try {
|
|
10
|
+
const collection = await $provideAgentCollectionForServer();
|
|
11
|
+
const agents = await collection.listAgents();
|
|
12
|
+
const federatedServers = await getFederatedServersFromMetadata();
|
|
13
|
+
const { publicUrl } = await $provideServer();
|
|
14
|
+
|
|
15
|
+
const agentsWithUrl = agents.map((agent) => ({
|
|
16
|
+
...agent,
|
|
17
|
+
url: `${publicUrl.href}agents/${encodeURIComponent(agent.agentName)}`,
|
|
18
|
+
}));
|
|
19
|
+
|
|
20
|
+
const response = NextResponse.json({
|
|
21
|
+
agents: agentsWithUrl,
|
|
22
|
+
federatedServers,
|
|
23
|
+
});
|
|
24
|
+
|
|
25
|
+
// Add CORS headers
|
|
26
|
+
response.headers.set('Access-Control-Allow-Origin', '*');
|
|
27
|
+
response.headers.set('Access-Control-Allow-Methods', 'GET, OPTIONS');
|
|
28
|
+
response.headers.set('Access-Control-Allow-Headers', 'Content-Type, Authorization');
|
|
29
|
+
|
|
30
|
+
return response;
|
|
31
|
+
} catch (error) {
|
|
32
|
+
console.error('Error fetching agents:', error);
|
|
33
|
+
return NextResponse.json({ error: 'Failed to fetch agents' }, { status: 500 });
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
export async function OPTIONS() {
|
|
38
|
+
const response = new NextResponse(null, { status: 200 });
|
|
39
|
+
response.headers.set('Access-Control-Allow-Origin', '*');
|
|
40
|
+
response.headers.set('Access-Control-Allow-Methods', 'GET, OPTIONS');
|
|
41
|
+
response.headers.set('Access-Control-Allow-Headers', 'Content-Type, Authorization');
|
|
42
|
+
return response;
|
|
43
|
+
}
|