veryfront 0.1.997 → 0.1.998
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/esm/cli/templates/manifest.js +1 -1
- package/esm/deno.d.ts +7 -0
- package/esm/deno.js +11 -3
- package/esm/deps/esm.sh/react-dom@19.2.4.d.ts +2 -0
- package/esm/deps/esm.sh/react-dom@19.2.4.d.ts.map +1 -0
- package/esm/deps/esm.sh/react-dom@19.2.4.js +3 -0
- package/esm/react/react-dom.d.ts +3 -0
- package/esm/react/react-dom.d.ts.map +1 -0
- package/esm/react/react-dom.js +2 -0
- package/esm/src/agent/ag-ui/host-support.d.ts.map +1 -1
- package/esm/src/agent/ag-ui/host-support.js +12 -0
- package/esm/src/agent/react/index.d.ts +4 -2
- package/esm/src/agent/react/index.d.ts.map +1 -1
- package/esm/src/agent/react/index.js +2 -1
- package/esm/src/agent/react/use-agent-metadata.d.ts +5 -0
- package/esm/src/agent/react/use-agent-metadata.d.ts.map +1 -1
- package/esm/src/agent/react/use-agent-metadata.js +18 -9
- package/esm/src/agent/react/use-agents.d.ts +33 -0
- package/esm/src/agent/react/use-agents.d.ts.map +1 -0
- package/esm/src/agent/react/use-agents.js +72 -0
- package/esm/src/agent/react/use-chat/index.d.ts +1 -1
- package/esm/src/agent/react/use-chat/index.d.ts.map +1 -1
- package/esm/src/agent/react/use-chat/types.d.ts +3 -2
- package/esm/src/agent/react/use-chat/types.d.ts.map +1 -1
- package/esm/src/agent/react/use-chat/use-chat.d.ts +12 -1
- package/esm/src/agent/react/use-chat/use-chat.d.ts.map +1 -1
- package/esm/src/agent/react/use-chat/use-chat.js +47 -7
- package/esm/src/agent/react/use-chat/utils.d.ts.map +1 -1
- package/esm/src/agent/react/use-chat/utils.js +4 -0
- package/esm/src/agent/runtime/message-adapter.d.ts.map +1 -1
- package/esm/src/agent/runtime/message-adapter.js +3 -1
- package/esm/src/agent/runtime/text-generation-runtime-message-converter.d.ts.map +1 -1
- package/esm/src/agent/runtime/text-generation-runtime-message-converter.js +6 -2
- package/esm/src/chat/index.d.ts +17 -7
- package/esm/src/chat/index.d.ts.map +1 -1
- package/esm/src/chat/index.js +33 -7
- package/esm/src/chat/protocol.d.ts +13 -1
- package/esm/src/chat/protocol.d.ts.map +1 -1
- package/esm/src/chat/upload-handler.d.ts +55 -0
- package/esm/src/chat/upload-handler.d.ts.map +1 -0
- package/esm/src/chat/upload-handler.js +180 -0
- package/esm/src/discovery/import-rewriter.d.ts +1 -1
- package/esm/src/discovery/import-rewriter.d.ts.map +1 -1
- package/esm/src/discovery/import-rewriter.js +2 -0
- package/esm/src/discovery/transpiler.d.ts.map +1 -1
- package/esm/src/discovery/transpiler.js +2 -0
- package/esm/src/react/components/chat/agent-card.d.ts +84 -11
- package/esm/src/react/components/chat/agent-card.d.ts.map +1 -1
- package/esm/src/react/components/chat/agent-card.js +151 -57
- package/esm/src/react/components/chat/agent-picker.d.ts +166 -0
- package/esm/src/react/components/chat/agent-picker.d.ts.map +1 -0
- package/esm/src/react/components/chat/agent-picker.js +183 -0
- package/esm/src/react/components/chat/chat/components/animations.js +1 -1
- package/esm/src/react/components/chat/chat/components/attachment-pill.d.ts +125 -3
- package/esm/src/react/components/chat/chat/components/attachment-pill.d.ts.map +1 -1
- package/esm/src/react/components/chat/chat/components/attachment-pill.js +209 -25
- package/esm/src/react/components/chat/chat/components/attachments-panel.d.ts +149 -0
- package/esm/src/react/components/chat/chat/components/attachments-panel.d.ts.map +1 -0
- package/esm/src/react/components/chat/chat/components/attachments-panel.js +187 -0
- package/esm/src/react/components/chat/chat/components/branch-picker.d.ts +13 -2
- package/esm/src/react/components/chat/chat/components/branch-picker.d.ts.map +1 -1
- package/esm/src/react/components/chat/chat/components/branch-picker.js +6 -8
- package/esm/src/react/components/chat/chat/components/chat-messages-skeleton.d.ts +20 -0
- package/esm/src/react/components/chat/chat/components/chat-messages-skeleton.d.ts.map +1 -0
- package/esm/src/react/components/chat/chat/components/chat-messages-skeleton.js +31 -0
- package/esm/src/react/components/chat/chat/components/code-block.d.ts +9 -1
- package/esm/src/react/components/chat/chat/components/code-block.d.ts.map +1 -1
- package/esm/src/react/components/chat/chat/components/code-block.js +14 -6
- package/esm/src/react/components/chat/chat/components/drop-zone.d.ts +11 -4
- package/esm/src/react/components/chat/chat/components/drop-zone.d.ts.map +1 -1
- package/esm/src/react/components/chat/chat/components/drop-zone.js +10 -8
- package/esm/src/react/components/chat/chat/components/empty-state.d.ts +2 -1
- package/esm/src/react/components/chat/chat/components/empty-state.d.ts.map +1 -1
- package/esm/src/react/components/chat/chat/components/empty-state.js +7 -8
- package/esm/src/react/components/chat/chat/components/inference-badge.d.ts +6 -2
- package/esm/src/react/components/chat/chat/components/inference-badge.d.ts.map +1 -1
- package/esm/src/react/components/chat/chat/components/inference-badge.js +5 -4
- package/esm/src/react/components/chat/chat/components/inline-citation.d.ts +9 -1
- package/esm/src/react/components/chat/chat/components/inline-citation.d.ts.map +1 -1
- package/esm/src/react/components/chat/chat/components/inline-citation.js +19 -20
- package/esm/src/react/components/chat/chat/components/message-actions.d.ts +28 -5
- package/esm/src/react/components/chat/chat/components/message-actions.d.ts.map +1 -1
- package/esm/src/react/components/chat/chat/components/message-actions.js +24 -36
- package/esm/src/react/components/chat/chat/components/message-edit-form.d.ts +7 -2
- package/esm/src/react/components/chat/chat/components/message-edit-form.d.ts.map +1 -1
- package/esm/src/react/components/chat/chat/components/message-edit-form.js +5 -5
- package/esm/src/react/components/chat/chat/components/message-feedback.d.ts +11 -1
- package/esm/src/react/components/chat/chat/components/message-feedback.d.ts.map +1 -1
- package/esm/src/react/components/chat/chat/components/message-feedback.js +9 -11
- package/esm/src/react/components/chat/chat/components/quick-actions.d.ts.map +1 -1
- package/esm/src/react/components/chat/chat/components/quick-actions.js +3 -1
- package/esm/src/react/components/chat/chat/components/reasoning.d.ts +66 -3
- package/esm/src/react/components/chat/chat/components/reasoning.d.ts.map +1 -1
- package/esm/src/react/components/chat/chat/components/reasoning.js +95 -21
- package/esm/src/react/components/chat/chat/components/sidebar.d.ts +178 -12
- package/esm/src/react/components/chat/chat/components/sidebar.d.ts.map +1 -1
- package/esm/src/react/components/chat/chat/components/sidebar.js +228 -45
- package/esm/src/react/components/chat/chat/components/skill-badge.d.ts +6 -1
- package/esm/src/react/components/chat/chat/components/skill-badge.d.ts.map +1 -1
- package/esm/src/react/components/chat/chat/components/skill-badge.js +6 -5
- package/esm/src/react/components/chat/chat/components/skill-tool.d.ts +37 -0
- package/esm/src/react/components/chat/chat/components/skill-tool.d.ts.map +1 -0
- package/esm/src/react/components/chat/chat/components/skill-tool.js +46 -0
- package/esm/src/react/components/chat/chat/components/sources.d.ts +55 -3
- package/esm/src/react/components/chat/chat/components/sources.d.ts.map +1 -1
- package/esm/src/react/components/chat/chat/components/sources.js +50 -16
- package/esm/src/react/components/chat/chat/components/step-indicator.d.ts +42 -3
- package/esm/src/react/components/chat/chat/components/step-indicator.d.ts.map +1 -1
- package/esm/src/react/components/chat/chat/components/step-indicator.js +55 -12
- package/esm/src/react/components/chat/chat/components/tab-switcher.d.ts +1 -1
- package/esm/src/react/components/chat/chat/components/tab-switcher.d.ts.map +1 -1
- package/esm/src/react/components/chat/chat/components/tab-switcher.js +3 -3
- package/esm/src/react/components/chat/chat/components/tool-ui.d.ts +96 -3
- package/esm/src/react/components/chat/chat/components/tool-ui.d.ts.map +1 -1
- package/esm/src/react/components/chat/chat/components/tool-ui.js +158 -36
- package/esm/src/react/components/chat/chat/composition/api.d.ts +4 -2
- package/esm/src/react/components/chat/chat/composition/api.d.ts.map +1 -1
- package/esm/src/react/components/chat/chat/composition/api.js +4 -2
- package/esm/src/react/components/chat/chat/composition/chat-composer.d.ts +112 -5
- package/esm/src/react/components/chat/chat/composition/chat-composer.d.ts.map +1 -1
- package/esm/src/react/components/chat/chat/composition/chat-composer.js +251 -61
- package/esm/src/react/components/chat/chat/composition/chat-empty-state.d.ts +78 -0
- package/esm/src/react/components/chat/chat/composition/chat-empty-state.d.ts.map +1 -0
- package/esm/src/react/components/chat/chat/composition/chat-empty-state.js +63 -0
- package/esm/src/react/components/chat/chat/composition/chat-empty.d.ts +4 -1
- package/esm/src/react/components/chat/chat/composition/chat-empty.d.ts.map +1 -1
- package/esm/src/react/components/chat/chat/composition/chat-empty.js +11 -10
- package/esm/src/react/components/chat/chat/composition/chat-message-list.d.ts +11 -3
- package/esm/src/react/components/chat/chat/composition/chat-message-list.d.ts.map +1 -1
- package/esm/src/react/components/chat/chat/composition/chat-message-list.js +81 -111
- package/esm/src/react/components/chat/chat/composition/chat-root.d.ts +4 -0
- package/esm/src/react/components/chat/chat/composition/chat-root.d.ts.map +1 -1
- package/esm/src/react/components/chat/chat/composition/chat-root.js +3 -1
- package/esm/src/react/components/chat/chat/composition/error-banner.d.ts +4 -0
- package/esm/src/react/components/chat/chat/composition/error-banner.d.ts.map +1 -1
- package/esm/src/react/components/chat/chat/composition/error-banner.js +10 -7
- package/esm/src/react/components/chat/chat/composition/message.d.ts +123 -5
- package/esm/src/react/components/chat/chat/composition/message.d.ts.map +1 -1
- package/esm/src/react/components/chat/chat/composition/message.js +332 -53
- package/esm/src/react/components/chat/chat/composition/model-avatar.d.ts +6 -1
- package/esm/src/react/components/chat/chat/composition/model-avatar.d.ts.map +1 -1
- package/esm/src/react/components/chat/chat/composition/model-avatar.js +3 -4
- package/esm/src/react/components/chat/chat/composition/pending-message.d.ts +31 -0
- package/esm/src/react/components/chat/chat/composition/pending-message.d.ts.map +1 -0
- package/esm/src/react/components/chat/chat/composition/pending-message.js +31 -0
- package/esm/src/react/components/chat/chat/contexts/chat-context.d.ts +4 -0
- package/esm/src/react/components/chat/chat/contexts/chat-context.d.ts.map +1 -1
- package/esm/src/react/components/chat/chat/contexts/composer-context.d.ts +1 -0
- package/esm/src/react/components/chat/chat/contexts/composer-context.d.ts.map +1 -1
- package/esm/src/react/components/chat/chat/contexts/conversations-context.d.ts +29 -0
- package/esm/src/react/components/chat/chat/contexts/conversations-context.d.ts.map +1 -0
- package/esm/src/react/components/chat/chat/contexts/conversations-context.js +39 -0
- package/esm/src/react/components/chat/chat/contexts/index.d.ts +1 -1
- package/esm/src/react/components/chat/chat/contexts/index.d.ts.map +1 -1
- package/esm/src/react/components/chat/chat/contexts/index.js +1 -1
- package/esm/src/react/components/chat/chat/contexts/message-context.d.ts +2 -0
- package/esm/src/react/components/chat/chat/contexts/message-context.d.ts.map +1 -1
- package/esm/src/react/components/chat/chat/hooks/use-clipboard.d.ts +10 -0
- package/esm/src/react/components/chat/chat/hooks/use-clipboard.d.ts.map +1 -0
- package/esm/src/react/components/chat/chat/hooks/use-clipboard.js +34 -0
- package/esm/src/react/components/chat/chat/hooks/use-conversation.d.ts +21 -0
- package/esm/src/react/components/chat/chat/hooks/use-conversation.d.ts.map +1 -0
- package/esm/src/react/components/chat/chat/hooks/use-conversation.js +54 -0
- package/esm/src/react/components/chat/chat/hooks/use-conversations.d.ts +67 -0
- package/esm/src/react/components/chat/chat/hooks/use-conversations.d.ts.map +1 -0
- package/esm/src/react/components/chat/chat/hooks/use-conversations.js +317 -0
- package/esm/src/react/components/chat/chat/hooks/use-drop-zone.d.ts +27 -0
- package/esm/src/react/components/chat/chat/hooks/use-drop-zone.d.ts.map +1 -0
- package/esm/src/react/components/chat/chat/hooks/use-drop-zone.js +50 -0
- package/esm/src/react/components/chat/chat/hooks/use-stick-to-bottom.d.ts +49 -0
- package/esm/src/react/components/chat/chat/hooks/use-stick-to-bottom.d.ts.map +1 -0
- package/esm/src/react/components/chat/chat/hooks/use-stick-to-bottom.js +120 -0
- package/esm/src/react/components/chat/chat/hooks/use-upload.d.ts +34 -0
- package/esm/src/react/components/chat/chat/hooks/use-upload.d.ts.map +1 -0
- package/esm/src/react/components/chat/chat/hooks/use-upload.js +147 -0
- package/esm/src/react/components/chat/chat/hooks/use-uploads-registry.d.ts +37 -0
- package/esm/src/react/components/chat/chat/hooks/use-uploads-registry.d.ts.map +1 -0
- package/esm/src/react/components/chat/chat/hooks/use-uploads-registry.js +178 -0
- package/esm/src/react/components/chat/chat/index.d.ts +171 -31
- package/esm/src/react/components/chat/chat/index.d.ts.map +1 -1
- package/esm/src/react/components/chat/chat/index.js +371 -77
- package/esm/src/react/components/chat/chat/persistence/conversation-store.d.ts +63 -0
- package/esm/src/react/components/chat/chat/persistence/conversation-store.d.ts.map +1 -0
- package/esm/src/react/components/chat/chat/persistence/conversation-store.js +1 -0
- package/esm/src/react/components/chat/chat/persistence/local-conversation-store.d.ts +13 -0
- package/esm/src/react/components/chat/chat/persistence/local-conversation-store.d.ts.map +1 -0
- package/esm/src/react/components/chat/chat/persistence/local-conversation-store.js +102 -0
- package/esm/src/react/components/chat/chat/persistence/memory-conversation-store.d.ts +11 -0
- package/esm/src/react/components/chat/chat/persistence/memory-conversation-store.d.ts.map +1 -0
- package/esm/src/react/components/chat/chat/persistence/memory-conversation-store.js +33 -0
- package/esm/src/react/components/chat/chat/utils/message-parts.d.ts +4 -1
- package/esm/src/react/components/chat/chat/utils/message-parts.d.ts.map +1 -1
- package/esm/src/react/components/chat/chat/utils/message-parts.js +4 -0
- package/esm/src/react/components/chat/chat-actions.d.ts +164 -0
- package/esm/src/react/components/chat/chat-actions.d.ts.map +1 -0
- package/esm/src/react/components/chat/chat-actions.js +191 -0
- package/esm/src/react/components/chat/chat-agent-picker.d.ts +50 -0
- package/esm/src/react/components/chat/chat-agent-picker.d.ts.map +1 -0
- package/esm/src/react/components/chat/chat-agent-picker.js +40 -0
- package/esm/src/react/components/chat/chat-theme-scope.d.ts +26 -0
- package/esm/src/react/components/chat/chat-theme-scope.d.ts.map +1 -0
- package/esm/src/react/components/chat/chat-theme-scope.js +27 -0
- package/esm/src/react/components/chat/chat-tokens-style.d.ts +21 -0
- package/esm/src/react/components/chat/chat-tokens-style.d.ts.map +1 -0
- package/esm/src/react/components/chat/chat-tokens-style.js +24 -0
- package/esm/src/react/components/chat/chat.d.ts +5 -5
- package/esm/src/react/components/chat/chat.d.ts.map +1 -1
- package/esm/src/react/components/chat/chat.js +5 -5
- package/esm/src/react/components/chat/color-mode.d.ts +46 -0
- package/esm/src/react/components/chat/color-mode.d.ts.map +1 -0
- package/esm/src/react/components/chat/color-mode.js +123 -0
- package/esm/src/react/components/chat/error-boundary.js +2 -2
- package/esm/src/react/components/chat/icons/index.d.ts +8 -0
- package/esm/src/react/components/chat/icons/index.d.ts.map +1 -1
- package/esm/src/react/components/chat/icons/index.js +64 -0
- package/esm/src/react/components/chat/markdown.d.ts +24 -1
- package/esm/src/react/components/chat/markdown.d.ts.map +1 -1
- package/esm/src/react/components/chat/markdown.js +122 -38
- package/esm/src/react/components/chat/model-selector.d.ts +130 -8
- package/esm/src/react/components/chat/model-selector.d.ts.map +1 -1
- package/esm/src/react/components/chat/model-selector.js +148 -121
- package/esm/src/react/components/chat/theme.d.ts +9 -12
- package/esm/src/react/components/chat/theme.d.ts.map +1 -1
- package/esm/src/react/components/chat/theme.js +149 -93
- package/esm/src/react/components/chat/ui/alert.d.ts +30 -0
- package/esm/src/react/components/chat/ui/alert.d.ts.map +1 -0
- package/esm/src/react/components/chat/ui/alert.js +35 -0
- package/esm/src/react/components/chat/ui/app-shell.d.ts +155 -0
- package/esm/src/react/components/chat/ui/app-shell.d.ts.map +1 -0
- package/esm/src/react/components/chat/ui/app-shell.js +276 -0
- package/esm/src/react/components/chat/ui/avatar.d.ts +24 -0
- package/esm/src/react/components/chat/ui/avatar.d.ts.map +1 -0
- package/esm/src/react/components/chat/ui/avatar.js +44 -0
- package/esm/src/react/components/chat/ui/badge.d.ts +24 -0
- package/esm/src/react/components/chat/ui/badge.d.ts.map +1 -0
- package/esm/src/react/components/chat/ui/badge.js +30 -0
- package/esm/src/react/components/chat/ui/button.d.ts +44 -0
- package/esm/src/react/components/chat/ui/button.d.ts.map +1 -0
- package/esm/src/react/components/chat/ui/button.js +108 -0
- package/esm/src/react/components/chat/ui/card.d.ts +42 -0
- package/esm/src/react/components/chat/ui/card.d.ts.map +1 -0
- package/esm/src/react/components/chat/ui/card.js +55 -0
- package/esm/src/react/components/chat/ui/checkbox.d.ts +28 -0
- package/esm/src/react/components/chat/ui/checkbox.d.ts.map +1 -0
- package/esm/src/react/components/chat/ui/checkbox.js +36 -0
- package/esm/src/react/components/chat/ui/code-block.d.ts +89 -0
- package/esm/src/react/components/chat/ui/code-block.d.ts.map +1 -0
- package/esm/src/react/components/chat/ui/code-block.js +277 -0
- package/esm/src/react/components/chat/ui/collapsible.d.ts +30 -0
- package/esm/src/react/components/chat/ui/collapsible.d.ts.map +1 -0
- package/esm/src/react/components/chat/ui/collapsible.js +44 -0
- package/esm/src/react/components/chat/ui/command.d.ts +65 -0
- package/esm/src/react/components/chat/ui/command.d.ts.map +1 -0
- package/esm/src/react/components/chat/ui/command.js +121 -0
- package/esm/src/react/components/chat/ui/cva.d.ts +36 -0
- package/esm/src/react/components/chat/ui/cva.d.ts.map +1 -0
- package/esm/src/react/components/chat/ui/cva.js +45 -0
- package/esm/src/react/components/chat/ui/dialog.d.ts +55 -0
- package/esm/src/react/components/chat/ui/dialog.d.ts.map +1 -0
- package/esm/src/react/components/chat/ui/dialog.js +116 -0
- package/esm/src/react/components/chat/ui/drawer.d.ts +41 -0
- package/esm/src/react/components/chat/ui/drawer.d.ts.map +1 -0
- package/esm/src/react/components/chat/ui/drawer.js +92 -0
- package/esm/src/react/components/chat/ui/dropdown-menu.d.ts +63 -0
- package/esm/src/react/components/chat/ui/dropdown-menu.d.ts.map +1 -0
- package/esm/src/react/components/chat/ui/dropdown-menu.js +76 -0
- package/esm/src/react/components/chat/ui/file-type.d.ts +26 -0
- package/esm/src/react/components/chat/ui/file-type.d.ts.map +1 -0
- package/esm/src/react/components/chat/ui/file-type.js +235 -0
- package/esm/src/react/components/chat/ui/floating.d.ts +29 -0
- package/esm/src/react/components/chat/ui/floating.d.ts.map +1 -0
- package/esm/src/react/components/chat/ui/floating.js +90 -0
- package/esm/src/react/components/chat/ui/icon-button.d.ts +19 -0
- package/esm/src/react/components/chat/ui/icon-button.d.ts.map +1 -0
- package/esm/src/react/components/chat/ui/icon-button.js +20 -0
- package/esm/src/react/components/chat/ui/index.d.ts +43 -0
- package/esm/src/react/components/chat/ui/index.d.ts.map +1 -0
- package/esm/src/react/components/chat/ui/index.js +42 -0
- package/esm/src/react/components/chat/ui/input.d.ts +27 -0
- package/esm/src/react/components/chat/ui/input.d.ts.map +1 -0
- package/esm/src/react/components/chat/ui/input.js +41 -0
- package/esm/src/react/components/chat/ui/label.d.ts +29 -0
- package/esm/src/react/components/chat/ui/label.d.ts.map +1 -0
- package/esm/src/react/components/chat/ui/label.js +40 -0
- package/esm/src/react/components/chat/ui/list.d.ts +47 -0
- package/esm/src/react/components/chat/ui/list.d.ts.map +1 -0
- package/esm/src/react/components/chat/ui/list.js +40 -0
- package/esm/src/react/components/chat/ui/pill.d.ts +26 -0
- package/esm/src/react/components/chat/ui/pill.d.ts.map +1 -0
- package/esm/src/react/components/chat/ui/pill.js +39 -0
- package/esm/src/react/components/chat/ui/popover.d.ts +47 -0
- package/esm/src/react/components/chat/ui/popover.d.ts.map +1 -0
- package/esm/src/react/components/chat/ui/popover.js +68 -0
- package/esm/src/react/components/chat/ui/progress-bar.d.ts +20 -0
- package/esm/src/react/components/chat/ui/progress-bar.d.ts.map +1 -0
- package/esm/src/react/components/chat/ui/progress-bar.js +31 -0
- package/esm/src/react/components/chat/ui/radio.d.ts +25 -0
- package/esm/src/react/components/chat/ui/radio.d.ts.map +1 -0
- package/esm/src/react/components/chat/ui/radio.js +29 -0
- package/esm/src/react/components/chat/ui/scroll-fade.d.ts +23 -0
- package/esm/src/react/components/chat/ui/scroll-fade.d.ts.map +1 -0
- package/esm/src/react/components/chat/ui/scroll-fade.js +40 -0
- package/esm/src/react/components/chat/ui/select.d.ts +64 -0
- package/esm/src/react/components/chat/ui/select.d.ts.map +1 -0
- package/esm/src/react/components/chat/ui/select.js +148 -0
- package/esm/src/react/components/chat/ui/shimmer.d.ts +25 -0
- package/esm/src/react/components/chat/ui/shimmer.d.ts.map +1 -0
- package/esm/src/react/components/chat/ui/shimmer.js +24 -0
- package/esm/src/react/components/chat/ui/skeleton.d.ts +14 -0
- package/esm/src/react/components/chat/ui/skeleton.d.ts.map +1 -0
- package/esm/src/react/components/chat/ui/skeleton.js +12 -0
- package/esm/src/react/components/chat/ui/slot.d.ts +21 -0
- package/esm/src/react/components/chat/ui/slot.d.ts.map +1 -0
- package/esm/src/react/components/chat/ui/slot.js +70 -0
- package/esm/src/react/components/chat/ui/status.d.ts +28 -0
- package/esm/src/react/components/chat/ui/status.d.ts.map +1 -0
- package/esm/src/react/components/chat/ui/status.js +23 -0
- package/esm/src/react/components/chat/ui/switch.d.ts +34 -0
- package/esm/src/react/components/chat/ui/switch.d.ts.map +1 -0
- package/esm/src/react/components/chat/ui/switch.js +58 -0
- package/esm/src/react/components/chat/ui/tabs.d.ts +44 -0
- package/esm/src/react/components/chat/ui/tabs.d.ts.map +1 -0
- package/esm/src/react/components/chat/ui/tabs.js +51 -0
- package/esm/src/react/components/chat/ui/tag.d.ts +22 -0
- package/esm/src/react/components/chat/ui/tag.d.ts.map +1 -0
- package/esm/src/react/components/chat/ui/tag.js +27 -0
- package/esm/src/react/components/chat/ui/textarea.d.ts +22 -0
- package/esm/src/react/components/chat/ui/textarea.d.ts.map +1 -0
- package/esm/src/react/components/chat/ui/textarea.js +35 -0
- package/esm/src/react/components/chat/ui/tooltip.d.ts +40 -0
- package/esm/src/react/components/chat/ui/tooltip.d.ts.map +1 -0
- package/esm/src/react/components/chat/ui/tooltip.js +132 -0
- package/esm/src/react/primitives/input-box.d.ts.map +1 -1
- package/esm/src/react/primitives/input-box.js +17 -4
- package/esm/src/server/handlers/dev/framework-candidates.generated.d.ts.map +1 -1
- package/esm/src/server/handlers/dev/framework-candidates.generated.js +9437 -1064
- package/esm/src/server/handlers/dev/projects/html-shell.d.ts +1 -1
- package/esm/src/server/handlers/dev/projects/html-shell.d.ts.map +1 -1
- package/esm/src/server/handlers/dev/projects/html-shell.js +1 -12
- package/esm/src/server/handlers/request/public-agents-list.handler.d.ts +18 -0
- package/esm/src/server/handlers/request/public-agents-list.handler.d.ts.map +1 -0
- package/esm/src/server/handlers/request/public-agents-list.handler.js +44 -0
- package/esm/src/server/runtime-handler/index.d.ts +1 -1
- package/esm/src/server/runtime-handler/index.d.ts.map +1 -1
- package/esm/src/server/runtime-handler/index.js +3 -0
- package/esm/src/studio/bridge/bridge-bundle.generated.d.ts +1 -1
- package/esm/src/studio/bridge/bridge-bundle.generated.d.ts.map +1 -1
- package/esm/src/studio/bridge/bridge-bundle.generated.js +3 -2
- package/esm/src/utils/version-constant.d.ts +1 -1
- package/esm/src/utils/version-constant.js +1 -1
- package/esm/src/workflow/blob/local-storage.d.ts +32 -0
- package/esm/src/workflow/blob/local-storage.d.ts.map +1 -0
- package/esm/src/workflow/blob/local-storage.js +179 -0
- package/esm/src/workflow/blob/types.d.ts +5 -0
- package/esm/src/workflow/blob/types.d.ts.map +1 -1
- package/esm/src/workflow/blob/veryfront-cloud-storage.d.ts +11 -0
- package/esm/src/workflow/blob/veryfront-cloud-storage.d.ts.map +1 -1
- package/esm/src/workflow/blob/veryfront-cloud-storage.js +36 -0
- package/package.json +5 -1
- package/esm/src/react/components/chat/chat/components/uploads-panel.d.ts +0 -20
- package/esm/src/react/components/chat/chat/components/uploads-panel.d.ts.map +0 -1
- package/esm/src/react/components/chat/chat/components/uploads-panel.js +0 -49
- package/esm/src/react/components/chat/chat/contexts/thread-list-context.d.ts +0 -28
- package/esm/src/react/components/chat/chat/contexts/thread-list-context.d.ts.map +0 -1
- package/esm/src/react/components/chat/chat/contexts/thread-list-context.js +0 -27
- package/esm/src/react/components/chat/chat/hooks/use-threads.d.ts +0 -28
- package/esm/src/react/components/chat/chat/hooks/use-threads.d.ts.map +0 -1
- package/esm/src/react/components/chat/chat/hooks/use-threads.js +0 -151
- package/esm/src/react/components/chat/chat-with-sidebar.d.ts +0 -110
- package/esm/src/react/components/chat/chat-with-sidebar.d.ts.map +0 -1
- package/esm/src/react/components/chat/chat-with-sidebar.js +0 -167
- package/esm/src/react/components/chat/message.d.ts +0 -42
- package/esm/src/react/components/chat/message.d.ts.map +0 -1
- package/esm/src/react/components/chat/message.js +0 -69
|
@@ -10,23 +10,21 @@
|
|
|
10
10
|
*
|
|
11
11
|
* export default function Page() {
|
|
12
12
|
* const chat = useChat();
|
|
13
|
-
* return
|
|
14
|
-
* <Chat
|
|
15
|
-
* messages={chat.messages}
|
|
16
|
-
* input={chat.input}
|
|
17
|
-
* onChange={chat.handleInputChange}
|
|
18
|
-
* onSubmit={chat.handleSubmit}
|
|
19
|
-
* />
|
|
20
|
-
* );
|
|
13
|
+
* return <Chat chat={chat} />;
|
|
21
14
|
* }
|
|
22
15
|
* ```
|
|
23
16
|
*
|
|
17
|
+
* @example App mode (black box — no wiring)
|
|
18
|
+
* ```tsx
|
|
19
|
+
* <Chat agentId="support" api="/api/ag-ui" />
|
|
20
|
+
* ```
|
|
21
|
+
*
|
|
24
22
|
* @example Custom layout (composition)
|
|
25
23
|
* ```tsx
|
|
26
24
|
* <Chat.Root messages={messages} input={input}>
|
|
27
25
|
* <Chat.Empty title="Ask anything" />
|
|
28
26
|
* <Chat.MessageList messages={messages} />
|
|
29
|
-
* <Chat.
|
|
27
|
+
* <Chat.Input input={input} onChange={onChange} />
|
|
30
28
|
* </Chat.Root>
|
|
31
29
|
* ```
|
|
32
30
|
*
|
|
@@ -44,117 +42,259 @@
|
|
|
44
42
|
* @module react/components/chat
|
|
45
43
|
*/
|
|
46
44
|
import * as React from "../../../../../react/react.js";
|
|
47
|
-
import type { BranchInfo, ChatDynamicToolPart, ChatMessage, ChatToolPart, InferenceMode } from "../../../../agent/react/index.js";
|
|
45
|
+
import type { BranchInfo, ChatDynamicToolPart, ChatFilePart, ChatMessage, ChatToolPart, InferenceMode, UseChatResult } from "../../../../agent/react/index.js";
|
|
48
46
|
import { type ChatTheme } from "../theme.js";
|
|
49
47
|
import type { ModelOption } from "../model-selector.js";
|
|
50
48
|
import type { Source } from "./components/sources.js";
|
|
51
49
|
import type { AttachmentInfo } from "./components/attachment-pill.js";
|
|
52
50
|
import type { FeedbackValue } from "./components/message-feedback.js";
|
|
53
51
|
import type { ChatTab } from "./components/tab-switcher.js";
|
|
54
|
-
import type { UploadedFile } from "./components/
|
|
52
|
+
import type { UploadedFile } from "./components/attachments-panel.js";
|
|
55
53
|
import type { QuickAction } from "./components/quick-actions.js";
|
|
56
54
|
import { ChatRoot } from "./composition/chat-root.js";
|
|
57
|
-
import {
|
|
55
|
+
import { ChatInput } from "./composition/chat-composer.js";
|
|
58
56
|
import { ChatMessageList } from "./composition/chat-message-list.js";
|
|
59
57
|
import { ChatEmpty } from "./composition/chat-empty.js";
|
|
60
58
|
import { ChatIf } from "./composition/chat-if.js";
|
|
61
59
|
import { ErrorBanner } from "./composition/error-banner.js";
|
|
62
60
|
import { Message } from "./composition/message.js";
|
|
61
|
+
import { ChatMessagesSkeleton } from "./components/chat-messages-skeleton.js";
|
|
63
62
|
export { FadeIn, Loader, Shimmer } from "./components/animations.js";
|
|
64
|
-
export { ReasoningCard } from "./components/reasoning.js";
|
|
63
|
+
export { Reasoning, ReasoningCard, type ReasoningContextValue, type ReasoningProps, type ReasoningTriggerProps, useReasoning, } from "./components/reasoning.js";
|
|
65
64
|
export { ConversationEmptyState, type ConversationEmptyStateProps, ConversationScrollButton, type ConversationScrollButtonProps, Suggestion, type SuggestionProps, Suggestions, type SuggestionsProps, } from "./components/empty-state.js";
|
|
66
|
-
export {
|
|
65
|
+
export { MessageActionBar, type MessageActionBarProps } from "./components/message-actions.js";
|
|
67
66
|
export { MessageEditForm, type MessageEditFormProps } from "./components/message-edit-form.js";
|
|
68
67
|
export { BranchPicker, type BranchPickerProps } from "./components/branch-picker.js";
|
|
69
68
|
export { DropZoneOverlay, type DropZoneOverlayProps } from "./components/drop-zone.js";
|
|
69
|
+
export { ChatMessagesSkeleton, type ChatMessagesSkeletonProps, } from "./components/chat-messages-skeleton.js";
|
|
70
70
|
export { SkillBadge, type SkillBadgeProps } from "./components/skill-badge.js";
|
|
71
|
-
export { ToolCallCard, ToolStatusBadge } from "./components/tool-ui.js";
|
|
71
|
+
export { ToolCall, ToolCallCard, type ToolCallContextValue, type ToolCallProps, type ToolCallTriggerProps, ToolStatusBadge, useToolCall, } from "./components/tool-ui.js";
|
|
72
72
|
export { InferenceBadge, type InferenceBadgeProps } from "./components/inference-badge.js";
|
|
73
|
-
export { type Source, Sources, type SourcesProps } from "./components/sources.js";
|
|
73
|
+
export { type Source, SourcePill, type SourcePillProps, Sources, type SourcesContextValue, type SourcesListProps, type SourcesProps, useSources, } from "./components/sources.js";
|
|
74
74
|
export { InlineCitation, type InlineCitationProps } from "./components/inline-citation.js";
|
|
75
75
|
export { type FeedbackValue, MessageFeedback, type MessageFeedbackProps, } from "./components/message-feedback.js";
|
|
76
|
-
export { type AttachmentInfo, AttachmentPill, type AttachmentPillProps, } from "./components/attachment-pill.js";
|
|
76
|
+
export { type AttachmentInfo, AttachmentPill, type AttachmentPillContextValue, type AttachmentPillProps, useAttachmentPill, } from "./components/attachment-pill.js";
|
|
77
77
|
export { type CodeBlockProps, RichCodeBlock } from "./components/code-block.js";
|
|
78
|
-
export { StepIndicator, type StepIndicatorProps } from "./components/step-indicator.js";
|
|
79
|
-
export { ChatSidebar, type ChatSidebarProps } from "./components/sidebar.js";
|
|
78
|
+
export { StepIndicator, type StepIndicatorContextValue, type StepIndicatorProps, useStepIndicator, } from "./components/step-indicator.js";
|
|
79
|
+
export { ChatSidebar, type ChatSidebarComponent, type ChatSidebarEmptyProps, type ChatSidebarGroupProps, type ChatSidebarIcons, type ChatSidebarItemProps, type ChatSidebarItemRenderOptions, type ChatSidebarListProps, type ChatSidebarNewButtonProps, type ChatSidebarProps, type ChatSidebarRootProps, } from "./components/sidebar.js";
|
|
80
80
|
export { type ChatTab, TabSwitcher, type TabSwitcherProps } from "./components/tab-switcher.js";
|
|
81
81
|
export { type QuickAction, QuickActions, type QuickActionsProps, } from "./components/quick-actions.js";
|
|
82
|
-
export { type
|
|
83
|
-
export { type
|
|
82
|
+
export { AttachmentsPanel, type AttachmentsPanelActionProps, type AttachmentsPanelContextValue, type AttachmentsPanelEmptyProps, type AttachmentsPanelHeaderProps, type AttachmentsPanelItemProps, type AttachmentsPanelListProps, type AttachmentsPanelLoadingProps, type AttachmentsPanelProps, type UploadedFile, useAttachmentsPanel, } from "./components/attachments-panel.js";
|
|
83
|
+
export { type ConversationPatch, useConversations, type UseConversationsOptions, type UseConversationsResult, } from "./hooks/use-conversations.js";
|
|
84
|
+
export { useConversation, type UseConversationOptions, type UseConversationResult, } from "./hooks/use-conversation.js";
|
|
85
|
+
export { ConversationsContextProvider, ConversationsProvider, type ConversationsProviderProps, useConversationsContext, useConversationsContextOptional, } from "./contexts/conversations-context.js";
|
|
86
|
+
import type { Conversation } from "./persistence/conversation-store.js";
|
|
87
|
+
export { type Conversation, type ConversationStore, type ConversationSummary, } from "./persistence/conversation-store.js";
|
|
88
|
+
export { localConversationStore, type StorageLike, } from "./persistence/local-conversation-store.js";
|
|
89
|
+
export { memoryConversationStore } from "./persistence/memory-conversation-store.js";
|
|
90
|
+
export { useUpload, type UseUploadOptions, type UseUploadResult } from "./hooks/use-upload.js";
|
|
91
|
+
export { useUploadsRegistry, type UseUploadsRegistryOptions, type UseUploadsRegistryResult, } from "./hooks/use-uploads-registry.js";
|
|
92
|
+
export { useStickToBottom, type UseStickToBottomOptions, type UseStickToBottomResult, } from "./hooks/use-stick-to-bottom.js";
|
|
84
93
|
export { extractSourcesFromParts, getTextContent, groupPartsInOrder, isReasoningPart, isSkillToolPart, isToolPart, type PartGroup, } from "./utils/message-parts.js";
|
|
85
94
|
export { downloadMarkdown, exportAsMarkdown } from "./utils/export.js";
|
|
86
|
-
export { AgentAvatar, type AgentAvatarProps,
|
|
87
|
-
export { ChatContextProvider, type ChatContextValue, ComposerContextProvider, type ComposerContextValue, MessageContextProvider, type MessageContextValue,
|
|
95
|
+
export { AgentAvatar, type AgentAvatarProps, ChatEmpty, type ChatEmptyProps, ChatEmptyState, type ChatEmptyStateAvatarProps, type ChatEmptyStateHeadingProps, type ChatEmptyStateRootProps, type ChatEmptyStateSuggestionProps, type ChatEmptyStateSuggestionsProps, ChatIf, type ChatIfProps, ChatInput, type ChatInputProps, ChatMessageList, type ChatMessageListProps, ChatRoot, type ChatRootProps, ErrorBanner, type ErrorBannerProps, Message, type MessageProps, type MessageRootProps, ModelAvatar, type ModelAvatarProps, } from "./composition/api.js";
|
|
96
|
+
export { ChatContextProvider, type ChatContextValue, ComposerContextProvider, type ComposerContextValue, MessageContextProvider, type MessageContextValue, useChatContext, useChatContextOptional, useComposerContext, useComposerContextOptional, useMessageContext, useMessageContextOptional, } from "./contexts/index.js";
|
|
97
|
+
/**
|
|
98
|
+
* Agent identity + agent-driven content for `<Chat>`. Collapses the old
|
|
99
|
+
* `agent` / `models` / suggestion props into one object. In app mode
|
|
100
|
+
* (`agentId`) this is derived from agent metadata automatically; pass it
|
|
101
|
+
* yourself to drive a controlled chat.
|
|
102
|
+
*/
|
|
103
|
+
export interface ChatAgentInfo {
|
|
104
|
+
/** Assistant display name for message headers + the idle hero. */
|
|
105
|
+
name?: string;
|
|
106
|
+
/** Assistant avatar. */
|
|
107
|
+
avatarUrl?: string;
|
|
108
|
+
/** Blurb under the name in the idle hero. */
|
|
109
|
+
description?: string;
|
|
110
|
+
/** Prompt suggestions shown on an empty thread. */
|
|
111
|
+
suggestions?: string[];
|
|
112
|
+
/** Model options for the composer's model selector. */
|
|
113
|
+
models?: ModelOption[];
|
|
114
|
+
}
|
|
88
115
|
/** Props accepted by chat. */
|
|
89
116
|
export interface ChatProps {
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
117
|
+
/** Agent id — fetches avatar/name/suggestions and scopes the request. */
|
|
118
|
+
agentId?: string;
|
|
119
|
+
/** AG-UI endpoint for the self-driven `useChat`. @default "/api/ag-ui" */
|
|
120
|
+
api?: string;
|
|
121
|
+
/** Seed messages for the self-driven thread. */
|
|
122
|
+
initialMessages?: ChatMessage[];
|
|
123
|
+
/** Error callback for the self-driven `useChat`. */
|
|
124
|
+
onError?: (error: Error) => void;
|
|
125
|
+
/**
|
|
126
|
+
* Persistence sink for the live thread (app mode). Fires with the whole
|
|
127
|
+
* updated `conversation` (`{ id, messages, title, updatedAt, … }`) whenever
|
|
128
|
+
* the messages change — point it at your store's `save`.
|
|
129
|
+
*
|
|
130
|
+
* Resolved by presence: an explicit `onUpdate` wins; otherwise a surrounding
|
|
131
|
+
* `ConversationsProvider`'s `save` is used; with neither, the thread is
|
|
132
|
+
* ephemeral. One optional prop, three behaviours — `<Chat>` is sugar over the
|
|
133
|
+
* explicit primitive.
|
|
134
|
+
*/
|
|
135
|
+
onUpdate?: (conversation: Conversation) => void;
|
|
136
|
+
/**
|
|
137
|
+
* Drive `<Chat>` from a `useChat()` session you own: `<Chat chat={useChat()}>`.
|
|
138
|
+
* Supersedes spreading the individual `messages`/`input`/`onChange`/… props —
|
|
139
|
+
* pass the whole result object and everything wires up (input, submit,
|
|
140
|
+
* attachments, model, branches).
|
|
141
|
+
*/
|
|
142
|
+
chat?: UseChatResult;
|
|
143
|
+
/** @deprecated Pass `chat={useChat()}` instead. */
|
|
144
|
+
messages?: ChatMessage[];
|
|
145
|
+
/** @deprecated Pass `chat={useChat()}` instead. */
|
|
146
|
+
input?: string;
|
|
147
|
+
/** @deprecated Pass `chat={useChat()}` instead. */
|
|
148
|
+
onChange?: (e: React.ChangeEvent<HTMLInputElement | HTMLTextAreaElement>) => void;
|
|
149
|
+
/** @deprecated Pass `chat={useChat()}` instead. */
|
|
93
150
|
onSubmit?: (e?: React.FormEvent) => void | Promise<void>;
|
|
151
|
+
/**
|
|
152
|
+
* Send a message (text + optional file parts). `<Chat>` uses this to fold
|
|
153
|
+
* self-managed attachments into the submitted turn.
|
|
154
|
+
* @deprecated Pass `chat={useChat()}` instead.
|
|
155
|
+
*/
|
|
156
|
+
sendMessage?: (message: {
|
|
157
|
+
text: string;
|
|
158
|
+
files?: ChatFilePart[];
|
|
159
|
+
}) => void | Promise<void>;
|
|
160
|
+
/** @deprecated Pass `chat={useChat()}` instead. */
|
|
94
161
|
stop?: () => void;
|
|
162
|
+
/** @deprecated Pass `chat={useChat()}` instead. */
|
|
95
163
|
reload?: () => void;
|
|
164
|
+
/** @deprecated Pass `chat={useChat()}` instead. */
|
|
96
165
|
setInput?: (value: string) => void;
|
|
166
|
+
/** @deprecated Pass `chat={useChat()}` instead. */
|
|
97
167
|
isLoading?: boolean;
|
|
168
|
+
/** @deprecated Pass `chat={useChat()}` instead. */
|
|
98
169
|
error?: Error | null;
|
|
99
170
|
placeholder?: string;
|
|
100
171
|
maxHeight?: string;
|
|
101
172
|
className?: string;
|
|
102
173
|
theme?: Partial<ChatTheme>;
|
|
103
174
|
renderMessage?: (message: ChatMessage) => React.ReactNode;
|
|
175
|
+
/**
|
|
176
|
+
* @deprecated Tool cards render with the built-in `ToolCall` UI. Compose
|
|
177
|
+
* `<Chat.Root>` + a custom `Message` if you need bespoke tool rendering.
|
|
178
|
+
*/
|
|
104
179
|
renderTool?: (tool: ChatToolPart | ChatDynamicToolPart) => React.ReactNode;
|
|
180
|
+
/** Prompt suggestions for an empty thread. Also fillable via `agent.suggestions`. */
|
|
105
181
|
suggestions?: string[];
|
|
106
182
|
onSuggestionClick?: (suggestion: string) => void;
|
|
183
|
+
/**
|
|
184
|
+
* Opt-in idle hero for an empty thread (icon + title + optional blurb, plus
|
|
185
|
+
* `suggestions`). When omitted, an empty thread renders as a blank canvas +
|
|
186
|
+
* composer — no "What can I help with?" placeholder. Compose `Chat.Empty`
|
|
187
|
+
* directly for full control.
|
|
188
|
+
*/
|
|
107
189
|
emptyState?: {
|
|
108
190
|
icon?: React.ReactNode;
|
|
109
191
|
title?: string;
|
|
110
192
|
description?: string;
|
|
111
193
|
};
|
|
194
|
+
/**
|
|
195
|
+
* The thread is still loading its initial history → render the skeleton
|
|
196
|
+
* instead of the idle empty state. In app mode (`agentId`) this is derived
|
|
197
|
+
* automatically while the agent metadata resolves, so the generic
|
|
198
|
+
* "What can I help with?" never flashes before the agent loads. Set it
|
|
199
|
+
* yourself in controlled mode.
|
|
200
|
+
*/
|
|
201
|
+
initializing?: boolean;
|
|
202
|
+
/** Override the loading skeleton (defaults to `<Chat.Skeleton />`). */
|
|
203
|
+
skeleton?: React.ReactNode;
|
|
204
|
+
/**
|
|
205
|
+
* Agent identity + agent-driven content (name / avatar / description /
|
|
206
|
+
* suggestions / models). Backs assistant message headers and the idle hero;
|
|
207
|
+
* in app mode (`agentId`) it's filled from agent metadata automatically.
|
|
208
|
+
*/
|
|
209
|
+
agent?: ChatAgentInfo;
|
|
112
210
|
showScrollButton?: boolean;
|
|
113
211
|
showMessageActions?: boolean;
|
|
212
|
+
/** @deprecated Provide model options via `agent={{ models }}`. */
|
|
114
213
|
models?: ModelOption[];
|
|
214
|
+
/** @deprecated Part of the session — pass `chat={useChat()}`. */
|
|
115
215
|
model?: string;
|
|
116
|
-
/**
|
|
216
|
+
/**
|
|
217
|
+
* The actual resolved model used for avatar display.
|
|
218
|
+
* @deprecated Part of the session — pass `chat={useChat()}`.
|
|
219
|
+
*/
|
|
117
220
|
activeModel?: string;
|
|
221
|
+
/** @deprecated Part of the session — pass `chat={useChat()}`. */
|
|
118
222
|
onModelChange?: (model: string) => void;
|
|
223
|
+
/** @deprecated Part of the session — pass `chat={useChat()}`. */
|
|
119
224
|
inferenceMode?: InferenceMode;
|
|
225
|
+
/** @deprecated Sources render automatically when a message carries them. */
|
|
120
226
|
showSources?: boolean;
|
|
121
227
|
onSourceClick?: (source: Source, index: number) => void;
|
|
228
|
+
/**
|
|
229
|
+
* The composer's `+` menu and drag-to-attach are on by default — `<Chat>`
|
|
230
|
+
* keeps the pending files itself unless you wire the attachment props below.
|
|
231
|
+
* Set `false` to hide the attach control entirely.
|
|
232
|
+
*/
|
|
233
|
+
enableAttachments?: boolean;
|
|
234
|
+
/**
|
|
235
|
+
* Endpoint that pending files POST to (multipart `file`) → `{ url }`. When
|
|
236
|
+
* omitted, attachments are inlined as base64 `data:` URLs (no backend
|
|
237
|
+
* required); set this to store files durably (e.g. `"/api/uploads"`).
|
|
238
|
+
*/
|
|
239
|
+
uploadApi?: string;
|
|
122
240
|
onAttach?: (files: FileList) => void;
|
|
123
241
|
onSelectAttachment?: () => void;
|
|
124
242
|
onDrop?: (files: FileList) => void;
|
|
125
243
|
attachAccept?: string;
|
|
126
244
|
attachments?: AttachmentInfo[];
|
|
127
245
|
onRemoveAttachment?: (id: string) => void;
|
|
246
|
+
/** @deprecated Export is available from the composer by default. */
|
|
128
247
|
showExport?: boolean;
|
|
129
248
|
onFeedback?: (messageId: string, feedback: FeedbackValue) => void;
|
|
249
|
+
/** @deprecated Part of the session — pass `chat={useChat()}`. */
|
|
130
250
|
editMessage?: (messageId: string, newText: string) => Promise<void>;
|
|
251
|
+
/** @deprecated Part of the session — pass `chat={useChat()}`. */
|
|
131
252
|
getBranches?: (messageId: string) => BranchInfo;
|
|
253
|
+
/** @deprecated Part of the session — pass `chat={useChat()}`. */
|
|
132
254
|
switchBranch?: (messageId: string, branchIndex: number) => void;
|
|
255
|
+
/** @deprecated Reasoning steps render automatically when present. */
|
|
133
256
|
showSteps?: boolean;
|
|
134
257
|
showTabs?: boolean;
|
|
135
258
|
activeTab?: ChatTab;
|
|
136
259
|
onTabChange?: (tab: ChatTab) => void;
|
|
137
260
|
uploads?: UploadedFile[];
|
|
138
261
|
onRemoveUpload?: (id: string) => void;
|
|
262
|
+
/** @deprecated Removed — use prompt `suggestions` instead. */
|
|
139
263
|
quickActions?: QuickAction[];
|
|
264
|
+
/** @deprecated Removed — use prompt `suggestions` instead. */
|
|
140
265
|
onQuickAction?: (action: QuickAction) => void;
|
|
141
266
|
enableVoice?: boolean;
|
|
142
267
|
onVoice?: () => void;
|
|
268
|
+
/** Leading composer-toolbar slot (e.g. an `<AgentPicker>`). */
|
|
269
|
+
toolbarStart?: React.ReactNode;
|
|
143
270
|
/** @internal Hide the built-in TabSwitcher when rendered externally */
|
|
144
271
|
hideTabSwitcher?: boolean;
|
|
145
272
|
children?: React.ReactNode;
|
|
146
273
|
}
|
|
147
|
-
/**
|
|
148
|
-
|
|
149
|
-
|
|
274
|
+
/**
|
|
275
|
+
* Chat — batteries-included chat surface.
|
|
276
|
+
*
|
|
277
|
+
* - **App mode (uncontrolled):** omit `chat`/`messages` and pass `agentId` +
|
|
278
|
+
* `api`; `<Chat>` wires `useChat` + `useAgentMetadata` internally. Inside a
|
|
279
|
+
* `ConversationsProvider` it also binds to the active conversation.
|
|
280
|
+
* - **Controlled mode:** pass `chat={useChat()}` (preferred) or the legacy
|
|
281
|
+
* flat `messages` + `input` props to drive it yourself.
|
|
282
|
+
*/
|
|
283
|
+
declare const ChatBase: React.ForwardRefExoticComponent<ChatProps & React.RefAttributes<HTMLDivElement>>;
|
|
284
|
+
export type ChatComponentsType = typeof ChatBase & {
|
|
150
285
|
Root: typeof ChatRoot;
|
|
151
286
|
MessageList: typeof ChatMessageList;
|
|
152
|
-
|
|
287
|
+
Input: typeof ChatInput;
|
|
288
|
+
/** @deprecated Use `Chat.Input`. */
|
|
289
|
+
Composer: typeof ChatInput;
|
|
153
290
|
Empty: typeof ChatEmpty;
|
|
291
|
+
Skeleton: typeof ChatMessagesSkeleton;
|
|
154
292
|
If: typeof ChatIf;
|
|
155
293
|
Message: typeof Message;
|
|
156
294
|
ErrorBanner: typeof ErrorBanner;
|
|
157
295
|
};
|
|
158
296
|
/** Render chat components. */
|
|
297
|
+
export declare const Chat: ChatComponentsType;
|
|
298
|
+
/** @deprecated Back-compat alias — `Chat` is now the compound itself. */
|
|
159
299
|
export declare const ChatComponents: ChatComponentsType;
|
|
160
300
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/src/react/components/chat/chat/index.tsx"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/src/react/components/chat/chat/index.tsx"],"names":[],"mappings":"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"}
|