@meistrari/chat-nuxt 1.0.0
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 +274 -0
- package/dist/module.d.mts +3 -0
- package/dist/module.json +9 -0
- package/dist/module.mjs +250 -0
- package/dist/runtime/assets/css/code-theme.css +1 -0
- package/dist/runtime/assets/css/markstream.css +1 -0
- package/dist/runtime/components/AppStatusToast.d.vue.ts +3 -0
- package/dist/runtime/components/AppStatusToast.vue +42 -0
- package/dist/runtime/components/AppStatusToast.vue.d.ts +3 -0
- package/dist/runtime/components/TelaChat.d.vue.ts +19 -0
- package/dist/runtime/components/TelaChat.vue +25 -0
- package/dist/runtime/components/TelaChat.vue.d.ts +19 -0
- package/dist/runtime/components/app-markdown-render.d.vue.ts +15 -0
- package/dist/runtime/components/app-markdown-render.vue +45 -0
- package/dist/runtime/components/app-markdown-render.vue.d.ts +15 -0
- package/dist/runtime/components/application-card.d.vue.ts +9 -0
- package/dist/runtime/components/application-card.vue +52 -0
- package/dist/runtime/components/application-card.vue.d.ts +9 -0
- package/dist/runtime/components/audio-preview.d.vue.ts +14 -0
- package/dist/runtime/components/audio-preview.vue +52 -0
- package/dist/runtime/components/audio-preview.vue.d.ts +14 -0
- package/dist/runtime/components/chat/bash-widget.d.vue.ts +9 -0
- package/dist/runtime/components/chat/bash-widget.vue +86 -0
- package/dist/runtime/components/chat/bash-widget.vue.d.ts +9 -0
- package/dist/runtime/components/chat/canvas-selector-modal.d.vue.ts +14 -0
- package/dist/runtime/components/chat/canvas-selector-modal.vue +290 -0
- package/dist/runtime/components/chat/canvas-selector-modal.vue.d.ts +14 -0
- package/dist/runtime/components/chat/context-config.d.vue.ts +30 -0
- package/dist/runtime/components/chat/context-config.vue +423 -0
- package/dist/runtime/components/chat/context-config.vue.d.ts +30 -0
- package/dist/runtime/components/chat/conversation-item.d.vue.ts +20 -0
- package/dist/runtime/components/chat/conversation-item.vue +184 -0
- package/dist/runtime/components/chat/conversation-item.vue.d.ts +20 -0
- package/dist/runtime/components/chat/conversation-list.d.vue.ts +10 -0
- package/dist/runtime/components/chat/conversation-list.vue +78 -0
- package/dist/runtime/components/chat/conversation-list.vue.d.ts +10 -0
- package/dist/runtime/components/chat/doc-sdk-widget.d.vue.ts +9 -0
- package/dist/runtime/components/chat/doc-sdk-widget.vue +74 -0
- package/dist/runtime/components/chat/doc-sdk-widget.vue.d.ts +9 -0
- package/dist/runtime/components/chat/file-preview.d.vue.ts +7 -0
- package/dist/runtime/components/chat/file-preview.vue +313 -0
- package/dist/runtime/components/chat/file-preview.vue.d.ts +7 -0
- package/dist/runtime/components/chat/files-view.d.vue.ts +6 -0
- package/dist/runtime/components/chat/files-view.vue +399 -0
- package/dist/runtime/components/chat/files-view.vue.d.ts +6 -0
- package/dist/runtime/components/chat/generic-tool-widget.d.vue.ts +9 -0
- package/dist/runtime/components/chat/generic-tool-widget.vue +334 -0
- package/dist/runtime/components/chat/generic-tool-widget.vue.d.ts +9 -0
- package/dist/runtime/components/chat/grep-widget.d.vue.ts +9 -0
- package/dist/runtime/components/chat/grep-widget.vue +259 -0
- package/dist/runtime/components/chat/grep-widget.vue.d.ts +9 -0
- package/dist/runtime/components/chat/mention-dropdown.d.vue.ts +14 -0
- package/dist/runtime/components/chat/mention-dropdown.vue +90 -0
- package/dist/runtime/components/chat/mention-dropdown.vue.d.ts +14 -0
- package/dist/runtime/components/chat/message-bubble.d.vue.ts +11 -0
- package/dist/runtime/components/chat/message-bubble.vue +288 -0
- package/dist/runtime/components/chat/message-bubble.vue.d.ts +11 -0
- package/dist/runtime/components/chat/message-input.d.vue.ts +34 -0
- package/dist/runtime/components/chat/message-input.vue +428 -0
- package/dist/runtime/components/chat/message-input.vue.d.ts +34 -0
- package/dist/runtime/components/chat/message-list.d.vue.ts +11 -0
- package/dist/runtime/components/chat/message-list.vue +36 -0
- package/dist/runtime/components/chat/message-list.vue.d.ts +11 -0
- package/dist/runtime/components/chat/model-selector.d.vue.ts +15 -0
- package/dist/runtime/components/chat/model-selector.vue +35 -0
- package/dist/runtime/components/chat/model-selector.vue.d.ts +15 -0
- package/dist/runtime/components/chat/new-conversation-modal.d.vue.ts +14 -0
- package/dist/runtime/components/chat/new-conversation-modal.vue +271 -0
- package/dist/runtime/components/chat/new-conversation-modal.vue.d.ts +14 -0
- package/dist/runtime/components/chat/read-widget.d.vue.ts +9 -0
- package/dist/runtime/components/chat/read-widget.vue +195 -0
- package/dist/runtime/components/chat/read-widget.vue.d.ts +9 -0
- package/dist/runtime/components/chat/reasoning-message.d.vue.ts +13 -0
- package/dist/runtime/components/chat/reasoning-message.vue +341 -0
- package/dist/runtime/components/chat/reasoning-message.vue.d.ts +13 -0
- package/dist/runtime/components/chat/reasoning-step-item.d.vue.ts +37 -0
- package/dist/runtime/components/chat/reasoning-step-item.vue +125 -0
- package/dist/runtime/components/chat/reasoning-step-item.vue.d.ts +37 -0
- package/dist/runtime/components/chat/reasoning-steps.d.vue.ts +12 -0
- package/dist/runtime/components/chat/reasoning-steps.vue +47 -0
- package/dist/runtime/components/chat/reasoning-steps.vue.d.ts +12 -0
- package/dist/runtime/components/chat/reasoning-thought.d.vue.ts +11 -0
- package/dist/runtime/components/chat/reasoning-thought.vue +287 -0
- package/dist/runtime/components/chat/reasoning-thought.vue.d.ts +11 -0
- package/dist/runtime/components/chat/tela-skill-widget.d.vue.ts +9 -0
- package/dist/runtime/components/chat/tela-skill-widget.vue +94 -0
- package/dist/runtime/components/chat/tela-skill-widget.vue.d.ts +9 -0
- package/dist/runtime/components/chat/thinking-indicator.d.vue.ts +3 -0
- package/dist/runtime/components/chat/thinking-indicator.vue +52 -0
- package/dist/runtime/components/chat/thinking-indicator.vue.d.ts +3 -0
- package/dist/runtime/components/chat/thinking-widget.d.vue.ts +8 -0
- package/dist/runtime/components/chat/thinking-widget.vue +53 -0
- package/dist/runtime/components/chat/thinking-widget.vue.d.ts +8 -0
- package/dist/runtime/components/chat/topbar.d.vue.ts +43 -0
- package/dist/runtime/components/chat/topbar.vue +223 -0
- package/dist/runtime/components/chat/topbar.vue.d.ts +43 -0
- package/dist/runtime/components/chat/usage-view.d.vue.ts +8 -0
- package/dist/runtime/components/chat/usage-view.vue +393 -0
- package/dist/runtime/components/chat/usage-view.vue.d.ts +8 -0
- package/dist/runtime/components/chat/vault-link.d.vue.ts +20 -0
- package/dist/runtime/components/chat/vault-link.vue +34 -0
- package/dist/runtime/components/chat/vault-link.vue.d.ts +20 -0
- package/dist/runtime/components/chat/web-search-widget.d.vue.ts +9 -0
- package/dist/runtime/components/chat/web-search-widget.vue +121 -0
- package/dist/runtime/components/chat/web-search-widget.vue.d.ts +9 -0
- package/dist/runtime/components/chat/workstation-query-widget.d.vue.ts +10 -0
- package/dist/runtime/components/chat/workstation-query-widget.vue +552 -0
- package/dist/runtime/components/chat/workstation-query-widget.vue.d.ts +10 -0
- package/dist/runtime/components/chat/workstation-selector-modal.d.vue.ts +14 -0
- package/dist/runtime/components/chat/workstation-selector-modal.vue +272 -0
- package/dist/runtime/components/chat/workstation-selector-modal.vue.d.ts +14 -0
- package/dist/runtime/components/chat/write-widget.d.vue.ts +9 -0
- package/dist/runtime/components/chat/write-widget.vue +165 -0
- package/dist/runtime/components/chat/write-widget.vue.d.ts +9 -0
- package/dist/runtime/components/conversation-files-panel.d.vue.ts +3 -0
- package/dist/runtime/components/conversation-files-panel.vue +252 -0
- package/dist/runtime/components/conversation-files-panel.vue.d.ts +3 -0
- package/dist/runtime/components/csv-preview.d.vue.ts +20 -0
- package/dist/runtime/components/csv-preview.vue +157 -0
- package/dist/runtime/components/csv-preview.vue.d.ts +20 -0
- package/dist/runtime/components/file-preview-panel.d.vue.ts +3 -0
- package/dist/runtime/components/file-preview-panel.vue +185 -0
- package/dist/runtime/components/file-preview-panel.vue.d.ts +3 -0
- package/dist/runtime/components/file-uploader.d.vue.ts +16 -0
- package/dist/runtime/components/file-uploader.vue +136 -0
- package/dist/runtime/components/file-uploader.vue.d.ts +16 -0
- package/dist/runtime/components/icons/anthropic.d.vue.ts +3 -0
- package/dist/runtime/components/icons/anthropic.vue +5 -0
- package/dist/runtime/components/icons/anthropic.vue.d.ts +3 -0
- package/dist/runtime/components/image-preview.d.vue.ts +14 -0
- package/dist/runtime/components/image-preview.vue +54 -0
- package/dist/runtime/components/image-preview.vue.d.ts +14 -0
- package/dist/runtime/components/json-tree-node.d.vue.ts +9 -0
- package/dist/runtime/components/json-tree-node.vue +109 -0
- package/dist/runtime/components/json-tree-node.vue.d.ts +9 -0
- package/dist/runtime/components/json-viewer.d.vue.ts +6 -0
- package/dist/runtime/components/json-viewer.vue +88 -0
- package/dist/runtime/components/json-viewer.vue.d.ts +6 -0
- package/dist/runtime/components/pdf-preview.d.vue.ts +20 -0
- package/dist/runtime/components/pdf-preview.vue +89 -0
- package/dist/runtime/components/pdf-preview.vue.d.ts +20 -0
- package/dist/runtime/components/pdf-viewer.d.vue.ts +10 -0
- package/dist/runtime/components/pdf-viewer.vue +265 -0
- package/dist/runtime/components/pdf-viewer.vue.d.ts +10 -0
- package/dist/runtime/components/powered-by-tela.d.vue.ts +3 -0
- package/dist/runtime/components/powered-by-tela.vue +14 -0
- package/dist/runtime/components/powered-by-tela.vue.d.ts +3 -0
- package/dist/runtime/components/renderers/artifact-display.d.vue.ts +15 -0
- package/dist/runtime/components/renderers/artifact-display.vue +105 -0
- package/dist/runtime/components/renderers/artifact-display.vue.d.ts +15 -0
- package/dist/runtime/components/renderers/audio-renderer.d.vue.ts +7 -0
- package/dist/runtime/components/renderers/audio-renderer.vue +52 -0
- package/dist/runtime/components/renderers/audio-renderer.vue.d.ts +7 -0
- package/dist/runtime/components/renderers/csv-renderer.d.vue.ts +6 -0
- package/dist/runtime/components/renderers/csv-renderer.vue +203 -0
- package/dist/runtime/components/renderers/csv-renderer.vue.d.ts +6 -0
- package/dist/runtime/components/renderers/image-renderer.d.vue.ts +7 -0
- package/dist/runtime/components/renderers/image-renderer.vue +44 -0
- package/dist/runtime/components/renderers/image-renderer.vue.d.ts +7 -0
- package/dist/runtime/components/renderers/markdown-renderer.d.vue.ts +6 -0
- package/dist/runtime/components/renderers/markdown-renderer.vue +66 -0
- package/dist/runtime/components/renderers/markdown-renderer.vue.d.ts +6 -0
- package/dist/runtime/components/renderers/mermaid-diagram.d.vue.ts +7 -0
- package/dist/runtime/components/renderers/mermaid-diagram.vue +165 -0
- package/dist/runtime/components/renderers/mermaid-diagram.vue.d.ts +7 -0
- package/dist/runtime/components/renderers/text-renderer.d.vue.ts +7 -0
- package/dist/runtime/components/renderers/text-renderer.vue +70 -0
- package/dist/runtime/components/renderers/text-renderer.vue.d.ts +7 -0
- package/dist/runtime/components/renderers/video-renderer.d.vue.ts +6 -0
- package/dist/runtime/components/renderers/video-renderer.vue +43 -0
- package/dist/runtime/components/renderers/video-renderer.vue.d.ts +6 -0
- package/dist/runtime/components/text-preview.d.vue.ts +19 -0
- package/dist/runtime/components/text-preview.vue +105 -0
- package/dist/runtime/components/text-preview.vue.d.ts +19 -0
- package/dist/runtime/components/video-preview.d.vue.ts +14 -0
- package/dist/runtime/components/video-preview.vue +55 -0
- package/dist/runtime/components/video-preview.vue.d.ts +14 -0
- package/dist/runtime/composables/PageNavigation.d.ts +13 -0
- package/dist/runtime/composables/PageNavigation.js +18 -0
- package/dist/runtime/composables/useChat.d.ts +25 -0
- package/dist/runtime/composables/useChat.js +512 -0
- package/dist/runtime/composables/useChatApi.d.ts +6 -0
- package/dist/runtime/composables/useChatApi.js +28 -0
- package/dist/runtime/composables/useConversationFiles.d.ts +13 -0
- package/dist/runtime/composables/useConversationFiles.js +98 -0
- package/dist/runtime/composables/useConversationFilesPanel.d.ts +11 -0
- package/dist/runtime/composables/useConversationFilesPanel.js +35 -0
- package/dist/runtime/composables/useConversations.d.ts +15 -0
- package/dist/runtime/composables/useConversations.js +191 -0
- package/dist/runtime/composables/useDiagramExport.d.ts +11 -0
- package/dist/runtime/composables/useDiagramExport.js +186 -0
- package/dist/runtime/composables/useEmbedConfig.d.ts +13 -0
- package/dist/runtime/composables/useEmbedConfig.js +11 -0
- package/dist/runtime/composables/useFeatureFlags.d.ts +19 -0
- package/dist/runtime/composables/useFeatureFlags.js +67 -0
- package/dist/runtime/composables/useFileDrop.d.ts +17 -0
- package/dist/runtime/composables/useFileDrop.js +89 -0
- package/dist/runtime/composables/useFilePreviewPanel.d.ts +30 -0
- package/dist/runtime/composables/useFilePreviewPanel.js +42 -0
- package/dist/runtime/composables/useFileUpload.d.ts +7 -0
- package/dist/runtime/composables/useFileUpload.js +39 -0
- package/dist/runtime/composables/useGitHubSkills.d.ts +6 -0
- package/dist/runtime/composables/useGitHubSkills.js +68 -0
- package/dist/runtime/composables/useGitHubSkillsCallback.d.ts +5 -0
- package/dist/runtime/composables/useGitHubSkillsCallback.js +42 -0
- package/dist/runtime/composables/useIDB.d.ts +11 -0
- package/dist/runtime/composables/useIDB.js +57 -0
- package/dist/runtime/composables/useInputHistory.d.ts +7 -0
- package/dist/runtime/composables/useInputHistory.js +36 -0
- package/dist/runtime/composables/useKnowledgeSources.d.ts +6 -0
- package/dist/runtime/composables/useKnowledgeSources.js +15 -0
- package/dist/runtime/composables/useMediaCache.d.ts +13 -0
- package/dist/runtime/composables/useMediaCache.js +92 -0
- package/dist/runtime/composables/useMentionAutocomplete.d.ts +10 -0
- package/dist/runtime/composables/useMentionAutocomplete.js +272 -0
- package/dist/runtime/composables/useMermaidRenderer.d.ts +5 -0
- package/dist/runtime/composables/useMermaidRenderer.js +121 -0
- package/dist/runtime/composables/usePdf.d.ts +21 -0
- package/dist/runtime/composables/usePdf.js +138 -0
- package/dist/runtime/composables/usePolling.d.ts +12 -0
- package/dist/runtime/composables/usePolling.js +55 -0
- package/dist/runtime/composables/useSelectedModel.d.ts +4 -0
- package/dist/runtime/composables/useSelectedModel.js +46 -0
- package/dist/runtime/composables/useSplashScreen.d.ts +3 -0
- package/dist/runtime/composables/useSplashScreen.js +4 -0
- package/dist/runtime/composables/useStatusToast.d.ts +22 -0
- package/dist/runtime/composables/useStatusToast.js +40 -0
- package/dist/runtime/composables/useTela.d.ts +12 -0
- package/dist/runtime/composables/useTela.js +47 -0
- package/dist/runtime/composables/useToolFormatting.d.ts +5 -0
- package/dist/runtime/composables/useToolFormatting.js +61 -0
- package/dist/runtime/composables/useVault.d.ts +13 -0
- package/dist/runtime/composables/useVault.js +35 -0
- package/dist/runtime/composables/useVerbConjugation.d.ts +6 -0
- package/dist/runtime/composables/useVerbConjugation.js +256 -0
- package/dist/runtime/composables/useWorkspaceContextFiles.d.ts +19 -0
- package/dist/runtime/composables/useWorkspaceContextFiles.js +74 -0
- package/dist/runtime/composables/useWorkspaceCredentials.d.ts +34 -0
- package/dist/runtime/composables/useWorkspaceCredentials.js +175 -0
- package/dist/runtime/composables/useWorkspaceExternalSkills.d.ts +22 -0
- package/dist/runtime/composables/useWorkspaceExternalSkills.js +135 -0
- package/dist/runtime/composables/useWorkspaceKnowledgeSources.d.ts +11 -0
- package/dist/runtime/composables/useWorkspaceKnowledgeSources.js +88 -0
- package/dist/runtime/composables/useWorkspaceMembers.d.ts +13 -0
- package/dist/runtime/composables/useWorkspaceMembers.js +37 -0
- package/dist/runtime/composables/useWorkspacePersonalization.d.ts +6 -0
- package/dist/runtime/composables/useWorkspacePersonalization.js +19 -0
- package/dist/runtime/composables/useWorkspaceSettings.d.ts +30 -0
- package/dist/runtime/composables/useWorkspaceSettings.js +135 -0
- package/dist/runtime/composables/useWorkspaceTelaTools.d.ts +13 -0
- package/dist/runtime/composables/useWorkspaceTelaTools.js +91 -0
- package/dist/runtime/composables/useWorkspaces.d.ts +5 -0
- package/dist/runtime/composables/useWorkspaces.js +14 -0
- package/dist/runtime/composables/useZoomPan.d.ts +18 -0
- package/dist/runtime/composables/useZoomPan.js +130 -0
- package/dist/runtime/embed/components/ChatEmbed.d.vue.ts +23 -0
- package/dist/runtime/embed/components/ChatEmbed.vue +27 -0
- package/dist/runtime/embed/components/ChatEmbed.vue.d.ts +23 -0
- package/dist/runtime/embed/components/ChatEmbedInner.d.vue.ts +19 -0
- package/dist/runtime/embed/components/ChatEmbedInner.vue +604 -0
- package/dist/runtime/embed/components/ChatEmbedInner.vue.d.ts +19 -0
- package/dist/runtime/public/favicon.svg +4 -0
- package/dist/runtime/public/files/archive.svg +9 -0
- package/dist/runtime/public/files/audio.svg +4 -0
- package/dist/runtime/public/files/c.svg +4 -0
- package/dist/runtime/public/files/cpp.svg +6 -0
- package/dist/runtime/public/files/css.svg +4 -0
- package/dist/runtime/public/files/doc.svg +5 -0
- package/dist/runtime/public/files/generic.svg +7 -0
- package/dist/runtime/public/files/go.svg +6 -0
- package/dist/runtime/public/files/html.svg +4 -0
- package/dist/runtime/public/files/image.svg +3 -0
- package/dist/runtime/public/files/java.svg +7 -0
- package/dist/runtime/public/files/javascript.svg +4 -0
- package/dist/runtime/public/files/json.svg +5 -0
- package/dist/runtime/public/files/markdown.svg +5 -0
- package/dist/runtime/public/files/pdf.svg +5 -0
- package/dist/runtime/public/files/presentation.svg +5 -0
- package/dist/runtime/public/files/python.svg +5 -0
- package/dist/runtime/public/files/ruby.svg +5 -0
- package/dist/runtime/public/files/rust.svg +13 -0
- package/dist/runtime/public/files/sheet.svg +9 -0
- package/dist/runtime/public/files/shell.svg +5 -0
- package/dist/runtime/public/files/sql.svg +6 -0
- package/dist/runtime/public/files/typescript.svg +5 -0
- package/dist/runtime/public/files/video.svg +5 -0
- package/dist/runtime/public/files/yaml.svg +7 -0
- package/dist/runtime/public/github.svg +3 -0
- package/dist/runtime/public/robots.txt +1 -0
- package/dist/runtime/server/api/admin/trigger-usage-report.post.d.ts +2 -0
- package/dist/runtime/server/api/admin/trigger-usage-report.post.js +15 -0
- package/dist/runtime/server/api/chat/conversations/[id]/cancel.post.d.ts +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/cancel.post.js +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/clear.post.d.ts +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/clear.post.js +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/duplicate.post.d.ts +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/duplicate.post.js +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/files.get.d.ts +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/files.get.js +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/index.delete.d.ts +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/index.delete.js +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/index.get.d.ts +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/index.get.js +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/index.patch.d.ts +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/index.patch.js +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/messages/[messageId]/retry.post.d.ts +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/messages/[messageId]/retry.post.js +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/messages/index.get.d.ts +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/messages/index.get.js +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/messages/index.post.d.ts +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/messages/index.post.js +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/usage.get.d.ts +1 -0
- package/dist/runtime/server/api/chat/conversations/[id]/usage.get.js +1 -0
- package/dist/runtime/server/api/chat/conversations/generate-title.post.d.ts +1 -0
- package/dist/runtime/server/api/chat/conversations/generate-title.post.js +1 -0
- package/dist/runtime/server/api/chat/conversations/index.get.d.ts +1 -0
- package/dist/runtime/server/api/chat/conversations/index.get.js +1 -0
- package/dist/runtime/server/api/chat/conversations/index.post.d.ts +1 -0
- package/dist/runtime/server/api/chat/conversations/index.post.js +1 -0
- package/dist/runtime/server/api/chat/workspace/settings.get.d.ts +2 -0
- package/dist/runtime/server/api/chat/workspace/settings.get.js +14 -0
- package/dist/runtime/server/api/conversations/[id]/cancel.post.d.ts +2 -0
- package/dist/runtime/server/api/conversations/[id]/cancel.post.js +58 -0
- package/dist/runtime/server/api/conversations/[id]/clear.post.d.ts +2 -0
- package/dist/runtime/server/api/conversations/[id]/clear.post.js +38 -0
- package/dist/runtime/server/api/conversations/[id]/duplicate.post.d.ts +2 -0
- package/dist/runtime/server/api/conversations/[id]/duplicate.post.js +41 -0
- package/dist/runtime/server/api/conversations/[id]/files.get.d.ts +2 -0
- package/dist/runtime/server/api/conversations/[id]/files.get.js +131 -0
- package/dist/runtime/server/api/conversations/[id]/index.delete.d.ts +2 -0
- package/dist/runtime/server/api/conversations/[id]/index.delete.js +35 -0
- package/dist/runtime/server/api/conversations/[id]/index.get.d.ts +2 -0
- package/dist/runtime/server/api/conversations/[id]/index.get.js +34 -0
- package/dist/runtime/server/api/conversations/[id]/index.patch.d.ts +2 -0
- package/dist/runtime/server/api/conversations/[id]/index.patch.js +54 -0
- package/dist/runtime/server/api/conversations/[id]/messages/[messageId]/retry.post.d.ts +2 -0
- package/dist/runtime/server/api/conversations/[id]/messages/[messageId]/retry.post.js +168 -0
- package/dist/runtime/server/api/conversations/[id]/messages/index.get.d.ts +2 -0
- package/dist/runtime/server/api/conversations/[id]/messages/index.get.js +220 -0
- package/dist/runtime/server/api/conversations/[id]/messages/index.post.d.ts +2 -0
- package/dist/runtime/server/api/conversations/[id]/messages/index.post.js +181 -0
- package/dist/runtime/server/api/conversations/[id]/usage.get.d.ts +8 -0
- package/dist/runtime/server/api/conversations/[id]/usage.get.js +96 -0
- package/dist/runtime/server/api/conversations/generate-title.post.d.ts +2 -0
- package/dist/runtime/server/api/conversations/generate-title.post.js +49 -0
- package/dist/runtime/server/api/conversations/index.get.d.ts +2 -0
- package/dist/runtime/server/api/conversations/index.get.js +11 -0
- package/dist/runtime/server/api/conversations/index.post.d.ts +2 -0
- package/dist/runtime/server/api/conversations/index.post.js +41 -0
- package/dist/runtime/server/api/external-skills/discover.post.d.ts +2 -0
- package/dist/runtime/server/api/external-skills/discover.post.js +65 -0
- package/dist/runtime/server/api/github/disconnect.post.d.ts +2 -0
- package/dist/runtime/server/api/github/disconnect.post.js +21 -0
- package/dist/runtime/server/api/github/status.get.d.ts +2 -0
- package/dist/runtime/server/api/github/status.get.js +23 -0
- package/dist/runtime/server/api/tela/canvas.get.d.ts +2 -0
- package/dist/runtime/server/api/tela/canvas.get.js +18 -0
- package/dist/runtime/server/api/tela/projects.get.d.ts +2 -0
- package/dist/runtime/server/api/tela/projects.get.js +9 -0
- package/dist/runtime/server/api/tela/workspaces.get.d.ts +2 -0
- package/dist/runtime/server/api/tela/workspaces.get.js +9 -0
- package/dist/runtime/server/api/tela/workstations.get.d.ts +2 -0
- package/dist/runtime/server/api/tela/workstations.get.js +24 -0
- package/dist/runtime/server/api/vault/permalink-metadata.post.d.ts +2 -0
- package/dist/runtime/server/api/vault/permalink-metadata.post.js +77 -0
- package/dist/runtime/server/api/vault/resolve.post.d.ts +2 -0
- package/dist/runtime/server/api/vault/resolve.post.js +82 -0
- package/dist/runtime/server/api/vault/upload.post.d.ts +2 -0
- package/dist/runtime/server/api/vault/upload.post.js +55 -0
- package/dist/runtime/server/api/workspace/credentials/[id].delete.d.ts +2 -0
- package/dist/runtime/server/api/workspace/credentials/[id].delete.js +18 -0
- package/dist/runtime/server/api/workspace/credentials/[id].put.d.ts +2 -0
- package/dist/runtime/server/api/workspace/credentials/[id].put.js +28 -0
- package/dist/runtime/server/api/workspace/credentials/index.get.d.ts +2 -0
- package/dist/runtime/server/api/workspace/credentials/index.get.js +10 -0
- package/dist/runtime/server/api/workspace/credentials/index.post.d.ts +2 -0
- package/dist/runtime/server/api/workspace/credentials/index.post.js +33 -0
- package/dist/runtime/server/api/workspace/settings.get.d.ts +2 -0
- package/dist/runtime/server/api/workspace/settings.get.js +27 -0
- package/dist/runtime/server/api/workspace/settings.patch.d.ts +2 -0
- package/dist/runtime/server/api/workspace/settings.patch.js +86 -0
- package/dist/runtime/server/api/workspace/usage.get.d.ts +48 -0
- package/dist/runtime/server/api/workspace/usage.get.js +186 -0
- package/dist/runtime/server/db/index.d.ts +6 -0
- package/dist/runtime/server/db/index.js +19 -0
- package/dist/runtime/server/db/schema/conversation-usage.d.ts +438 -0
- package/dist/runtime/server/db/schema/conversation-usage.js +34 -0
- package/dist/runtime/server/db/schema/conversations.d.ts +197 -0
- package/dist/runtime/server/db/schema/conversations.js +18 -0
- package/dist/runtime/server/db/schema/external-skills.d.ts +235 -0
- package/dist/runtime/server/db/schema/external-skills.js +26 -0
- package/dist/runtime/server/db/schema/index.d.ts +5 -0
- package/dist/runtime/server/db/schema/index.js +5 -0
- package/dist/runtime/server/db/schema/messages.d.ts +221 -0
- package/dist/runtime/server/db/schema/messages.js +19 -0
- package/dist/runtime/server/db/schema/workspace-settings.d.ts +164 -0
- package/dist/runtime/server/db/schema/workspace-settings.js +15 -0
- package/dist/runtime/server/db/schema.d.ts +1 -0
- package/dist/runtime/server/db/schema.js +1 -0
- package/dist/runtime/server/middleware/domain-validation.d.ts +2 -0
- package/dist/runtime/server/middleware/domain-validation.js +22 -0
- package/dist/runtime/server/middleware/request-logger.d.ts +2 -0
- package/dist/runtime/server/middleware/request-logger.js +15 -0
- package/dist/runtime/server/prompts/base-system.d.ts +2 -0
- package/dist/runtime/server/prompts/base-system.js +100 -0
- package/dist/runtime/server/prompts/base-system.md +99 -0
- package/dist/runtime/server/prompts/knowledge-sources.d.ts +2 -0
- package/dist/runtime/server/prompts/knowledge-sources.js +37 -0
- package/dist/runtime/server/prompts/knowledge-sources.md +36 -0
- package/dist/runtime/server/tasks/send-daily-usage-report.d.ts +2 -0
- package/dist/runtime/server/tasks/send-daily-usage-report.js +73 -0
- package/dist/runtime/server/tsconfig.json +21 -0
- package/dist/runtime/server/utils/agent-api.d.ts +39 -0
- package/dist/runtime/server/utils/agent-api.js +169 -0
- package/dist/runtime/server/utils/auth-api.d.ts +1 -0
- package/dist/runtime/server/utils/auth-api.js +25 -0
- package/dist/runtime/server/utils/auth.d.ts +17 -0
- package/dist/runtime/server/utils/auth.js +28 -0
- package/dist/runtime/server/utils/billing.d.ts +37 -0
- package/dist/runtime/server/utils/billing.js +68 -0
- package/dist/runtime/server/utils/chat-context.d.ts +9 -0
- package/dist/runtime/server/utils/chat-context.js +24 -0
- package/dist/runtime/server/utils/chat-message-builder.d.ts +4 -0
- package/dist/runtime/server/utils/chat-message-builder.js +39 -0
- package/dist/runtime/server/utils/chat-prompts.d.ts +7 -0
- package/dist/runtime/server/utils/chat-prompts.js +9 -0
- package/dist/runtime/server/utils/chat-workspace-settings.d.ts +16 -0
- package/dist/runtime/server/utils/chat-workspace-settings.js +115 -0
- package/dist/runtime/server/utils/external-skills.d.ts +2 -0
- package/dist/runtime/server/utils/external-skills.js +15 -0
- package/dist/runtime/server/utils/logger.d.ts +2 -0
- package/dist/runtime/server/utils/logger.js +12 -0
- package/dist/runtime/server/utils/slack.d.ts +32 -0
- package/dist/runtime/server/utils/slack.js +102 -0
- package/dist/runtime/server/utils/tela-api.d.ts +2 -0
- package/dist/runtime/server/utils/tela-api.js +29 -0
- package/dist/runtime/server/utils/vault.d.ts +3 -0
- package/dist/runtime/server/utils/vault.js +52 -0
- package/dist/runtime/server/utils/workspace-settings-resolver.stub.d.ts +2 -0
- package/dist/runtime/server/utils/workspace-settings-resolver.stub.js +1 -0
- package/dist/runtime/server/utils/workspace.d.ts +4 -0
- package/dist/runtime/server/utils/workspace.js +21 -0
- package/dist/runtime/types/agent.d.ts +168 -0
- package/dist/runtime/types/agent.js +95 -0
- package/dist/runtime/types/chat-workspace-settings-resolver.d.ts +4 -0
- package/dist/runtime/types/chat.d.ts +81 -0
- package/dist/runtime/types/chat.js +12 -0
- package/dist/runtime/types/credential.d.ts +8 -0
- package/dist/runtime/types/credential.js +0 -0
- package/dist/runtime/types/csv.d.ts +4 -0
- package/dist/runtime/types/csv.js +0 -0
- package/dist/runtime/types/external-skills.d.ts +8 -0
- package/dist/runtime/types/external-skills.js +0 -0
- package/dist/runtime/types/feature-flags.d.ts +7 -0
- package/dist/runtime/types/feature-flags.js +6 -0
- package/dist/runtime/types/reasoning.d.ts +17 -0
- package/dist/runtime/types/reasoning.js +0 -0
- package/dist/runtime/types/tela.d.ts +46 -0
- package/dist/runtime/types/tela.js +0 -0
- package/dist/runtime/types/workspace.d.ts +20 -0
- package/dist/runtime/types/workspace.js +0 -0
- package/dist/runtime/utils/calculate-usage.d.ts +48 -0
- package/dist/runtime/utils/calculate-usage.js +63 -0
- package/dist/runtime/utils/code-detection.d.ts +1 -0
- package/dist/runtime/utils/code-detection.js +24 -0
- package/dist/runtime/utils/export-conversation.d.ts +2 -0
- package/dist/runtime/utils/export-conversation.js +43 -0
- package/dist/runtime/utils/file.d.ts +46 -0
- package/dist/runtime/utils/file.js +500 -0
- package/dist/runtime/utils/format-time.d.ts +22 -0
- package/dist/runtime/utils/format-time.js +96 -0
- package/dist/runtime/utils/markdown-nodes.d.ts +22 -0
- package/dist/runtime/utils/markdown-nodes.js +40 -0
- package/dist/runtime/utils/string.d.ts +4 -0
- package/dist/runtime/utils/string.js +5 -0
- package/dist/runtime/utils/tela-chat.d.ts +19 -0
- package/dist/runtime/utils/tela-chat.js +20 -0
- package/dist/types.d.mts +7 -0
- package/package.json +72 -0
package/README.md
ADDED
|
@@ -0,0 +1,274 @@
|
|
|
1
|
+
# @meistrari/chat-nuxt
|
|
2
|
+
|
|
3
|
+
Nuxt module that adds a complete AI chat interface to your app. Powered by Tela's agent API — conversations, message streaming, file uploads, workspace settings, all out of the box.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pnpm add @meistrari/chat-nuxt @meistrari/auth-nuxt @meistrari/tela-build markstream-vue
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Setup
|
|
12
|
+
|
|
13
|
+
### 1. Register the modules
|
|
14
|
+
|
|
15
|
+
```typescript
|
|
16
|
+
// nuxt.config.ts
|
|
17
|
+
export default defineNuxtConfig({
|
|
18
|
+
extends: ['@meistrari/tela-build'],
|
|
19
|
+
|
|
20
|
+
modules: [
|
|
21
|
+
'@meistrari/auth-nuxt', // must come before chat-nuxt
|
|
22
|
+
'@meistrari/chat-nuxt',
|
|
23
|
+
],
|
|
24
|
+
|
|
25
|
+
ssr: false,
|
|
26
|
+
|
|
27
|
+
telaAuth: {
|
|
28
|
+
apiUrl: process.env.AUTH_API_URL ?? '',
|
|
29
|
+
application: {
|
|
30
|
+
enabled: true,
|
|
31
|
+
applicationId: process.env.APPLICATION_ID ?? '',
|
|
32
|
+
redirectUri: process.env.AUTH_REDIRECT_URI ?? 'http://localhost:3000/auth/callback',
|
|
33
|
+
dashboardUrl: process.env.AUTH_DASHBOARD_URL ?? '',
|
|
34
|
+
},
|
|
35
|
+
},
|
|
36
|
+
|
|
37
|
+
// Prevents duplicate Vue instances with pnpm
|
|
38
|
+
vite: {
|
|
39
|
+
resolve: {
|
|
40
|
+
dedupe: ['vue', '@vue/runtime-core', '@vue/reactivity', '@vue/runtime-dom', '@vue/shared', 'reka-ui', 'radix-vue', '@floating-ui/vue', '@vueuse/core'],
|
|
41
|
+
},
|
|
42
|
+
},
|
|
43
|
+
})
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
### 2. Set environment variables
|
|
47
|
+
|
|
48
|
+
The module injects these into Nuxt's `runtimeConfig` automatically — just set them in your environment (Infisical, `.env`, etc.):
|
|
49
|
+
|
|
50
|
+
| Variable | Description |
|
|
51
|
+
|----------|-------------|
|
|
52
|
+
| `DATABASE_URL` | PostgreSQL connection string |
|
|
53
|
+
| `TELA_API_URL` | Tela API endpoint |
|
|
54
|
+
| `TELA_API_KEY` | Tela API key |
|
|
55
|
+
| `AUTH_API_URL` | Auth service URL |
|
|
56
|
+
| `AUTH_API_SECRET` | Auth service secret |
|
|
57
|
+
| `AUTH_JWKS_URL` | Auth JWKS endpoint |
|
|
58
|
+
| `AGENT_API_URL` | Agent API endpoint |
|
|
59
|
+
| `VAULT_URL` | Vault service URL |
|
|
60
|
+
| `VAULT_S3_BUCKET` | Vault S3 bucket name |
|
|
61
|
+
|
|
62
|
+
### 3. Setup `app.vue`
|
|
63
|
+
|
|
64
|
+
```vue
|
|
65
|
+
<!-- app.vue -->
|
|
66
|
+
<script setup lang="ts">
|
|
67
|
+
import { setDefaultMathOptions } from 'markstream-vue'
|
|
68
|
+
import 'markstream-vue/index.css'
|
|
69
|
+
import '@meistrari/chat-nuxt/assets/css/markstream.css'
|
|
70
|
+
import '@meistrari/chat-nuxt/assets/css/code-theme.css'
|
|
71
|
+
|
|
72
|
+
setDefaultMathOptions({ strictDelimiters: true })
|
|
73
|
+
</script>
|
|
74
|
+
|
|
75
|
+
<template>
|
|
76
|
+
<NuxtPage />
|
|
77
|
+
<AppStatusToast />
|
|
78
|
+
</template>
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
`AppStatusToast` is auto-registered by the module — it shows connection/error notifications.
|
|
82
|
+
|
|
83
|
+
### 4. Use it
|
|
84
|
+
|
|
85
|
+
```vue
|
|
86
|
+
<!-- pages/index.vue -->
|
|
87
|
+
<script setup lang="ts">
|
|
88
|
+
definePageMeta({ auth: { required: true } })
|
|
89
|
+
|
|
90
|
+
const { activeOrganization } = useTelaApplicationAuth()
|
|
91
|
+
const workspaceId = computed(() => activeOrganization.value?.id ?? null)
|
|
92
|
+
</script>
|
|
93
|
+
|
|
94
|
+
<template>
|
|
95
|
+
<div v-if="workspaceId" h-screen>
|
|
96
|
+
<TelaChat :workspace-id="workspaceId" />
|
|
97
|
+
</div>
|
|
98
|
+
</template>
|
|
99
|
+
```
|
|
100
|
+
|
|
101
|
+
The `workspaceId` is typically the organization ID from `@meistrari/auth-nuxt`.
|
|
102
|
+
|
|
103
|
+
## Embedding in Your Layout
|
|
104
|
+
|
|
105
|
+
The main use case: drop the chat inside your existing app UI.
|
|
106
|
+
|
|
107
|
+
```vue
|
|
108
|
+
<template>
|
|
109
|
+
<div class="my-app-layout">
|
|
110
|
+
<MyHeader />
|
|
111
|
+
|
|
112
|
+
<main>
|
|
113
|
+
<!-- Chat embedded in a card -->
|
|
114
|
+
<div style="height: 600px" class="rounded-2xl overflow-hidden border">
|
|
115
|
+
<TelaChat
|
|
116
|
+
v-model:conversation-id="activeConversation"
|
|
117
|
+
:workspace-id="workspaceId"
|
|
118
|
+
:hide-sidebar="true"
|
|
119
|
+
/>
|
|
120
|
+
</div>
|
|
121
|
+
</main>
|
|
122
|
+
</div>
|
|
123
|
+
</template>
|
|
124
|
+
```
|
|
125
|
+
|
|
126
|
+
Key props for embedding:
|
|
127
|
+
|
|
128
|
+
- **`:hide-sidebar="true"`** — removes the conversation list, keeps just the chat
|
|
129
|
+
- **`v-model:conversation-id`** — sync the active conversation with your app's state
|
|
130
|
+
- **`:initial-conversation-id`** — open a specific conversation on mount
|
|
131
|
+
|
|
132
|
+
## `<TelaChat>` Props
|
|
133
|
+
|
|
134
|
+
| Prop | Type | Default | Description |
|
|
135
|
+
|------|------|---------|-------------|
|
|
136
|
+
| `workspaceId` | `string` | — | **Required.** Workspace/org identifier |
|
|
137
|
+
| `hideSidebar` | `boolean` | `false` | Hide conversation list sidebar |
|
|
138
|
+
| `conversationId` | `string \| null` | `null` | Controlled conversation (supports v-model) |
|
|
139
|
+
| `initialConversationId` | `string \| null` | `null` | Open this conversation on mount |
|
|
140
|
+
| `workspaceSettings` | `WorkspaceSettings \| null` | `null` | Override settings from host app |
|
|
141
|
+
| `user` | `ChatActor \| null` | `null` | Override current user display info |
|
|
142
|
+
| `features` | `Partial<ChatFeatureConfig>` | `{}` | Toggle optional features |
|
|
143
|
+
|
|
144
|
+
**Events:**
|
|
145
|
+
|
|
146
|
+
| Event | Payload | Description |
|
|
147
|
+
|-------|---------|-------------|
|
|
148
|
+
| `update:conversationId` | `string \| null` | Active conversation changed |
|
|
149
|
+
|
|
150
|
+
## Optional: Feature Flags (PostHog)
|
|
151
|
+
|
|
152
|
+
Some features are behind PostHog flags (debug modal, usage tab, model selector). To enable them:
|
|
153
|
+
|
|
154
|
+
1. Add to your `nuxt.config.ts`:
|
|
155
|
+
|
|
156
|
+
```typescript
|
|
157
|
+
runtimeConfig: {
|
|
158
|
+
public: {
|
|
159
|
+
posthogPublicKey: process.env.POSTHOG_PUBLIC_KEY ?? '',
|
|
160
|
+
posthogHost: process.env.POSTHOG_HOST ?? '',
|
|
161
|
+
posthogDefaults: process.env.POSTHOG_DEFAULTS ?? '2026-01-30',
|
|
162
|
+
},
|
|
163
|
+
},
|
|
164
|
+
```
|
|
165
|
+
|
|
166
|
+
2. Initialize in `app.vue`:
|
|
167
|
+
|
|
168
|
+
```vue
|
|
169
|
+
<script setup lang="ts">
|
|
170
|
+
// ... existing imports ...
|
|
171
|
+
|
|
172
|
+
const { posthogPublicKey, posthogHost, posthogDefaults } = useRuntimeConfig().public
|
|
173
|
+
const { user, activeOrganization } = useTelaApplicationAuth()
|
|
174
|
+
|
|
175
|
+
onMounted(async () => {
|
|
176
|
+
if (!posthogPublicKey || !posthogHost) return
|
|
177
|
+
await initPosthog(posthogPublicKey, posthogHost, posthogDefaults)
|
|
178
|
+
if (user.value) identifyPosthogUser(user.value)
|
|
179
|
+
if (activeOrganization.value) setPosthogWorkspace(activeOrganization.value)
|
|
180
|
+
})
|
|
181
|
+
</script>
|
|
182
|
+
```
|
|
183
|
+
|
|
184
|
+
3. Pass flags to `<TelaChat>`:
|
|
185
|
+
|
|
186
|
+
```vue
|
|
187
|
+
<script setup lang="ts">
|
|
188
|
+
import { FEATURE_FLAGS } from '@meistrari/chat-nuxt/types/feature-flags'
|
|
189
|
+
|
|
190
|
+
const { isFeatureEnabled } = useFeatureFlags()
|
|
191
|
+
|
|
192
|
+
const features = computed(() => ({
|
|
193
|
+
showUsageTab: isFeatureEnabled(FEATURE_FLAGS.ENABLE_USAGE_TAB),
|
|
194
|
+
showDebugOption: isFeatureEnabled(FEATURE_FLAGS.ENABLE_DEBUG_MODE),
|
|
195
|
+
}))
|
|
196
|
+
</script>
|
|
197
|
+
|
|
198
|
+
<template>
|
|
199
|
+
<TelaChat :workspace-id="workspaceId" :features="features" />
|
|
200
|
+
</template>
|
|
201
|
+
```
|
|
202
|
+
|
|
203
|
+
Without PostHog, you can pass features statically:
|
|
204
|
+
|
|
205
|
+
```vue
|
|
206
|
+
<TelaChat :workspace-id="workspaceId" :features="{ showUsageTab: true }" />
|
|
207
|
+
```
|
|
208
|
+
|
|
209
|
+
## Optional: Custom Workspace Settings
|
|
210
|
+
|
|
211
|
+
By default, workspace settings (system prompt, context files, tools) are managed via the module's built-in UI and stored in PostgreSQL.
|
|
212
|
+
|
|
213
|
+
You can override this in two ways:
|
|
214
|
+
|
|
215
|
+
### Via props (simple)
|
|
216
|
+
|
|
217
|
+
Pass settings directly from your host app:
|
|
218
|
+
|
|
219
|
+
```vue
|
|
220
|
+
<TelaChat
|
|
221
|
+
:workspace-id="workspaceId"
|
|
222
|
+
:workspace-settings="{
|
|
223
|
+
workspaceId: 'ws_123',
|
|
224
|
+
systemMessage: 'You are a helpful assistant for Acme Corp.',
|
|
225
|
+
contextFiles: null,
|
|
226
|
+
canvasTools: null,
|
|
227
|
+
knowledgeSources: null,
|
|
228
|
+
externalSkills: null,
|
|
229
|
+
createdAt: new Date(),
|
|
230
|
+
updatedAt: new Date(),
|
|
231
|
+
}"
|
|
232
|
+
/>
|
|
233
|
+
```
|
|
234
|
+
|
|
235
|
+
### Via server resolver (advanced)
|
|
236
|
+
|
|
237
|
+
Create a file at `server/chat/resolve-workspace-settings.ts` in your app. The module auto-discovers it and calls it for every chat request:
|
|
238
|
+
|
|
239
|
+
```typescript
|
|
240
|
+
// server/chat/resolve-workspace-settings.ts
|
|
241
|
+
import type { H3Event } from 'h3'
|
|
242
|
+
|
|
243
|
+
export default async function resolveWorkspaceSettings(
|
|
244
|
+
event: H3Event,
|
|
245
|
+
context: { workspaceId: string; user: { id: string; email: string } },
|
|
246
|
+
) {
|
|
247
|
+
const settings = await fetchFromYourAPI(context.workspaceId)
|
|
248
|
+
return {
|
|
249
|
+
systemMessage: settings.prompt,
|
|
250
|
+
contextFiles: settings.files,
|
|
251
|
+
canvasTools: null,
|
|
252
|
+
knowledgeSources: null,
|
|
253
|
+
externalSkills: null,
|
|
254
|
+
updatedAt: new Date(),
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
```
|
|
258
|
+
|
|
259
|
+
## What's Included
|
|
260
|
+
|
|
261
|
+
The module auto-registers everything — no manual imports needed:
|
|
262
|
+
|
|
263
|
+
- **Components**: full chat UI, message bubbles, tool widgets (code, search, files), markdown rendering, file previews
|
|
264
|
+
- **Composables**: `useChat`, `useConversations`, `useWorkspaceSettings`, `useFileUpload`, `useFeatureFlags`, and more
|
|
265
|
+
- **Server routes**: conversation CRUD, message streaming, workspace settings, vault file storage, GitHub integration
|
|
266
|
+
- **Database**: conversations, messages, usage tracking (Drizzle ORM + PostgreSQL)
|
|
267
|
+
|
|
268
|
+
## Peer Dependencies
|
|
269
|
+
|
|
270
|
+
| Package | Version | Purpose |
|
|
271
|
+
|---------|---------|---------|
|
|
272
|
+
| `@meistrari/auth-nuxt` | `^2.4.0` | Authentication (required) |
|
|
273
|
+
| `@meistrari/tela-build` | `^1.30.0` | UI component library (Nuxt layer) |
|
|
274
|
+
| `markstream-vue` | `0.0.3-beta.6` | Markdown streaming renderer |
|
package/dist/module.json
ADDED
package/dist/module.mjs
ADDED
|
@@ -0,0 +1,250 @@
|
|
|
1
|
+
import { existsSync, mkdirSync, symlinkSync } from 'node:fs';
|
|
2
|
+
import { createRequire } from 'node:module';
|
|
3
|
+
import { join, dirname } from 'node:path';
|
|
4
|
+
import { defineNuxtModule, createResolver, addImportsDir, addComponentsDir } from 'nuxt/kit';
|
|
5
|
+
|
|
6
|
+
const localRequire = createRequire(import.meta.url);
|
|
7
|
+
const runtimeAliasPackages = [
|
|
8
|
+
"vue",
|
|
9
|
+
"vue/dist/vue.runtime.esm-bundler.js",
|
|
10
|
+
"@vue/runtime-core",
|
|
11
|
+
"@vue/reactivity",
|
|
12
|
+
"@vue/runtime-dom",
|
|
13
|
+
"@vue/shared",
|
|
14
|
+
"vue-router",
|
|
15
|
+
"@vueuse/core",
|
|
16
|
+
"@vueuse/components",
|
|
17
|
+
"@vueuse/shared",
|
|
18
|
+
"reka-ui",
|
|
19
|
+
"radix-vue",
|
|
20
|
+
"@floating-ui/vue"
|
|
21
|
+
];
|
|
22
|
+
const requiredRuntimeAliasPackages = [
|
|
23
|
+
"vue",
|
|
24
|
+
"@vue/runtime-core",
|
|
25
|
+
"@vue/reactivity",
|
|
26
|
+
"@vue/runtime-dom",
|
|
27
|
+
"@vue/shared",
|
|
28
|
+
"vue-router",
|
|
29
|
+
"@vueuse/core",
|
|
30
|
+
"@vueuse/components",
|
|
31
|
+
"@vueuse/shared"
|
|
32
|
+
];
|
|
33
|
+
const runtimeAliasDedupe = [...runtimeAliasPackages];
|
|
34
|
+
function isExpectedResolutionError(error) {
|
|
35
|
+
if (!(error instanceof Error) || !("code" in error)) {
|
|
36
|
+
return false;
|
|
37
|
+
}
|
|
38
|
+
return error.code === "MODULE_NOT_FOUND" || error.code === "ERR_PACKAGE_PATH_NOT_EXPORTED";
|
|
39
|
+
}
|
|
40
|
+
function resolvePackageRoot(resolver, packageName) {
|
|
41
|
+
try {
|
|
42
|
+
return dirname(resolver.resolve(`${packageName}/package.json`));
|
|
43
|
+
} catch (error) {
|
|
44
|
+
if (!isExpectedResolutionError(error)) {
|
|
45
|
+
console.warn(`[chat-nuxt] Failed to resolve "${packageName}" via package.json`, error);
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
try {
|
|
49
|
+
let currentDir = dirname(resolver.resolve(packageName));
|
|
50
|
+
while (true) {
|
|
51
|
+
if (existsSync(join(currentDir, "package.json"))) {
|
|
52
|
+
return currentDir;
|
|
53
|
+
}
|
|
54
|
+
const parentDir = dirname(currentDir);
|
|
55
|
+
if (parentDir === currentDir) {
|
|
56
|
+
return void 0;
|
|
57
|
+
}
|
|
58
|
+
currentDir = parentDir;
|
|
59
|
+
}
|
|
60
|
+
} catch (error) {
|
|
61
|
+
if (!isExpectedResolutionError(error)) {
|
|
62
|
+
console.warn(`[chat-nuxt] Failed to resolve "${packageName}" via entrypoint`, error);
|
|
63
|
+
}
|
|
64
|
+
return void 0;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
function resolvePackageEntry(resolver, specifier) {
|
|
68
|
+
try {
|
|
69
|
+
return resolver.resolve(specifier);
|
|
70
|
+
} catch (error) {
|
|
71
|
+
if (!isExpectedResolutionError(error)) {
|
|
72
|
+
console.warn(`[chat-nuxt] Failed to resolve "${specifier}" via entrypoint`, error);
|
|
73
|
+
}
|
|
74
|
+
return void 0;
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
function resolveTelaBuildLayer() {
|
|
78
|
+
if (process.env.TELA_BUILD_PATH) {
|
|
79
|
+
const localPath = process.env.TELA_BUILD_PATH;
|
|
80
|
+
if (existsSync(join(localPath, "nuxt.config.ts"))) {
|
|
81
|
+
return localPath;
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
const telaBuildRoot = resolvePackageRoot(localRequire, "@meistrari/tela-build");
|
|
85
|
+
if (!telaBuildRoot) {
|
|
86
|
+
throw new Error(
|
|
87
|
+
"[@meistrari/chat-nuxt] Cannot resolve @meistrari/tela-build. Ensure it is installed."
|
|
88
|
+
);
|
|
89
|
+
}
|
|
90
|
+
return telaBuildRoot;
|
|
91
|
+
}
|
|
92
|
+
function resolveRuntimeAliases(telaBuildPath) {
|
|
93
|
+
const nuxtRequire = createRequire(localRequire.resolve("nuxt/package.json"));
|
|
94
|
+
const vueUseCoreRequire = createRequire(localRequire.resolve("@vueuse/core/package.json"));
|
|
95
|
+
const telaBuildRequire = createRequire(join(telaBuildPath, "package.json"));
|
|
96
|
+
const vueRuntimeEntry = resolvePackageEntry(nuxtRequire, "vue/dist/vue.runtime.esm-bundler.js");
|
|
97
|
+
const aliases = [
|
|
98
|
+
["vue", vueRuntimeEntry ?? resolvePackageRoot(nuxtRequire, "vue")],
|
|
99
|
+
["vue/dist/vue.runtime.esm-bundler.js", vueRuntimeEntry],
|
|
100
|
+
["@vue/runtime-core", resolvePackageEntry(nuxtRequire, "@vue/runtime-core/dist/runtime-core.esm-bundler.js") ?? resolvePackageRoot(nuxtRequire, "@vue/runtime-core")],
|
|
101
|
+
["@vue/runtime-dom", resolvePackageEntry(nuxtRequire, "@vue/runtime-dom/dist/runtime-dom.esm-bundler.js") ?? resolvePackageRoot(nuxtRequire, "@vue/runtime-dom")],
|
|
102
|
+
["@vue/reactivity", resolvePackageEntry(nuxtRequire, "@vue/reactivity/dist/reactivity.esm-bundler.js") ?? resolvePackageRoot(nuxtRequire, "@vue/reactivity")],
|
|
103
|
+
["@vue/shared", resolvePackageEntry(nuxtRequire, "@vue/shared/dist/shared.esm-bundler.js") ?? resolvePackageRoot(nuxtRequire, "@vue/shared")],
|
|
104
|
+
["vue-router", resolvePackageEntry(nuxtRequire, "vue-router/dist/vue-router.mjs") ?? resolvePackageRoot(nuxtRequire, "vue-router")],
|
|
105
|
+
["@vueuse/core", resolvePackageRoot(localRequire, "@vueuse/core")],
|
|
106
|
+
["@vueuse/components", resolvePackageRoot(localRequire, "@vueuse/components")],
|
|
107
|
+
["@vueuse/shared", resolvePackageRoot(vueUseCoreRequire, "@vueuse/shared")],
|
|
108
|
+
["reka-ui", resolvePackageRoot(telaBuildRequire, "reka-ui")],
|
|
109
|
+
["radix-vue", resolvePackageRoot(telaBuildRequire, "radix-vue")],
|
|
110
|
+
["@floating-ui/vue", resolvePackageRoot(telaBuildRequire, "@floating-ui/vue")]
|
|
111
|
+
];
|
|
112
|
+
const resolvedAliases = aliases.reduce((acc, [name, resolvedPath]) => {
|
|
113
|
+
if (resolvedPath) {
|
|
114
|
+
acc[name] = resolvedPath;
|
|
115
|
+
}
|
|
116
|
+
return acc;
|
|
117
|
+
}, {});
|
|
118
|
+
for (const packageName of requiredRuntimeAliasPackages) {
|
|
119
|
+
if (!resolvedAliases[packageName]) {
|
|
120
|
+
throw new Error(`[chat-nuxt] Failed to resolve required runtime alias "${packageName}"`);
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
return resolvedAliases;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
const workspaceSettingsResolverCandidates = [
|
|
127
|
+
"server/chat/resolve-workspace-settings.ts",
|
|
128
|
+
"server/chat/resolve-workspace-settings.js"
|
|
129
|
+
];
|
|
130
|
+
function resolveWorkspaceSettingsResolverEntry(srcDir, fallbackResolverEntry) {
|
|
131
|
+
for (const relativePath of workspaceSettingsResolverCandidates) {
|
|
132
|
+
const candidate = join(srcDir, relativePath);
|
|
133
|
+
if (existsSync(candidate)) {
|
|
134
|
+
return candidate;
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
return fallbackResolverEntry;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
const _chatNuxtRequire = createRequire(import.meta.url);
|
|
141
|
+
function ensureIconifyPackages(consumerRoot) {
|
|
142
|
+
const packages = ["@iconify-json/ph"];
|
|
143
|
+
for (const pkg of packages) {
|
|
144
|
+
const consumerPath = join(consumerRoot, "node_modules", ...pkg.split("/"));
|
|
145
|
+
if (existsSync(consumerPath)) {
|
|
146
|
+
continue;
|
|
147
|
+
}
|
|
148
|
+
try {
|
|
149
|
+
const realPath = dirname(_chatNuxtRequire.resolve(`${pkg}/package.json`));
|
|
150
|
+
mkdirSync(dirname(consumerPath), { recursive: true });
|
|
151
|
+
symlinkSync(realPath, consumerPath);
|
|
152
|
+
} catch (err) {
|
|
153
|
+
console.warn(`[@meistrari/chat-nuxt] Failed to symlink ${pkg} \u2014 icons may not render.`, err);
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
function isAuthModuleEntry(entry) {
|
|
158
|
+
if (typeof entry === "string") {
|
|
159
|
+
return entry === "@meistrari/auth-nuxt";
|
|
160
|
+
}
|
|
161
|
+
if (Array.isArray(entry)) {
|
|
162
|
+
return entry[0] === "@meistrari/auth-nuxt";
|
|
163
|
+
}
|
|
164
|
+
return false;
|
|
165
|
+
}
|
|
166
|
+
const module$1 = defineNuxtModule({
|
|
167
|
+
meta: {
|
|
168
|
+
name: "@meistrari/chat-nuxt",
|
|
169
|
+
configKey: "telaChat"
|
|
170
|
+
},
|
|
171
|
+
setup(_, nuxt) {
|
|
172
|
+
ensureIconifyPackages(nuxt.options.rootDir);
|
|
173
|
+
const hasAuthModule = (nuxt.options.modules ?? []).some(isAuthModuleEntry);
|
|
174
|
+
if (!hasAuthModule) {
|
|
175
|
+
throw new Error(
|
|
176
|
+
'[@meistrari/chat-nuxt] Missing required module "@meistrari/auth-nuxt". Install and enable it so useTelaApplicationAuth() and event.context.auth are available.'
|
|
177
|
+
);
|
|
178
|
+
}
|
|
179
|
+
const resolver = createResolver(import.meta.url);
|
|
180
|
+
const runtimeDir = resolver.resolve("./runtime");
|
|
181
|
+
const workspaceSettingsResolverEntry = resolveWorkspaceSettingsResolverEntry(
|
|
182
|
+
nuxt.options.srcDir,
|
|
183
|
+
resolver.resolve("./runtime/server/utils/workspace-settings-resolver.stub")
|
|
184
|
+
);
|
|
185
|
+
const telaBuildPath = resolveTelaBuildLayer();
|
|
186
|
+
const runtimeAliases = resolveRuntimeAliases(telaBuildPath);
|
|
187
|
+
if (!Array.isArray(nuxt.options.extends)) {
|
|
188
|
+
nuxt.options.extends = nuxt.options.extends ? [nuxt.options.extends] : [];
|
|
189
|
+
}
|
|
190
|
+
nuxt.options.extends.unshift(telaBuildPath);
|
|
191
|
+
nuxt.options.alias = {
|
|
192
|
+
...nuxt.options.alias,
|
|
193
|
+
"#chat-workspace-settings-resolver": workspaceSettingsResolverEntry,
|
|
194
|
+
"#chat-runtime": runtimeDir
|
|
195
|
+
};
|
|
196
|
+
const rc = nuxt.options.runtimeConfig;
|
|
197
|
+
rc.databaseUrl = rc.databaseUrl || process.env.DATABASE_URL || "";
|
|
198
|
+
rc.telaApiUrl = rc.telaApiUrl || process.env.TELA_API_URL || "";
|
|
199
|
+
rc.telaApiKey = rc.telaApiKey || process.env.TELA_API_KEY || "";
|
|
200
|
+
rc.authApiUrl = rc.authApiUrl || process.env.AUTH_API_URL || "";
|
|
201
|
+
rc.authApiSecret = rc.authApiSecret || process.env.AUTH_API_SECRET || "";
|
|
202
|
+
rc.agentApiUrl = rc.agentApiUrl || process.env.AGENT_API_URL || "";
|
|
203
|
+
rc.authJwksUrl = rc.authJwksUrl || process.env.AUTH_JWKS_URL || "";
|
|
204
|
+
rc.vaultUrl = rc.vaultUrl || process.env.VAULT_URL || "";
|
|
205
|
+
rc.vaultS3Bucket = rc.vaultS3Bucket || process.env.VAULT_S3_BUCKET || "";
|
|
206
|
+
rc.chatAppServiceKey = rc.chatAppServiceKey || process.env.CHAT_APP_SERVICE_KEY || "";
|
|
207
|
+
rc.public = rc.public || {};
|
|
208
|
+
rc.public.agentApiUrl = rc.public.agentApiUrl || process.env.AGENT_API_URL || "";
|
|
209
|
+
addImportsDir(resolver.resolve("./runtime/composables"));
|
|
210
|
+
addImportsDir(resolver.resolve("./runtime/utils"));
|
|
211
|
+
addComponentsDir({
|
|
212
|
+
path: resolver.resolve("./runtime/components")
|
|
213
|
+
});
|
|
214
|
+
addComponentsDir({
|
|
215
|
+
path: resolver.resolve("./runtime/embed/components"),
|
|
216
|
+
pathPrefix: false
|
|
217
|
+
});
|
|
218
|
+
nuxt.hook("vite:extendConfig", (config, { isServer }) => {
|
|
219
|
+
if (isServer) {
|
|
220
|
+
return;
|
|
221
|
+
}
|
|
222
|
+
config.resolve = config.resolve || {};
|
|
223
|
+
config.plugins = config.plugins || [];
|
|
224
|
+
if (Array.isArray(config.resolve.alias)) {
|
|
225
|
+
config.resolve.alias.push(...Object.entries(runtimeAliases).map(([find, replacement]) => ({ find, replacement })));
|
|
226
|
+
} else {
|
|
227
|
+
config.resolve.alias = {
|
|
228
|
+
...config.resolve.alias || {},
|
|
229
|
+
...runtimeAliases
|
|
230
|
+
};
|
|
231
|
+
}
|
|
232
|
+
config.resolve.dedupe = Array.from(/* @__PURE__ */ new Set([
|
|
233
|
+
...config.resolve.dedupe || [],
|
|
234
|
+
...runtimeAliasDedupe
|
|
235
|
+
]));
|
|
236
|
+
});
|
|
237
|
+
const serverDir = resolver.resolve("./runtime/server");
|
|
238
|
+
nuxt.hook("nitro:config", (nitroConfig) => {
|
|
239
|
+
nitroConfig.scanDirs = nitroConfig.scanDirs || [];
|
|
240
|
+
nitroConfig.scanDirs.push(serverDir);
|
|
241
|
+
nitroConfig.alias = {
|
|
242
|
+
...nitroConfig.alias,
|
|
243
|
+
"#chat-runtime": runtimeDir,
|
|
244
|
+
"#chat-workspace-settings-resolver": workspaceSettingsResolverEntry
|
|
245
|
+
};
|
|
246
|
+
});
|
|
247
|
+
}
|
|
248
|
+
});
|
|
249
|
+
|
|
250
|
+
export { module$1 as default };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.code-theme pre{background-color:#1e1e1e;border-radius:8px;font-family:SF Mono,Fira Code,Consolas,monospace;font-size:13px;line-height:1.5;margin:12px 0;overflow:hidden;padding:0}.code-theme pre code{background:transparent;color:#d4d4d4;display:block;overflow-x:auto;padding:16px}.code-theme :not(pre)>code{background-color:#f3f4f6;border-radius:4px;color:#e11d48;font-family:SF Mono,Fira Code,Consolas,monospace;font-size:.875em;font-weight:500;padding:2px 6px}.code-theme pre[class*=language-]:before{background-color:#2d2d2d;border-bottom:1px solid #3d3d3d;color:#858585;content:attr(data-language);display:block;font-size:12px;font-weight:500;letter-spacing:.5px;padding:8px 16px;text-transform:uppercase}.code-theme .token.cdata,.code-theme .token.comment,.code-theme .token.doctype,.code-theme .token.prolog{color:#6a9955}.code-theme .token.punctuation{color:#d4d4d4}.code-theme .token.boolean,.code-theme .token.constant,.code-theme .token.number,.code-theme .token.property,.code-theme .token.symbol,.code-theme .token.tag{color:#b5cea8}.code-theme .token.attr-name,.code-theme .token.builtin,.code-theme .token.char,.code-theme .token.selector,.code-theme .token.string{color:#ce9178}.code-theme .language-css .token.string,.code-theme .style .token.string,.code-theme .token.entity,.code-theme .token.operator,.code-theme .token.url{color:#d4d4d4}.code-theme .token.atrule,.code-theme .token.attr-value,.code-theme .token.keyword{color:#569cd6}.code-theme .token.function{color:#dcdcaa}.code-theme .token.class-name{color:#4ec9b0}.code-theme .token.important,.code-theme .token.regex,.code-theme .token.variable{color:#d16969}.code-theme pre code::-webkit-scrollbar{height:8px}.code-theme pre code::-webkit-scrollbar-track{background:#2d2d2d}.code-theme pre code::-webkit-scrollbar-thumb{background:#4d4d4d;border-radius:4px}.code-theme pre code::-webkit-scrollbar-thumb:hover{background:#5d5d5d}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.markstream-vue{color:var(--black-900);font-family:Inter,"Inter Fallback: Arial",sans-serif;font-size:16px;font-weight:400;letter-spacing:-.15px;line-height:24px}.markstream-vue code,.markstream-vue kbd,.markstream-vue pre,.markstream-vue samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-size:13px;font-variation-settings:normal;line-height:1.5}.markstream-vue ol,.markstream-vue ul{margin:8px 0;padding-left:1.5em}.markstream-vue ul{list-style:disc;list-style-position:outside}.markstream-vue ol{list-style:decimal;list-style-position:outside}.markstream-vue li{margin:4px 0}.markstream-vue .paragraph-node{margin:0}.markstream-vue .heading-1,.markstream-vue h1{font-family:Inter,"Inter Fallback: Arial",sans-serif;font-size:32px;font-weight:580;letter-spacing:-1px;line-height:36px;margin:24px 0 16px}.markstream-vue .heading-2,.markstream-vue h2{font-family:Inter,"Inter Fallback: Arial",sans-serif;font-size:24px;font-weight:580;letter-spacing:-.8px;line-height:28px;margin:20px 0 12px}.markstream-vue .heading-3,.markstream-vue h3{font-family:Inter,"Inter Fallback: Arial",sans-serif;font-size:20px;font-weight:580;letter-spacing:-.5px;line-height:24px;margin:16px 0 8px}.markstream-vue .heading-4,.markstream-vue h4{font-family:Inter,"Inter Fallback: Arial",sans-serif;font-size:16px;font-weight:580;letter-spacing:-.2px;line-height:20px;margin:12px 0 6px}.markstream-vue .heading-5,.markstream-vue h5{font-family:Inter,"Inter Fallback: Arial",sans-serif;font-size:14px;font-weight:580;letter-spacing:-.15px;line-height:16px;margin:8px 0 4px}.markstream-vue .heading-6,.markstream-vue h6{font-family:Inter,"Inter Fallback: Arial",sans-serif;font-size:12px;font-weight:580;letter-spacing:-.1px;line-height:14px;margin:8px 0 4px}.markstream-vue [class*=tooltip],[class*=tooltip-element]{background-color:var(--black-900,#1a1a1a)!important;border-radius:4px;color:#fff!important;font-size:12px;padding:4px 8px}.mention-tag{align-items:center;border-radius:9999px;display:inline-flex;font-size:.875em;font-weight:500;gap:4px;padding:2px 8px;vertical-align:middle;white-space:nowrap}.mention-tag-file{background-color:rgba(127,189,247,.12);color:#7fbdf7}.mention-tag-skill{background-color:rgba(155,111,222,.12);color:#9b6fde}.mention-tag-canvas{background-color:rgba(234,161,65,.12);color:#d4882e}.mention-tag>span[class*=i-ph]{flex-shrink:0}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
declare const _default: typeof __VLS_export;
|
|
3
|
+
export default _default;
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
const statusToast = useStatusToast();
|
|
3
|
+
</script>
|
|
4
|
+
|
|
5
|
+
<template>
|
|
6
|
+
<Transition name="toast">
|
|
7
|
+
<div
|
|
8
|
+
v-if="statusToast.visible.value"
|
|
9
|
+
fixed
|
|
10
|
+
bottom-24px
|
|
11
|
+
left="50%"
|
|
12
|
+
translate-x="-50%"
|
|
13
|
+
z-1000
|
|
14
|
+
flex
|
|
15
|
+
items-center
|
|
16
|
+
gap-8px
|
|
17
|
+
px-16px
|
|
18
|
+
py-12px
|
|
19
|
+
bg-black-900
|
|
20
|
+
text-white
|
|
21
|
+
rounded-8px
|
|
22
|
+
shadow-lg
|
|
23
|
+
>
|
|
24
|
+
<span
|
|
25
|
+
v-if="statusToast.icon.value"
|
|
26
|
+
:class="statusToast.icon.value"
|
|
27
|
+
text-16px
|
|
28
|
+
/>
|
|
29
|
+
<div
|
|
30
|
+
v-if="statusToast.loading.value"
|
|
31
|
+
i-ph-spinner
|
|
32
|
+
animate-spin
|
|
33
|
+
text-16px
|
|
34
|
+
/>
|
|
35
|
+
<span body-14-regular>{{ statusToast.text.value }}</span>
|
|
36
|
+
</div>
|
|
37
|
+
</Transition>
|
|
38
|
+
</template>
|
|
39
|
+
|
|
40
|
+
<style scoped>
|
|
41
|
+
.toast-enter-active,.toast-leave-active{transition:all .3s ease}.toast-enter-from,.toast-leave-to{opacity:0;transform:translateX(-50%) translateY(20px)}
|
|
42
|
+
</style>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
declare const __VLS_export: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
declare const _default: typeof __VLS_export;
|
|
3
|
+
export default _default;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import type { DeepReadonly } from 'vue';
|
|
2
|
+
import type { WorkspaceSettings } from '../composables/useWorkspaceSettings.js';
|
|
3
|
+
import type { ChatActor, ChatFeatureConfig } from '../utils/tela-chat.js';
|
|
4
|
+
type __VLS_Props = {
|
|
5
|
+
workspaceId: string;
|
|
6
|
+
workspaceSettings?: DeepReadonly<WorkspaceSettings> | WorkspaceSettings | null;
|
|
7
|
+
user?: ChatActor | null;
|
|
8
|
+
conversationId?: string | null;
|
|
9
|
+
initialConversationId?: string | null;
|
|
10
|
+
hideSidebar?: boolean;
|
|
11
|
+
features?: Partial<ChatFeatureConfig>;
|
|
12
|
+
};
|
|
13
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
14
|
+
"update:conversationId": (value: string | null) => any;
|
|
15
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
16
|
+
"onUpdate:conversationId"?: ((value: string | null) => any) | undefined;
|
|
17
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
18
|
+
declare const _default: typeof __VLS_export;
|
|
19
|
+
export default _default;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
defineProps({
|
|
3
|
+
workspaceId: { type: String, required: true },
|
|
4
|
+
workspaceSettings: { type: null, required: false },
|
|
5
|
+
user: { type: [Object, null], required: false },
|
|
6
|
+
conversationId: { type: [String, null], required: false },
|
|
7
|
+
initialConversationId: { type: [String, null], required: false },
|
|
8
|
+
hideSidebar: { type: Boolean, required: false },
|
|
9
|
+
features: { type: Object, required: false }
|
|
10
|
+
});
|
|
11
|
+
defineEmits(["update:conversationId"]);
|
|
12
|
+
</script>
|
|
13
|
+
|
|
14
|
+
<template>
|
|
15
|
+
<ChatEmbed
|
|
16
|
+
:workspace-id="workspaceId"
|
|
17
|
+
:workspace-settings="workspaceSettings"
|
|
18
|
+
:user="user"
|
|
19
|
+
:conversation-id="conversationId"
|
|
20
|
+
:initial-conversation-id="initialConversationId"
|
|
21
|
+
:hide-sidebar="hideSidebar"
|
|
22
|
+
:features="features"
|
|
23
|
+
@update:conversation-id="$emit('update:conversationId', $event)"
|
|
24
|
+
/>
|
|
25
|
+
</template>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import type { DeepReadonly } from 'vue';
|
|
2
|
+
import type { WorkspaceSettings } from '../composables/useWorkspaceSettings.js';
|
|
3
|
+
import type { ChatActor, ChatFeatureConfig } from '../utils/tela-chat.js';
|
|
4
|
+
type __VLS_Props = {
|
|
5
|
+
workspaceId: string;
|
|
6
|
+
workspaceSettings?: DeepReadonly<WorkspaceSettings> | WorkspaceSettings | null;
|
|
7
|
+
user?: ChatActor | null;
|
|
8
|
+
conversationId?: string | null;
|
|
9
|
+
initialConversationId?: string | null;
|
|
10
|
+
hideSidebar?: boolean;
|
|
11
|
+
features?: Partial<ChatFeatureConfig>;
|
|
12
|
+
};
|
|
13
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
14
|
+
"update:conversationId": (value: string | null) => any;
|
|
15
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
16
|
+
"onUpdate:conversationId"?: ((value: string | null) => any) | undefined;
|
|
17
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
18
|
+
declare const _default: typeof __VLS_export;
|
|
19
|
+
export default _default;
|