@datalayer/agent-runtimes 0.0.2
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/LICENSE +32 -0
- package/README.md +56 -0
- package/lib/App.css +47 -0
- package/lib/App.d.ts +3 -0
- package/lib/App.js +18 -0
- package/lib/components/chat/components/AgentDetails.d.ts +19 -0
- package/lib/components/chat/components/AgentDetails.js +170 -0
- package/lib/components/chat/components/Chat.d.ts +105 -0
- package/lib/components/chat/components/Chat.js +275 -0
- package/lib/components/chat/components/ChatFloating.d.ts +146 -0
- package/lib/components/chat/components/ChatFloating.js +381 -0
- package/lib/components/chat/components/ChatInline.d.ts +42 -0
- package/lib/components/chat/components/ChatInline.js +327 -0
- package/lib/components/chat/components/ChatPopupStandalone.d.ts +110 -0
- package/lib/components/chat/components/ChatPopupStandalone.js +422 -0
- package/lib/components/chat/components/ChatSidebar.d.ts +78 -0
- package/lib/components/chat/components/ChatSidebar.js +224 -0
- package/lib/components/chat/components/ChatStandalone.d.ts +105 -0
- package/lib/components/chat/components/ChatStandalone.js +320 -0
- package/lib/components/chat/components/base/ChatBase.d.ts +285 -0
- package/lib/components/chat/components/base/ChatBase.js +1192 -0
- package/lib/components/chat/components/display/ToolCallDisplay.d.ts +26 -0
- package/lib/components/chat/components/display/ToolCallDisplay.js +225 -0
- package/lib/components/chat/components/display/index.d.ts +6 -0
- package/lib/components/chat/components/display/index.js +10 -0
- package/lib/components/chat/components/elements/ChatHeader.d.ts +43 -0
- package/lib/components/chat/components/elements/ChatHeader.js +67 -0
- package/lib/components/chat/components/elements/ChatInputPrompt.d.ts +26 -0
- package/lib/components/chat/components/elements/ChatInputPrompt.js +145 -0
- package/lib/components/chat/components/elements/ChatMessages.d.ts +36 -0
- package/lib/components/chat/components/elements/ChatMessages.js +195 -0
- package/lib/components/chat/components/elements/FloatingBrandButton.d.ts +34 -0
- package/lib/components/chat/components/elements/FloatingBrandButton.js +88 -0
- package/lib/components/chat/components/elements/MessagePart.d.ts +50 -0
- package/lib/components/chat/components/elements/MessagePart.js +48 -0
- package/lib/components/chat/components/elements/PoweredByTag.d.ts +26 -0
- package/lib/components/chat/components/elements/PoweredByTag.js +33 -0
- package/lib/components/chat/components/elements/ToolApprovalDialog.d.ts +42 -0
- package/lib/components/chat/components/elements/ToolApprovalDialog.js +96 -0
- package/lib/components/chat/components/index.d.ts +21 -0
- package/lib/components/chat/components/index.js +34 -0
- package/lib/components/chat/components/parts/DynamicToolPart.d.ts +20 -0
- package/lib/components/chat/components/parts/DynamicToolPart.js +13 -0
- package/lib/components/chat/components/parts/ReasoningPart.d.ts +17 -0
- package/lib/components/chat/components/parts/ReasoningPart.js +69 -0
- package/lib/components/chat/components/parts/TextPart.d.ts +28 -0
- package/lib/components/chat/components/parts/TextPart.js +103 -0
- package/lib/components/chat/components/parts/ToolPart.d.ts +17 -0
- package/lib/components/chat/components/parts/ToolPart.js +163 -0
- package/lib/components/chat/components/parts/index.d.ts +9 -0
- package/lib/components/chat/components/parts/index.js +13 -0
- package/lib/components/chat/extensions/A2UIExtension.d.ts +87 -0
- package/lib/components/chat/extensions/A2UIExtension.js +312 -0
- package/lib/components/chat/extensions/ExtensionRegistry.d.ts +66 -0
- package/lib/components/chat/extensions/ExtensionRegistry.js +128 -0
- package/lib/components/chat/extensions/MCPUIExtension.d.ts +77 -0
- package/lib/components/chat/extensions/MCPUIExtension.js +212 -0
- package/lib/components/chat/extensions/index.d.ts +9 -0
- package/lib/components/chat/extensions/index.js +12 -0
- package/lib/components/chat/handler.d.ts +20 -0
- package/lib/components/chat/handler.js +56 -0
- package/lib/components/chat/index.d.ts +61 -0
- package/lib/components/chat/index.js +76 -0
- package/lib/components/chat/inference/BaseInferenceProvider.d.ts +57 -0
- package/lib/components/chat/inference/BaseInferenceProvider.js +69 -0
- package/lib/components/chat/inference/DatalayerInferenceProvider.d.ts +83 -0
- package/lib/components/chat/inference/DatalayerInferenceProvider.js +305 -0
- package/lib/components/chat/inference/SelfHostedInferenceProvider.d.ts +54 -0
- package/lib/components/chat/inference/SelfHostedInferenceProvider.js +246 -0
- package/lib/components/chat/inference/index.d.ts +9 -0
- package/lib/components/chat/inference/index.js +12 -0
- package/lib/components/chat/middleware/MiddlewarePipeline.d.ts +118 -0
- package/lib/components/chat/middleware/MiddlewarePipeline.js +255 -0
- package/lib/components/chat/middleware/index.d.ts +7 -0
- package/lib/components/chat/middleware/index.js +10 -0
- package/lib/components/chat/protocols/A2AAdapter.d.ts +79 -0
- package/lib/components/chat/protocols/A2AAdapter.js +388 -0
- package/lib/components/chat/protocols/ACPAdapter.d.ts +161 -0
- package/lib/components/chat/protocols/ACPAdapter.js +504 -0
- package/lib/components/chat/protocols/AGUIAdapter.d.ts +82 -0
- package/lib/components/chat/protocols/AGUIAdapter.js +518 -0
- package/lib/components/chat/protocols/BaseProtocolAdapter.d.ts +75 -0
- package/lib/components/chat/protocols/BaseProtocolAdapter.js +119 -0
- package/lib/components/chat/protocols/VercelAIAdapter.d.ts +77 -0
- package/lib/components/chat/protocols/VercelAIAdapter.js +252 -0
- package/lib/components/chat/protocols/index.d.ts +11 -0
- package/lib/components/chat/protocols/index.js +14 -0
- package/lib/components/chat/store/chatStore.d.ts +158 -0
- package/lib/components/chat/store/chatStore.js +313 -0
- package/lib/components/chat/store/index.d.ts +6 -0
- package/lib/components/chat/store/index.js +10 -0
- package/lib/components/chat/tools/ToolExecutor.d.ts +49 -0
- package/lib/components/chat/tools/ToolExecutor.js +151 -0
- package/lib/components/chat/tools/index.d.ts +8 -0
- package/lib/components/chat/tools/index.js +11 -0
- package/lib/components/chat/types/extension.d.ts +181 -0
- package/lib/components/chat/types/extension.js +46 -0
- package/lib/components/chat/types/index.d.ts +11 -0
- package/lib/components/chat/types/index.js +16 -0
- package/lib/components/chat/types/inference.d.ts +117 -0
- package/lib/components/chat/types/inference.js +5 -0
- package/lib/components/chat/types/message.d.ts +117 -0
- package/lib/components/chat/types/message.js +50 -0
- package/lib/components/chat/types/middleware.d.ts +153 -0
- package/lib/components/chat/types/middleware.js +32 -0
- package/lib/components/chat/types/protocol.d.ts +209 -0
- package/lib/components/chat/types/protocol.js +5 -0
- package/lib/components/chat/types/tool.d.ts +140 -0
- package/lib/components/chat/types/tool.js +23 -0
- package/lib/components/index.d.ts +1 -0
- package/lib/components/index.js +6 -0
- package/lib/components/sparklines/Sparklines.d.ts +16 -0
- package/lib/components/sparklines/Sparklines.js +65 -0
- package/lib/components/sparklines/SparklinesLine.d.ts +8 -0
- package/lib/components/sparklines/SparklinesLine.js +37 -0
- package/lib/components/sparklines/dataProcessing.d.ts +25 -0
- package/lib/components/sparklines/dataProcessing.js +35 -0
- package/lib/components/sparklines/index.d.ts +4 -0
- package/lib/components/sparklines/index.js +7 -0
- package/lib/components/sparklines/types.d.ts +36 -0
- package/lib/components/sparklines/types.js +5 -0
- package/lib/components/ui/accordion.d.ts +7 -0
- package/lib/components/ui/accordion.js +22 -0
- package/lib/components/ui/alert-dialog.d.ts +14 -0
- package/lib/components/ui/alert-dialog.js +43 -0
- package/lib/components/ui/alert.d.ts +9 -0
- package/lib/components/ui/alert.js +24 -0
- package/lib/components/ui/aspect-ratio.d.ts +3 -0
- package/lib/components/ui/aspect-ratio.js +11 -0
- package/lib/components/ui/avatar.d.ts +6 -0
- package/lib/components/ui/avatar.js +18 -0
- package/lib/components/ui/badge.d.ts +9 -0
- package/lib/components/ui/badge.js +22 -0
- package/lib/components/ui/breadcrumb.d.ts +11 -0
- package/lib/components/ui/breadcrumb.js +27 -0
- package/lib/components/ui/button-group.d.ts +11 -0
- package/lib/components/ui/button-group.js +31 -0
- package/lib/components/ui/button.d.ts +13 -0
- package/lib/components/ui/button.js +39 -0
- package/lib/components/ui/calendar.d.ts +8 -0
- package/lib/components/ui/calendar.js +80 -0
- package/lib/components/ui/card.d.ts +9 -0
- package/lib/components/ui/card.js +24 -0
- package/lib/components/ui/carousel.d.ts +19 -0
- package/lib/components/ui/carousel.js +95 -0
- package/lib/components/ui/chart.d.ts +53 -0
- package/lib/components/ui/chart.js +136 -0
- package/lib/components/ui/checkbox.d.ts +4 -0
- package/lib/components/ui/checkbox.js +13 -0
- package/lib/components/ui/collapsible.d.ts +5 -0
- package/lib/components/ui/collapsible.js +17 -0
- package/lib/components/ui/command.d.ts +18 -0
- package/lib/components/ui/command.js +38 -0
- package/lib/components/ui/context-menu.d.ts +25 -0
- package/lib/components/ui/context-menu.js +55 -0
- package/lib/components/ui/dialog.d.ts +15 -0
- package/lib/components/ui/dialog.js +40 -0
- package/lib/components/ui/drawer.d.ts +13 -0
- package/lib/components/ui/drawer.js +39 -0
- package/lib/components/ui/dropdown-menu.d.ts +25 -0
- package/lib/components/ui/dropdown-menu.js +55 -0
- package/lib/components/ui/empty.d.ts +11 -0
- package/lib/components/ui/empty.js +37 -0
- package/lib/components/ui/field.d.ts +24 -0
- package/lib/components/ui/field.js +80 -0
- package/lib/components/ui/form.d.ts +24 -0
- package/lib/components/ui/form.js +63 -0
- package/lib/components/ui/hover-card.d.ts +6 -0
- package/lib/components/ui/hover-card.js +18 -0
- package/lib/components/ui/input-group.d.ts +19 -0
- package/lib/components/ui/input-group.js +69 -0
- package/lib/components/ui/input-otp.d.ts +11 -0
- package/lib/components/ui/input-otp.js +25 -0
- package/lib/components/ui/input.d.ts +3 -0
- package/lib/components/ui/input.js +6 -0
- package/lib/components/ui/item.d.ts +23 -0
- package/lib/components/ui/item.js +66 -0
- package/lib/components/ui/kbd.d.ts +3 -0
- package/lib/components/ui/kbd.js +13 -0
- package/lib/components/ui/label.d.ts +4 -0
- package/lib/components/ui/label.js +12 -0
- package/lib/components/ui/menubar.d.ts +26 -0
- package/lib/components/ui/menubar.js +58 -0
- package/lib/components/ui/navigation-menu.d.ts +14 -0
- package/lib/components/ui/navigation-menu.js +31 -0
- package/lib/components/ui/pagination.d.ts +13 -0
- package/lib/components/ui/pagination.js +29 -0
- package/lib/components/ui/popover.d.ts +7 -0
- package/lib/components/ui/popover.js +21 -0
- package/lib/components/ui/progress.d.ts +4 -0
- package/lib/components/ui/progress.js +12 -0
- package/lib/components/ui/radio-group.d.ts +5 -0
- package/lib/components/ui/radio-group.js +16 -0
- package/lib/components/ui/resizable.d.ts +8 -0
- package/lib/components/ui/resizable.js +19 -0
- package/lib/components/ui/scroll-area.d.ts +5 -0
- package/lib/components/ui/scroll-area.js +17 -0
- package/lib/components/ui/select.d.ts +15 -0
- package/lib/components/ui/select.js +42 -0
- package/lib/components/ui/separator.d.ts +4 -0
- package/lib/components/ui/separator.js +12 -0
- package/lib/components/ui/sheet.d.ts +13 -0
- package/lib/components/ui/sheet.js +44 -0
- package/lib/components/ui/sidebar.d.ts +69 -0
- package/lib/components/ui/sidebar.js +216 -0
- package/lib/components/ui/skeleton.d.ts +2 -0
- package/lib/components/ui/skeleton.js +10 -0
- package/lib/components/ui/slider.d.ts +4 -0
- package/lib/components/ui/slider.js +18 -0
- package/lib/components/ui/sonner.d.ts +3 -0
- package/lib/components/ui/sonner.js +25 -0
- package/lib/components/ui/spinner.d.ts +2 -0
- package/lib/components/ui/spinner.js +11 -0
- package/lib/components/ui/switch.d.ts +4 -0
- package/lib/components/ui/switch.js +12 -0
- package/lib/components/ui/table.d.ts +10 -0
- package/lib/components/ui/table.js +32 -0
- package/lib/components/ui/tabs.d.ts +7 -0
- package/lib/components/ui/tabs.js +21 -0
- package/lib/components/ui/textarea.d.ts +3 -0
- package/lib/components/ui/textarea.js +6 -0
- package/lib/components/ui/toast.d.ts +15 -0
- package/lib/components/ui/toast.js +38 -0
- package/lib/components/ui/toaster.d.ts +1 -0
- package/lib/components/ui/toaster.js +14 -0
- package/lib/components/ui/toggle-group.d.ts +9 -0
- package/lib/components/ui/toggle-group.js +26 -0
- package/lib/components/ui/toggle.d.ts +9 -0
- package/lib/components/ui/toggle.js +30 -0
- package/lib/components/ui/tooltip.d.ts +7 -0
- package/lib/components/ui/tooltip.js +21 -0
- package/lib/components/vercel-ai-elements/artifact.d.ts +23 -0
- package/lib/components/vercel-ai-elements/artifact.js +24 -0
- package/lib/components/vercel-ai-elements/code-block.d.ts +17 -0
- package/lib/components/vercel-ai-elements/code-block.js +94 -0
- package/lib/components/vercel-ai-elements/conversation.d.ts +15 -0
- package/lib/components/vercel-ai-elements/conversation.js +21 -0
- package/lib/components/vercel-ai-elements/loader.d.ts +5 -0
- package/lib/components/vercel-ai-elements/loader.js +8 -0
- package/lib/components/vercel-ai-elements/message.d.ts +46 -0
- package/lib/components/vercel-ai-elements/message.js +109 -0
- package/lib/components/vercel-ai-elements/model-selector.d.ts +35 -0
- package/lib/components/vercel-ai-elements/model-selector.js +22 -0
- package/lib/components/vercel-ai-elements/prompt-input.d.ts +195 -0
- package/lib/components/vercel-ai-elements/prompt-input.js +589 -0
- package/lib/components/vercel-ai-elements/reasoning.d.ts +26 -0
- package/lib/components/vercel-ai-elements/reasoning.js +80 -0
- package/lib/components/vercel-ai-elements/shimmer.d.ts +9 -0
- package/lib/components/vercel-ai-elements/shimmer.js +22 -0
- package/lib/components/vercel-ai-elements/sources.d.ts +12 -0
- package/lib/components/vercel-ai-elements/sources.js +13 -0
- package/lib/components/vercel-ai-elements/suggestion.d.ts +10 -0
- package/lib/components/vercel-ai-elements/suggestion.js +16 -0
- package/lib/components/vercel-ai-elements/tool.d.ts +23 -0
- package/lib/components/vercel-ai-elements/tool.js +52 -0
- package/lib/examples/A2UiRestaurantExample.d.ts +25 -0
- package/lib/examples/A2UiRestaurantExample.js +305 -0
- package/lib/examples/AgUiAgenticExample.d.ts +25 -0
- package/lib/examples/AgUiAgenticExample.js +63 -0
- package/lib/examples/AgUiBackendToolRenderingExample.d.ts +30 -0
- package/lib/examples/AgUiBackendToolRenderingExample.js +103 -0
- package/lib/examples/AgUiHaikuGenUIExample.d.ts +44 -0
- package/lib/examples/AgUiHaikuGenUIExample.js +151 -0
- package/lib/examples/AgUiHumanInTheLoopExample.d.ts +26 -0
- package/lib/examples/AgUiHumanInTheLoopExample.js +220 -0
- package/lib/examples/AgUiSharedStateExample.d.ts +25 -0
- package/lib/examples/AgUiSharedStateExample.js +181 -0
- package/lib/examples/AgUiToolsBasedGenUIExample.d.ts +25 -0
- package/lib/examples/AgUiToolsBasedGenUIExample.js +257 -0
- package/lib/examples/AgentRuntimeCustomExample.d.ts +9 -0
- package/lib/examples/AgentRuntimeCustomExample.js +68 -0
- package/lib/examples/AgentRuntimeLexical2Example.d.ts +42 -0
- package/lib/examples/AgentRuntimeLexical2Example.js +236 -0
- package/lib/examples/AgentRuntimeLexicalExample.d.ts +36 -0
- package/lib/examples/AgentRuntimeLexicalExample.js +260 -0
- package/lib/examples/AgentRuntimeLexicalSidebarExample.d.ts +41 -0
- package/lib/examples/AgentRuntimeLexicalSidebarExample.js +166 -0
- package/lib/examples/AgentRuntimeNotebookExample.d.ts +9 -0
- package/lib/examples/AgentRuntimeNotebookExample.js +148 -0
- package/lib/examples/AgentRuntimeNotebookSidebarExample.d.ts +13 -0
- package/lib/examples/AgentRuntimeNotebookSidebarExample.js +121 -0
- package/lib/examples/AgentRuntimeStandaloneExample.d.ts +21 -0
- package/lib/examples/AgentRuntimeStandaloneExample.js +158 -0
- package/lib/examples/AgentSpaceFormExample.d.ts +22 -0
- package/lib/examples/AgentSpaceFormExample.js +296 -0
- package/lib/examples/AgentSpaceHomeExample.d.ts +8 -0
- package/lib/examples/AgentSpaceHomeExample.js +171 -0
- package/lib/examples/CopilotKitLexicalExample.d.ts +38 -0
- package/lib/examples/CopilotKitLexicalExample.js +161 -0
- package/lib/examples/CopilotKitNotebookExample.d.ts +11 -0
- package/lib/examples/CopilotKitNotebookExample.js +70 -0
- package/lib/examples/DatalayerNotebookExample.d.ts +16 -0
- package/lib/examples/DatalayerNotebookExample.js +99 -0
- package/lib/examples/JupyterCellExample.d.ts +6 -0
- package/lib/examples/JupyterCellExample.js +19 -0
- package/lib/examples/JupyterNotebookExample.d.ts +6 -0
- package/lib/examples/JupyterNotebookExample.js +21 -0
- package/lib/examples/ag-ui/haiku/HaikuDisplay.d.ts +18 -0
- package/lib/examples/ag-ui/haiku/HaikuDisplay.js +110 -0
- package/lib/examples/ag-ui/haiku/InlineHaikuCard.d.ts +39 -0
- package/lib/examples/ag-ui/haiku/InlineHaikuCard.js +117 -0
- package/lib/examples/ag-ui/haiku/index.d.ts +11 -0
- package/lib/examples/ag-ui/haiku/index.js +15 -0
- package/lib/examples/ag-ui/index.d.ts +10 -0
- package/lib/examples/ag-ui/index.js +16 -0
- package/lib/examples/ag-ui/weather/InlineWeatherCard.d.ts +43 -0
- package/lib/examples/ag-ui/weather/InlineWeatherCard.js +180 -0
- package/lib/examples/ag-ui/weather/index.d.ts +9 -0
- package/lib/examples/ag-ui/weather/index.js +13 -0
- package/lib/examples/components/AgentConfiguration.d.ts +50 -0
- package/lib/examples/components/AgentConfiguration.js +115 -0
- package/lib/examples/components/AgentsDataTable.d.ts +13 -0
- package/lib/examples/components/AgentsDataTable.js +74 -0
- package/lib/examples/components/FooterMetrics.d.ts +12 -0
- package/lib/examples/components/FooterMetrics.js +17 -0
- package/lib/examples/components/Header.d.ts +27 -0
- package/lib/examples/components/Header.js +294 -0
- package/lib/examples/components/HeaderControls.d.ts +11 -0
- package/lib/examples/components/HeaderControls.js +24 -0
- package/lib/examples/components/LexicalEditor.d.ts +27 -0
- package/lib/examples/components/LexicalEditor.js +118 -0
- package/lib/examples/components/MainContent.d.ts +19 -0
- package/lib/examples/components/MainContent.js +68 -0
- package/lib/examples/components/MockFileBrowser.d.ts +12 -0
- package/lib/examples/components/MockFileBrowser.js +131 -0
- package/lib/examples/components/Rating.d.ts +14 -0
- package/lib/examples/components/Rating.js +12 -0
- package/lib/examples/components/SessionTabs.d.ts +21 -0
- package/lib/examples/components/SessionTabs.js +11 -0
- package/lib/examples/components/TimeTravel.d.ts +15 -0
- package/lib/examples/components/TimeTravel.js +23 -0
- package/lib/examples/components/index.d.ts +11 -0
- package/lib/examples/components/index.js +14 -0
- package/lib/examples/example-selector.d.ts +22 -0
- package/lib/examples/example-selector.js +62 -0
- package/lib/examples/index.d.ts +21 -0
- package/lib/examples/index.js +25 -0
- package/lib/examples/lexical/editorConfig.d.ts +76 -0
- package/lib/examples/lexical/editorConfig.js +55 -0
- package/lib/examples/lexical/lexical-theme.css +436 -0
- package/lib/examples/lexical/theme.d.ts +61 -0
- package/lib/examples/lexical/theme.js +72 -0
- package/lib/examples/main.d.ts +2 -0
- package/lib/examples/main.js +334 -0
- package/lib/examples/stores/agents/earthquake-detector.ipynb.json +111 -0
- package/lib/examples/stores/agents/earthquake-detector.json +13 -0
- package/lib/examples/stores/agents/earthquake-detector.lexical.json +2988 -0
- package/lib/examples/stores/agents/sales-forecaster.ipynb.json +111 -0
- package/lib/examples/stores/agents/sales-forecaster.json +13 -0
- package/lib/examples/stores/agents/sales-forecaster.lexical.json +2988 -0
- package/lib/examples/stores/agents/social-post-generator.ipynb.json +111 -0
- package/lib/examples/stores/agents/social-post-generator.json +13 -0
- package/lib/examples/stores/agents/social-post-generator.lexical.json +2988 -0
- package/lib/examples/stores/agents/stock-market.ipynb.json +56 -0
- package/lib/examples/stores/agents/stock-market.json +13 -0
- package/lib/examples/stores/agents/stock-market.lexical.json +1026 -0
- package/lib/examples/stores/examplesStore.d.ts +26 -0
- package/lib/examples/stores/examplesStore.js +60 -0
- package/lib/examples/stores/notebooks/Empty.ipynb.json +33 -0
- package/lib/examples/stores/notebooks/IPyWidgetsExample.ipynb.json +101 -0
- package/lib/examples/stores/notebooks/IPyWidgetsExampleWithState.ipynb.json +112 -0
- package/lib/examples/stores/notebooks/Lite.ipynb.json +128 -0
- package/lib/examples/stores/notebooks/Matplotlib.ipynb.json +137 -0
- package/lib/examples/stores/notebooks/NotebookExample1.ipynb.json +126 -0
- package/lib/examples/stores/notebooks/NotebookExample2.ipynb.json +48 -0
- package/lib/examples/stores/notebooks/NotebookOutputs.ipynb.json +49 -0
- package/lib/examples/stores/notebooks/NotebookToCExample.ipynb.json +102 -0
- package/lib/examples/stores/notebooks/OutputIPyWidgetsExample.d.ts +145 -0
- package/lib/examples/stores/notebooks/OutputIPyWidgetsExample.js +153 -0
- package/lib/examples/stores/notebooks/PyGWalker.ipynb.json +55 -0
- package/lib/examples/vercel-ai-elements/VercelAiElementsShowcase.d.ts +12 -0
- package/lib/examples/vercel-ai-elements/VercelAiElementsShowcase.js +69 -0
- package/lib/examples/vercel-ai-elements/components/ArtifactShowcase.d.ts +1 -0
- package/lib/examples/vercel-ai-elements/components/ArtifactShowcase.js +85 -0
- package/lib/examples/vercel-ai-elements/components/CodeBlockShowcase.d.ts +1 -0
- package/lib/examples/vercel-ai-elements/components/CodeBlockShowcase.js +62 -0
- package/lib/examples/vercel-ai-elements/components/ConversationShowcase.d.ts +1 -0
- package/lib/examples/vercel-ai-elements/components/ConversationShowcase.js +51 -0
- package/lib/examples/vercel-ai-elements/components/LoaderShowcase.d.ts +1 -0
- package/lib/examples/vercel-ai-elements/components/LoaderShowcase.js +9 -0
- package/lib/examples/vercel-ai-elements/components/MessageShowcase.d.ts +1 -0
- package/lib/examples/vercel-ai-elements/components/MessageShowcase.js +56 -0
- package/lib/examples/vercel-ai-elements/components/ModelSelectorShowcase.d.ts +1 -0
- package/lib/examples/vercel-ai-elements/components/ModelSelectorShowcase.js +50 -0
- package/lib/examples/vercel-ai-elements/components/PromptInputShowcase.d.ts +1 -0
- package/lib/examples/vercel-ai-elements/components/PromptInputShowcase.js +16 -0
- package/lib/examples/vercel-ai-elements/components/ReasoningShowcase.d.ts +1 -0
- package/lib/examples/vercel-ai-elements/components/ReasoningShowcase.js +72 -0
- package/lib/examples/vercel-ai-elements/components/ShimmerShowcase.d.ts +1 -0
- package/lib/examples/vercel-ai-elements/components/ShimmerShowcase.js +9 -0
- package/lib/examples/vercel-ai-elements/components/SourcesShowcase.d.ts +1 -0
- package/lib/examples/vercel-ai-elements/components/SourcesShowcase.js +43 -0
- package/lib/examples/vercel-ai-elements/components/SuggestionShowcase.d.ts +1 -0
- package/lib/examples/vercel-ai-elements/components/SuggestionShowcase.js +31 -0
- package/lib/examples/vercel-ai-elements/components/ToolShowcase.d.ts +1 -0
- package/lib/examples/vercel-ai-elements/components/ToolShowcase.js +54 -0
- package/lib/examples/vercel-ai-elements/index.d.ts +13 -0
- package/lib/examples/vercel-ai-elements/index.js +17 -0
- package/lib/examples/vercel-ai-elements/main.d.ts +1 -0
- package/lib/examples/vercel-ai-elements/main.js +9 -0
- package/lib/examples/vercel-ai-elements/showcase.css +128 -0
- package/lib/hooks/index.d.ts +68 -0
- package/lib/hooks/index.js +81 -0
- package/lib/hooks/useA2A.d.ts +75 -0
- package/lib/hooks/useA2A.js +368 -0
- package/lib/hooks/useAGUI.d.ts +63 -0
- package/lib/hooks/useAGUI.js +162 -0
- package/lib/hooks/useAcp.d.ts +121 -0
- package/lib/hooks/useAcp.js +459 -0
- package/lib/hooks/useAgents.d.ts +13 -0
- package/lib/hooks/useAgents.js +71 -0
- package/lib/hooks/useChat.d.ts +62 -0
- package/lib/hooks/useChat.js +363 -0
- package/lib/hooks/useKeyboardShortcuts.d.ts +47 -0
- package/lib/hooks/useKeyboardShortcuts.js +153 -0
- package/lib/hooks/useMobile.d.ts +1 -0
- package/lib/hooks/useMobile.js +19 -0
- package/lib/hooks/useNotebookAIAgent.d.ts +8 -0
- package/lib/hooks/useNotebookAIAgent.js +56 -0
- package/lib/hooks/useToast.d.ts +44 -0
- package/lib/hooks/useToast.js +128 -0
- package/lib/hooks/useTools.d.ts +107 -0
- package/lib/hooks/useTools.js +130 -0
- package/lib/hooks/useVercelChat.d.ts +45 -0
- package/lib/hooks/useVercelChat.js +62 -0
- package/lib/index.css +73 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.js +5 -0
- package/lib/lexical/ChatInlinePlugin.d.ts +21 -0
- package/lib/lexical/ChatInlinePlugin.js +379 -0
- package/lib/lexical/index.d.ts +6 -0
- package/lib/lexical/index.js +10 -0
- package/lib/lib/utils.d.ts +2 -0
- package/lib/lib/utils.js +9 -0
- package/lib/main.d.ts +1 -0
- package/lib/main.js +12 -0
- package/lib/models/AIAgent.d.ts +17 -0
- package/lib/models/AIAgent.js +5 -0
- package/lib/models/index.d.ts +1 -0
- package/lib/models/index.js +5 -0
- package/lib/renderers/a2ui/components/A2UIRenderer.d.ts +7 -0
- package/lib/renderers/a2ui/components/A2UIRenderer.js +102 -0
- package/lib/renderers/a2ui/components/SurfaceRenderer.d.ts +7 -0
- package/lib/renderers/a2ui/components/SurfaceRenderer.js +101 -0
- package/lib/renderers/a2ui/components/content/AudioPlayer.d.ts +9 -0
- package/lib/renderers/a2ui/components/content/AudioPlayer.js +38 -0
- package/lib/renderers/a2ui/components/content/Divider.d.ts +9 -0
- package/lib/renderers/a2ui/components/content/Divider.js +35 -0
- package/lib/renderers/a2ui/components/content/Icon.d.ts +9 -0
- package/lib/renderers/a2ui/components/content/Icon.js +110 -0
- package/lib/renderers/a2ui/components/content/Image.d.ts +9 -0
- package/lib/renderers/a2ui/components/content/Image.js +61 -0
- package/lib/renderers/a2ui/components/content/Text.d.ts +9 -0
- package/lib/renderers/a2ui/components/content/Text.js +64 -0
- package/lib/renderers/a2ui/components/content/Video.d.ts +9 -0
- package/lib/renderers/a2ui/components/content/Video.js +37 -0
- package/lib/renderers/a2ui/components/content/index.d.ts +6 -0
- package/lib/renderers/a2ui/components/content/index.js +25 -0
- package/lib/renderers/a2ui/components/index.d.ts +5 -0
- package/lib/renderers/a2ui/components/index.js +24 -0
- package/lib/renderers/a2ui/components/interactive/Button.d.ts +11 -0
- package/lib/renderers/a2ui/components/interactive/Button.js +71 -0
- package/lib/renderers/a2ui/components/interactive/CheckBox.d.ts +9 -0
- package/lib/renderers/a2ui/components/interactive/CheckBox.js +48 -0
- package/lib/renderers/a2ui/components/interactive/DateTimeInput.d.ts +9 -0
- package/lib/renderers/a2ui/components/interactive/DateTimeInput.js +62 -0
- package/lib/renderers/a2ui/components/interactive/MultipleChoice.d.ts +9 -0
- package/lib/renderers/a2ui/components/interactive/MultipleChoice.js +73 -0
- package/lib/renderers/a2ui/components/interactive/Slider.d.ts +9 -0
- package/lib/renderers/a2ui/components/interactive/Slider.js +53 -0
- package/lib/renderers/a2ui/components/interactive/TextField.d.ts +9 -0
- package/lib/renderers/a2ui/components/interactive/TextField.js +72 -0
- package/lib/renderers/a2ui/components/interactive/index.d.ts +6 -0
- package/lib/renderers/a2ui/components/interactive/index.js +25 -0
- package/lib/renderers/a2ui/components/layout/Card.d.ts +11 -0
- package/lib/renderers/a2ui/components/layout/Card.js +30 -0
- package/lib/renderers/a2ui/components/layout/Column.d.ts +11 -0
- package/lib/renderers/a2ui/components/layout/Column.js +65 -0
- package/lib/renderers/a2ui/components/layout/List.d.ts +11 -0
- package/lib/renderers/a2ui/components/layout/List.js +55 -0
- package/lib/renderers/a2ui/components/layout/Modal.d.ts +11 -0
- package/lib/renderers/a2ui/components/layout/Modal.js +58 -0
- package/lib/renderers/a2ui/components/layout/Row.d.ts +11 -0
- package/lib/renderers/a2ui/components/layout/Row.js +65 -0
- package/lib/renderers/a2ui/components/layout/Tabs.d.ts +11 -0
- package/lib/renderers/a2ui/components/layout/Tabs.js +48 -0
- package/lib/renderers/a2ui/components/layout/index.d.ts +6 -0
- package/lib/renderers/a2ui/components/layout/index.js +25 -0
- package/lib/renderers/a2ui/context/A2UIContext.d.ts +17 -0
- package/lib/renderers/a2ui/context/A2UIContext.js +54 -0
- package/lib/renderers/a2ui/context/ThemeContext.d.ts +20 -0
- package/lib/renderers/a2ui/context/ThemeContext.js +333 -0
- package/lib/renderers/a2ui/hooks/useA2UI.d.ts +36 -0
- package/lib/renderers/a2ui/hooks/useA2UI.js +62 -0
- package/lib/renderers/a2ui/hooks/useDataBinding.d.ts +8 -0
- package/lib/renderers/a2ui/hooks/useDataBinding.js +83 -0
- package/lib/renderers/a2ui/index.d.ts +9 -0
- package/lib/renderers/a2ui/index.js +28 -0
- package/lib/renderers/a2ui/lib/utils.d.ts +11 -0
- package/lib/renderers/a2ui/lib/utils.js +38 -0
- package/lib/renderers/a2ui/types/index.d.ts +17 -0
- package/lib/renderers/a2ui/types/index.js +5 -0
- package/lib/renderers/index.d.ts +1 -0
- package/lib/renderers/index.js +5 -0
- package/lib/state/index.d.ts +1 -0
- package/lib/state/index.js +5 -0
- package/lib/state/substates/AIAgentState.d.ts +11 -0
- package/lib/state/substates/AIAgentState.js +42 -0
- package/lib/state/substates/index.d.ts +1 -0
- package/lib/state/substates/index.js +5 -0
- package/lib/stories/Button.d.ts +15 -0
- package/lib/stories/Button.js +13 -0
- package/lib/stories/Button.stories.d.ts +23 -0
- package/lib/stories/Button.stories.js +48 -0
- package/lib/stories/Cell.stories.d.ts +12 -0
- package/lib/stories/Cell.stories.js +123 -0
- package/lib/stories/Header.d.ts +12 -0
- package/lib/stories/Header.js +8 -0
- package/lib/stories/Header.stories.d.ts +18 -0
- package/lib/stories/Header.stories.js +30 -0
- package/lib/stories/Page.d.ts +3 -0
- package/lib/stories/Page.js +12 -0
- package/lib/stories/Page.stories.d.ts +12 -0
- package/lib/stories/Page.stories.js +28 -0
- package/lib/stories/assets/accessibility.png +0 -0
- package/lib/stories/assets/accessibility.svg +1 -0
- package/lib/stories/assets/addon-library.png +0 -0
- package/lib/stories/assets/assets.png +0 -0
- package/lib/stories/assets/context.png +0 -0
- package/lib/stories/assets/discord.svg +1 -0
- package/lib/stories/assets/docs.png +0 -0
- package/lib/stories/assets/figma-plugin.png +0 -0
- package/lib/stories/assets/github.svg +1 -0
- package/lib/stories/assets/share.png +0 -0
- package/lib/stories/assets/styling.png +0 -0
- package/lib/stories/assets/testing.png +0 -0
- package/lib/stories/assets/theming.png +0 -0
- package/lib/stories/assets/tutorials.svg +1 -0
- package/lib/stories/assets/youtube.svg +1 -0
- package/lib/stories/button.css +35 -0
- package/lib/stories/header.css +37 -0
- package/lib/stories/page.css +73 -0
- package/lib/test-setup.d.ts +1 -0
- package/lib/test-setup.js +80 -0
- package/lib/tools/adapters/agent-runtimes/AgentRuntimesToolAdapter.d.ts +40 -0
- package/lib/tools/adapters/agent-runtimes/AgentRuntimesToolAdapter.js +110 -0
- package/lib/tools/adapters/agent-runtimes/index.d.ts +9 -0
- package/lib/tools/adapters/agent-runtimes/index.js +13 -0
- package/lib/tools/adapters/agent-runtimes/lexicalHooks.d.ts +24 -0
- package/lib/tools/adapters/agent-runtimes/lexicalHooks.js +50 -0
- package/lib/tools/adapters/agent-runtimes/notebookHooks.d.ts +24 -0
- package/lib/tools/adapters/agent-runtimes/notebookHooks.js +51 -0
- package/lib/tools/adapters/copilotkit/CopilotKitToolAdapter.d.ts +73 -0
- package/lib/tools/adapters/copilotkit/CopilotKitToolAdapter.js +244 -0
- package/lib/tools/adapters/copilotkit/index.d.ts +10 -0
- package/lib/tools/adapters/copilotkit/index.js +14 -0
- package/lib/tools/adapters/copilotkit/lexicalHooks.d.ts +27 -0
- package/lib/tools/adapters/copilotkit/lexicalHooks.js +59 -0
- package/lib/tools/adapters/copilotkit/notebookHooks.d.ts +27 -0
- package/lib/tools/adapters/copilotkit/notebookHooks.js +58 -0
- package/lib/tools/adapters/index.d.ts +1 -0
- package/lib/tools/adapters/index.js +5 -0
- package/lib/tools/index.d.ts +6 -0
- package/lib/tools/index.js +18 -0
- package/lib/types.d.ts +5 -0
- package/lib/types.js +5 -0
- package/package.json +327 -0
- package/style/animation/Animation.module.css +174 -0
- package/style/base.css +204 -0
- package/style/index.css +6 -0
- package/style/showcase-vercel-ai.css +137 -0
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright (c) 2025-2026 Datalayer, Inc.
|
|
3
|
+
* Distributed under the terms of the Modified BSD License.
|
|
4
|
+
*/
|
|
5
|
+
import { useEffect } from 'react';
|
|
6
|
+
import { useAIAgentStore } from '../state';
|
|
7
|
+
import { useAIAgents } from './useAgents';
|
|
8
|
+
/**
|
|
9
|
+
* Get the document AI Agent if any.
|
|
10
|
+
*
|
|
11
|
+
* It handles checking the AI Agent is alive so it should only be use once per document.
|
|
12
|
+
*/
|
|
13
|
+
export function useNotebookAIAgent(notebookId) {
|
|
14
|
+
const { getAIAgent } = useAIAgents();
|
|
15
|
+
const { aiAgents, addAIAgent, deleteAIAgent, updateAIAgent } = useAIAgentStore();
|
|
16
|
+
// Check AI Agent is alive.
|
|
17
|
+
useEffect(() => {
|
|
18
|
+
let abortController;
|
|
19
|
+
const refreshAIAgent = async () => {
|
|
20
|
+
abortController = new AbortController();
|
|
21
|
+
try {
|
|
22
|
+
const response = await getAIAgent(notebookId, {
|
|
23
|
+
signal: abortController.signal,
|
|
24
|
+
});
|
|
25
|
+
if (!response.success) {
|
|
26
|
+
deleteAIAgent(notebookId);
|
|
27
|
+
return;
|
|
28
|
+
}
|
|
29
|
+
const currentAgent = aiAgents.find(agent => agent.documentId === notebookId);
|
|
30
|
+
const runtimeId = response.agent.runtime?.id;
|
|
31
|
+
if (currentAgent) {
|
|
32
|
+
if (currentAgent.runtimeId !== runtimeId) {
|
|
33
|
+
updateAIAgent(notebookId, runtimeId);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
else {
|
|
37
|
+
addAIAgent({
|
|
38
|
+
documentId: notebookId,
|
|
39
|
+
runtimeId,
|
|
40
|
+
});
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
catch (r) {
|
|
44
|
+
deleteAIAgent(notebookId);
|
|
45
|
+
}
|
|
46
|
+
};
|
|
47
|
+
const refreshInterval = setInterval(refreshAIAgent, 60_000);
|
|
48
|
+
return () => {
|
|
49
|
+
abortController?.abort('Component unmounted');
|
|
50
|
+
clearInterval(refreshInterval);
|
|
51
|
+
};
|
|
52
|
+
}, [aiAgents, notebookId]);
|
|
53
|
+
const aiAgent = aiAgents.find(aiAgent => aiAgent.documentId === notebookId);
|
|
54
|
+
return aiAgent;
|
|
55
|
+
}
|
|
56
|
+
export default useNotebookAIAgent;
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import type { ToastActionElement, ToastProps } from '@/components/ui/toast';
|
|
3
|
+
type ToasterToast = ToastProps & {
|
|
4
|
+
id: string;
|
|
5
|
+
title?: React.ReactNode;
|
|
6
|
+
description?: React.ReactNode;
|
|
7
|
+
action?: ToastActionElement;
|
|
8
|
+
};
|
|
9
|
+
declare const actionTypes: {
|
|
10
|
+
readonly ADD_TOAST: "ADD_TOAST";
|
|
11
|
+
readonly UPDATE_TOAST: "UPDATE_TOAST";
|
|
12
|
+
readonly DISMISS_TOAST: "DISMISS_TOAST";
|
|
13
|
+
readonly REMOVE_TOAST: "REMOVE_TOAST";
|
|
14
|
+
};
|
|
15
|
+
type ActionType = typeof actionTypes;
|
|
16
|
+
type Action = {
|
|
17
|
+
type: ActionType['ADD_TOAST'];
|
|
18
|
+
toast: ToasterToast;
|
|
19
|
+
} | {
|
|
20
|
+
type: ActionType['UPDATE_TOAST'];
|
|
21
|
+
toast: Partial<ToasterToast>;
|
|
22
|
+
} | {
|
|
23
|
+
type: ActionType['DISMISS_TOAST'];
|
|
24
|
+
toastId?: ToasterToast['id'];
|
|
25
|
+
} | {
|
|
26
|
+
type: ActionType['REMOVE_TOAST'];
|
|
27
|
+
toastId?: ToasterToast['id'];
|
|
28
|
+
};
|
|
29
|
+
interface State {
|
|
30
|
+
toasts: ToasterToast[];
|
|
31
|
+
}
|
|
32
|
+
export declare const reducer: (state: State, action: Action) => State;
|
|
33
|
+
type Toast = Omit<ToasterToast, 'id'>;
|
|
34
|
+
declare function toast({ ...props }: Toast): {
|
|
35
|
+
id: string;
|
|
36
|
+
dismiss: () => void;
|
|
37
|
+
update: (props: ToasterToast) => void;
|
|
38
|
+
};
|
|
39
|
+
declare function useToast(): {
|
|
40
|
+
toast: typeof toast;
|
|
41
|
+
dismiss: (toastId?: string) => void;
|
|
42
|
+
toasts: ToasterToast[];
|
|
43
|
+
};
|
|
44
|
+
export { useToast, toast };
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright (c) 2025-2026 Datalayer, Inc.
|
|
3
|
+
* Distributed under the terms of the Modified BSD License.
|
|
4
|
+
*/
|
|
5
|
+
import * as React from 'react';
|
|
6
|
+
const TOAST_LIMIT = 1;
|
|
7
|
+
const TOAST_REMOVE_DELAY = 1000000;
|
|
8
|
+
const actionTypes = {
|
|
9
|
+
ADD_TOAST: 'ADD_TOAST',
|
|
10
|
+
UPDATE_TOAST: 'UPDATE_TOAST',
|
|
11
|
+
DISMISS_TOAST: 'DISMISS_TOAST',
|
|
12
|
+
REMOVE_TOAST: 'REMOVE_TOAST',
|
|
13
|
+
};
|
|
14
|
+
let count = 0;
|
|
15
|
+
function genId() {
|
|
16
|
+
count = (count + 1) % Number.MAX_SAFE_INTEGER;
|
|
17
|
+
return count.toString();
|
|
18
|
+
}
|
|
19
|
+
const toastTimeouts = new Map();
|
|
20
|
+
const addToRemoveQueue = (toastId) => {
|
|
21
|
+
if (toastTimeouts.has(toastId)) {
|
|
22
|
+
return;
|
|
23
|
+
}
|
|
24
|
+
const timeout = setTimeout(() => {
|
|
25
|
+
toastTimeouts.delete(toastId);
|
|
26
|
+
dispatch({
|
|
27
|
+
type: 'REMOVE_TOAST',
|
|
28
|
+
toastId: toastId,
|
|
29
|
+
});
|
|
30
|
+
}, TOAST_REMOVE_DELAY);
|
|
31
|
+
toastTimeouts.set(toastId, timeout);
|
|
32
|
+
};
|
|
33
|
+
export const reducer = (state, action) => {
|
|
34
|
+
switch (action.type) {
|
|
35
|
+
case 'ADD_TOAST':
|
|
36
|
+
return {
|
|
37
|
+
...state,
|
|
38
|
+
toasts: [action.toast, ...state.toasts].slice(0, TOAST_LIMIT),
|
|
39
|
+
};
|
|
40
|
+
case 'UPDATE_TOAST':
|
|
41
|
+
return {
|
|
42
|
+
...state,
|
|
43
|
+
toasts: state.toasts.map(t => t.id === action.toast.id ? { ...t, ...action.toast } : t),
|
|
44
|
+
};
|
|
45
|
+
case 'DISMISS_TOAST': {
|
|
46
|
+
const { toastId } = action;
|
|
47
|
+
if (toastId) {
|
|
48
|
+
addToRemoveQueue(toastId);
|
|
49
|
+
}
|
|
50
|
+
else {
|
|
51
|
+
state.toasts.forEach(toast => {
|
|
52
|
+
addToRemoveQueue(toast.id);
|
|
53
|
+
});
|
|
54
|
+
}
|
|
55
|
+
return {
|
|
56
|
+
...state,
|
|
57
|
+
toasts: state.toasts.map(t => t.id === toastId || toastId === undefined
|
|
58
|
+
? {
|
|
59
|
+
...t,
|
|
60
|
+
open: false,
|
|
61
|
+
}
|
|
62
|
+
: t),
|
|
63
|
+
};
|
|
64
|
+
}
|
|
65
|
+
case 'REMOVE_TOAST':
|
|
66
|
+
if (action.toastId === undefined) {
|
|
67
|
+
return {
|
|
68
|
+
...state,
|
|
69
|
+
toasts: [],
|
|
70
|
+
};
|
|
71
|
+
}
|
|
72
|
+
return {
|
|
73
|
+
...state,
|
|
74
|
+
toasts: state.toasts.filter(t => t.id !== action.toastId),
|
|
75
|
+
};
|
|
76
|
+
}
|
|
77
|
+
};
|
|
78
|
+
const listeners = [];
|
|
79
|
+
let memoryState = { toasts: [] };
|
|
80
|
+
function dispatch(action) {
|
|
81
|
+
memoryState = reducer(memoryState, action);
|
|
82
|
+
listeners.forEach(listener => {
|
|
83
|
+
listener(memoryState);
|
|
84
|
+
});
|
|
85
|
+
}
|
|
86
|
+
function toast({ ...props }) {
|
|
87
|
+
const id = genId();
|
|
88
|
+
const update = (props) => dispatch({
|
|
89
|
+
type: 'UPDATE_TOAST',
|
|
90
|
+
toast: { ...props, id },
|
|
91
|
+
});
|
|
92
|
+
const dismiss = () => dispatch({ type: 'DISMISS_TOAST', toastId: id });
|
|
93
|
+
dispatch({
|
|
94
|
+
type: 'ADD_TOAST',
|
|
95
|
+
toast: {
|
|
96
|
+
...props,
|
|
97
|
+
id,
|
|
98
|
+
open: true,
|
|
99
|
+
onOpenChange: open => {
|
|
100
|
+
if (!open)
|
|
101
|
+
dismiss();
|
|
102
|
+
},
|
|
103
|
+
},
|
|
104
|
+
});
|
|
105
|
+
return {
|
|
106
|
+
id: id,
|
|
107
|
+
dismiss,
|
|
108
|
+
update,
|
|
109
|
+
};
|
|
110
|
+
}
|
|
111
|
+
function useToast() {
|
|
112
|
+
const [state, setState] = React.useState(memoryState);
|
|
113
|
+
React.useEffect(() => {
|
|
114
|
+
listeners.push(setState);
|
|
115
|
+
return () => {
|
|
116
|
+
const index = listeners.indexOf(setState);
|
|
117
|
+
if (index > -1) {
|
|
118
|
+
listeners.splice(index, 1);
|
|
119
|
+
}
|
|
120
|
+
};
|
|
121
|
+
}, [state]);
|
|
122
|
+
return {
|
|
123
|
+
...state,
|
|
124
|
+
toast,
|
|
125
|
+
dismiss: (toastId) => dispatch({ type: 'DISMISS_TOAST', toastId }),
|
|
126
|
+
};
|
|
127
|
+
}
|
|
128
|
+
export { useToast, toast };
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
import { type ToolCallState } from '../components/chat/store';
|
|
2
|
+
import type { ToolParameter, ToolRenderProps, ToolRenderAndWaitProps, ToolLocation } from '../components/chat/types/tool';
|
|
3
|
+
/**
|
|
4
|
+
* Type signature for useFrontendTool hook
|
|
5
|
+
* Compatible with CopilotKit's interface
|
|
6
|
+
*/
|
|
7
|
+
export type UseFrontendToolFn = <TArgs = Record<string, unknown>, TResult = unknown>(tool: {
|
|
8
|
+
name: string;
|
|
9
|
+
description: string;
|
|
10
|
+
parameters: ToolParameter[];
|
|
11
|
+
handler?: (args: TArgs) => Promise<TResult>;
|
|
12
|
+
render?: (props: ToolRenderProps<TArgs, TResult>) => React.ReactNode;
|
|
13
|
+
renderAndWaitForResponse?: (props: ToolRenderAndWaitProps<TArgs, TResult>) => React.ReactNode;
|
|
14
|
+
location?: ToolLocation;
|
|
15
|
+
}, dependencies?: unknown[]) => void;
|
|
16
|
+
/**
|
|
17
|
+
* Hook to register a frontend tool
|
|
18
|
+
* Compatible with CopilotKit's useFrontendTool
|
|
19
|
+
*
|
|
20
|
+
* @example
|
|
21
|
+
* ```tsx
|
|
22
|
+
* useFrontendTool({
|
|
23
|
+
* name: 'insert_heading',
|
|
24
|
+
* description: 'Insert a heading into the document',
|
|
25
|
+
* parameters: [
|
|
26
|
+
* { name: 'text', type: 'string', description: 'Heading text', required: true },
|
|
27
|
+
* { name: 'level', type: 'number', description: 'Heading level 1-6' }
|
|
28
|
+
* ],
|
|
29
|
+
* handler: async ({ text, level }) => {
|
|
30
|
+
* // Execute the tool
|
|
31
|
+
* return `Inserted heading: ${text}`;
|
|
32
|
+
* }
|
|
33
|
+
* }, []);
|
|
34
|
+
* ```
|
|
35
|
+
*/
|
|
36
|
+
export declare function useFrontendTool<TArgs = Record<string, unknown>, TResult = unknown>(tool: {
|
|
37
|
+
name: string;
|
|
38
|
+
description: string;
|
|
39
|
+
parameters: ToolParameter[];
|
|
40
|
+
handler?: (args: TArgs) => Promise<TResult>;
|
|
41
|
+
render?: (props: ToolRenderProps<TArgs, TResult>) => React.ReactNode;
|
|
42
|
+
renderAndWaitForResponse?: (props: ToolRenderAndWaitProps<TArgs, TResult>) => React.ReactNode;
|
|
43
|
+
location?: ToolLocation;
|
|
44
|
+
}, dependencies?: unknown[]): void;
|
|
45
|
+
/**
|
|
46
|
+
* Hook to register a backend tool
|
|
47
|
+
* Backend tools are executed server-side via the inference provider
|
|
48
|
+
*
|
|
49
|
+
* @example
|
|
50
|
+
* ```tsx
|
|
51
|
+
* useBackendTool({
|
|
52
|
+
* name: 'search_database',
|
|
53
|
+
* description: 'Search the database for records',
|
|
54
|
+
* parameters: [
|
|
55
|
+
* { name: 'query', type: 'string', required: true }
|
|
56
|
+
* ],
|
|
57
|
+
* render: ({ status, result }) => (
|
|
58
|
+
* <SearchResults status={status} results={result} />
|
|
59
|
+
* )
|
|
60
|
+
* }, []);
|
|
61
|
+
* ```
|
|
62
|
+
*/
|
|
63
|
+
export declare function useBackendTool(tool: {
|
|
64
|
+
name: string;
|
|
65
|
+
description: string;
|
|
66
|
+
parameters: ToolParameter[];
|
|
67
|
+
render?: (props: ToolRenderProps) => React.ReactNode;
|
|
68
|
+
}, dependencies?: unknown[]): void;
|
|
69
|
+
/**
|
|
70
|
+
* Hook to get registered tools
|
|
71
|
+
*/
|
|
72
|
+
export declare function useRegisteredTools(): import("..").ToolDefinition[];
|
|
73
|
+
/**
|
|
74
|
+
* Hook to get a specific tool by name
|
|
75
|
+
*/
|
|
76
|
+
export declare function useTool(name: string): import("..").ToolRegistryEntry | undefined;
|
|
77
|
+
/**
|
|
78
|
+
* Hook to get pending tool calls
|
|
79
|
+
*/
|
|
80
|
+
export declare function usePendingToolCalls(): ToolCallState[];
|
|
81
|
+
/**
|
|
82
|
+
* Component to register a single action/tool
|
|
83
|
+
* Used with useFrontendTool for compatibility with existing patterns
|
|
84
|
+
*
|
|
85
|
+
* @example
|
|
86
|
+
* ```tsx
|
|
87
|
+
* {actions.map((action, i) => (
|
|
88
|
+
* <ActionRegistrar
|
|
89
|
+
* key={action.name || i}
|
|
90
|
+
* action={action}
|
|
91
|
+
* useFrontendTool={useFrontendTool}
|
|
92
|
+
* />
|
|
93
|
+
* ))}
|
|
94
|
+
* ```
|
|
95
|
+
*/
|
|
96
|
+
export declare function ActionRegistrar<TArgs = Record<string, unknown>, TResult = unknown>({ action, useFrontendTool: useToolFn, }: {
|
|
97
|
+
action: {
|
|
98
|
+
name: string;
|
|
99
|
+
description: string;
|
|
100
|
+
parameters: ToolParameter[];
|
|
101
|
+
handler?: (args: TArgs) => Promise<TResult>;
|
|
102
|
+
render?: (props: ToolRenderProps<TArgs, TResult>) => React.ReactNode;
|
|
103
|
+
renderAndWaitForResponse?: (props: ToolRenderAndWaitProps<TArgs, TResult>) => React.ReactNode;
|
|
104
|
+
location?: ToolLocation;
|
|
105
|
+
};
|
|
106
|
+
useFrontendTool: UseFrontendToolFn;
|
|
107
|
+
}): null;
|
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright (c) 2025-2026 Datalayer, Inc.
|
|
3
|
+
* Distributed under the terms of the Modified BSD License.
|
|
4
|
+
*/
|
|
5
|
+
/**
|
|
6
|
+
* React hooks for chat tool registration and usage.
|
|
7
|
+
* Compatible with CopilotKit's useFrontendTool pattern.
|
|
8
|
+
*
|
|
9
|
+
* @module components/chat/hooks/useTools
|
|
10
|
+
*/
|
|
11
|
+
import { useEffect, useMemo } from 'react';
|
|
12
|
+
import { useChatStore } from '../components/chat/store';
|
|
13
|
+
/**
|
|
14
|
+
* Hook to register a frontend tool
|
|
15
|
+
* Compatible with CopilotKit's useFrontendTool
|
|
16
|
+
*
|
|
17
|
+
* @example
|
|
18
|
+
* ```tsx
|
|
19
|
+
* useFrontendTool({
|
|
20
|
+
* name: 'insert_heading',
|
|
21
|
+
* description: 'Insert a heading into the document',
|
|
22
|
+
* parameters: [
|
|
23
|
+
* { name: 'text', type: 'string', description: 'Heading text', required: true },
|
|
24
|
+
* { name: 'level', type: 'number', description: 'Heading level 1-6' }
|
|
25
|
+
* ],
|
|
26
|
+
* handler: async ({ text, level }) => {
|
|
27
|
+
* // Execute the tool
|
|
28
|
+
* return `Inserted heading: ${text}`;
|
|
29
|
+
* }
|
|
30
|
+
* }, []);
|
|
31
|
+
* ```
|
|
32
|
+
*/
|
|
33
|
+
export function useFrontendTool(tool, dependencies = []) {
|
|
34
|
+
const registerTool = useChatStore(state => state.registerTool);
|
|
35
|
+
const unregisterTool = useChatStore(state => state.unregisterTool);
|
|
36
|
+
// Create stable tool definition
|
|
37
|
+
const toolDefinition = useMemo(() => ({
|
|
38
|
+
name: tool.name,
|
|
39
|
+
description: tool.description,
|
|
40
|
+
parameters: tool.parameters,
|
|
41
|
+
location: tool.location || 'frontend',
|
|
42
|
+
handler: tool.handler,
|
|
43
|
+
render: tool.render,
|
|
44
|
+
renderAndWaitForResponse: tool.renderAndWaitForResponse,
|
|
45
|
+
}),
|
|
46
|
+
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
47
|
+
[tool.name, ...dependencies]);
|
|
48
|
+
// Register on mount, unregister on unmount
|
|
49
|
+
useEffect(() => {
|
|
50
|
+
registerTool(toolDefinition);
|
|
51
|
+
return () => {
|
|
52
|
+
unregisterTool(tool.name);
|
|
53
|
+
};
|
|
54
|
+
}, [toolDefinition, registerTool, unregisterTool, tool.name]);
|
|
55
|
+
}
|
|
56
|
+
/**
|
|
57
|
+
* Hook to register a backend tool
|
|
58
|
+
* Backend tools are executed server-side via the inference provider
|
|
59
|
+
*
|
|
60
|
+
* @example
|
|
61
|
+
* ```tsx
|
|
62
|
+
* useBackendTool({
|
|
63
|
+
* name: 'search_database',
|
|
64
|
+
* description: 'Search the database for records',
|
|
65
|
+
* parameters: [
|
|
66
|
+
* { name: 'query', type: 'string', required: true }
|
|
67
|
+
* ],
|
|
68
|
+
* render: ({ status, result }) => (
|
|
69
|
+
* <SearchResults status={status} results={result} />
|
|
70
|
+
* )
|
|
71
|
+
* }, []);
|
|
72
|
+
* ```
|
|
73
|
+
*/
|
|
74
|
+
export function useBackendTool(tool, dependencies = []) {
|
|
75
|
+
const registerTool = useChatStore(state => state.registerTool);
|
|
76
|
+
const unregisterTool = useChatStore(state => state.unregisterTool);
|
|
77
|
+
const toolDefinition = useMemo(() => ({
|
|
78
|
+
name: tool.name,
|
|
79
|
+
description: tool.description,
|
|
80
|
+
parameters: tool.parameters,
|
|
81
|
+
location: 'backend',
|
|
82
|
+
render: tool.render,
|
|
83
|
+
}),
|
|
84
|
+
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
85
|
+
[tool.name, ...dependencies]);
|
|
86
|
+
useEffect(() => {
|
|
87
|
+
registerTool(toolDefinition);
|
|
88
|
+
return () => {
|
|
89
|
+
unregisterTool(tool.name);
|
|
90
|
+
};
|
|
91
|
+
}, [toolDefinition, registerTool, unregisterTool, tool.name]);
|
|
92
|
+
}
|
|
93
|
+
/**
|
|
94
|
+
* Hook to get registered tools
|
|
95
|
+
*/
|
|
96
|
+
export function useRegisteredTools() {
|
|
97
|
+
return useChatStore(state => state.getTools());
|
|
98
|
+
}
|
|
99
|
+
/**
|
|
100
|
+
* Hook to get a specific tool by name
|
|
101
|
+
*/
|
|
102
|
+
export function useTool(name) {
|
|
103
|
+
const getTool = useChatStore(state => state.getTool);
|
|
104
|
+
return getTool(name);
|
|
105
|
+
}
|
|
106
|
+
/**
|
|
107
|
+
* Hook to get pending tool calls
|
|
108
|
+
*/
|
|
109
|
+
export function usePendingToolCalls() {
|
|
110
|
+
return useChatStore(state => state.getPendingToolCalls());
|
|
111
|
+
}
|
|
112
|
+
/**
|
|
113
|
+
* Component to register a single action/tool
|
|
114
|
+
* Used with useFrontendTool for compatibility with existing patterns
|
|
115
|
+
*
|
|
116
|
+
* @example
|
|
117
|
+
* ```tsx
|
|
118
|
+
* {actions.map((action, i) => (
|
|
119
|
+
* <ActionRegistrar
|
|
120
|
+
* key={action.name || i}
|
|
121
|
+
* action={action}
|
|
122
|
+
* useFrontendTool={useFrontendTool}
|
|
123
|
+
* />
|
|
124
|
+
* ))}
|
|
125
|
+
* ```
|
|
126
|
+
*/
|
|
127
|
+
export function ActionRegistrar({ action, useFrontendTool: useToolFn, }) {
|
|
128
|
+
useToolFn(action, [action]);
|
|
129
|
+
return null;
|
|
130
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { type UseChatHelpers, type UIMessage } from '@ai-sdk/react';
|
|
2
|
+
export interface Message {
|
|
3
|
+
id: string;
|
|
4
|
+
role: 'user' | 'assistant' | 'system';
|
|
5
|
+
content: string;
|
|
6
|
+
}
|
|
7
|
+
export interface UseVercelChatOptions {
|
|
8
|
+
/**
|
|
9
|
+
* Base URL for the Vercel AI endpoint (e.g., 'http://localhost:8000')
|
|
10
|
+
*/
|
|
11
|
+
baseUrl?: string;
|
|
12
|
+
/**
|
|
13
|
+
* Agent ID to use (default: 'demo-agent')
|
|
14
|
+
*/
|
|
15
|
+
agentId?: string;
|
|
16
|
+
/**
|
|
17
|
+
* Callback when a message is sent
|
|
18
|
+
*/
|
|
19
|
+
onMessageSent?: (content: string) => void;
|
|
20
|
+
/**
|
|
21
|
+
* Callback when a message is received
|
|
22
|
+
*/
|
|
23
|
+
onMessageReceived?: (message: Message) => void;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Hook to manage chat state with Vercel AI protocol.
|
|
27
|
+
*
|
|
28
|
+
* This hook wraps the Vercel AI's useChat to connect to the
|
|
29
|
+
* agent-runtimes Vercel AI endpoint at /api/v1/vercel-ai/chat.
|
|
30
|
+
*
|
|
31
|
+
* Features:
|
|
32
|
+
* - Streaming responses via SSE
|
|
33
|
+
* - Automatic message management
|
|
34
|
+
* - Error handling
|
|
35
|
+
* - Loading states
|
|
36
|
+
*
|
|
37
|
+
* Example:
|
|
38
|
+
* ```tsx
|
|
39
|
+
* const { messages, sendMessage, isLoading } = useVercelChat({
|
|
40
|
+
* baseUrl: 'http://localhost:8888',
|
|
41
|
+
* agentId: 'demo-agent',
|
|
42
|
+
* });
|
|
43
|
+
* ```
|
|
44
|
+
*/
|
|
45
|
+
export declare function useVercelChat(options?: UseVercelChatOptions): UseChatHelpers<UIMessage>;
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright (c) 2025-2026 Datalayer, Inc.
|
|
3
|
+
* Distributed under the terms of the Modified BSD License.
|
|
4
|
+
*/
|
|
5
|
+
import { useCallback, useMemo } from 'react';
|
|
6
|
+
import { useChat } from '@ai-sdk/react';
|
|
7
|
+
import { DefaultChatTransport } from 'ai';
|
|
8
|
+
/**
|
|
9
|
+
* Hook to manage chat state with Vercel AI protocol.
|
|
10
|
+
*
|
|
11
|
+
* This hook wraps the Vercel AI's useChat to connect to the
|
|
12
|
+
* agent-runtimes Vercel AI endpoint at /api/v1/vercel-ai/chat.
|
|
13
|
+
*
|
|
14
|
+
* Features:
|
|
15
|
+
* - Streaming responses via SSE
|
|
16
|
+
* - Automatic message management
|
|
17
|
+
* - Error handling
|
|
18
|
+
* - Loading states
|
|
19
|
+
*
|
|
20
|
+
* Example:
|
|
21
|
+
* ```tsx
|
|
22
|
+
* const { messages, sendMessage, isLoading } = useVercelChat({
|
|
23
|
+
* baseUrl: 'http://localhost:8888',
|
|
24
|
+
* agentId: 'demo-agent',
|
|
25
|
+
* });
|
|
26
|
+
* ```
|
|
27
|
+
*/
|
|
28
|
+
export function useVercelChat(options = {}) {
|
|
29
|
+
const { baseUrl = 'http://localhost:8888', agentId = 'demo-agent', onMessageSent, } = options;
|
|
30
|
+
// Construct the chat endpoint URL
|
|
31
|
+
const apiEndpoint = `${baseUrl}/api/v1/vercel-ai/chat`;
|
|
32
|
+
const chatResult = useChat({
|
|
33
|
+
id: `vercel-chat-${agentId}`,
|
|
34
|
+
transport: new DefaultChatTransport({
|
|
35
|
+
api: apiEndpoint,
|
|
36
|
+
body: {
|
|
37
|
+
agent_id: agentId,
|
|
38
|
+
},
|
|
39
|
+
}),
|
|
40
|
+
});
|
|
41
|
+
const { sendMessage, setMessages } = chatResult;
|
|
42
|
+
// Wrap original sendMessage to trigger callbacks
|
|
43
|
+
const originalSendMessage = sendMessage;
|
|
44
|
+
const wrappedSendMessage = useCallback(async (message, options) => {
|
|
45
|
+
if (typeof message === 'string' && message.trim()) {
|
|
46
|
+
onMessageSent?.(message);
|
|
47
|
+
}
|
|
48
|
+
else if (message?.parts?.[0]?.text) {
|
|
49
|
+
onMessageSent?.(message.parts[0].text);
|
|
50
|
+
}
|
|
51
|
+
return originalSendMessage(message, options);
|
|
52
|
+
}, [originalSendMessage, onMessageSent]);
|
|
53
|
+
// Clear chat history
|
|
54
|
+
const clearChat = useCallback(() => {
|
|
55
|
+
setMessages([]);
|
|
56
|
+
}, [setMessages]);
|
|
57
|
+
return useMemo(() => ({
|
|
58
|
+
...chatResult,
|
|
59
|
+
sendMessage: wrappedSendMessage,
|
|
60
|
+
clearChat,
|
|
61
|
+
}), [chatResult, wrappedSendMessage, clearChat]);
|
|
62
|
+
}
|
package/lib/index.css
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright (c) 2025-2026 Datalayer, Inc.
|
|
3
|
+
* Distributed under the terms of the Modified BSD License.
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
:root {
|
|
7
|
+
font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
|
|
8
|
+
line-height: 1.5;
|
|
9
|
+
font-weight: 400;
|
|
10
|
+
|
|
11
|
+
color-scheme: light dark;
|
|
12
|
+
color: rgba(255, 255, 255, 0.87);
|
|
13
|
+
background-color: #242424;
|
|
14
|
+
|
|
15
|
+
font-synthesis: none;
|
|
16
|
+
text-rendering: optimizeLegibility;
|
|
17
|
+
-webkit-font-smoothing: antialiased;
|
|
18
|
+
-moz-osx-font-smoothing: grayscale;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
a {
|
|
22
|
+
font-weight: 500;
|
|
23
|
+
color: #646cff;
|
|
24
|
+
text-decoration: inherit;
|
|
25
|
+
}
|
|
26
|
+
a:hover {
|
|
27
|
+
color: #535bf2;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
body {
|
|
31
|
+
margin: 0;
|
|
32
|
+
display: flex;
|
|
33
|
+
place-items: center;
|
|
34
|
+
min-width: 320px;
|
|
35
|
+
min-height: 100vh;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
h1 {
|
|
39
|
+
font-size: 3.2em;
|
|
40
|
+
line-height: 1.1;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
button {
|
|
44
|
+
border-radius: 8px;
|
|
45
|
+
border: 1px solid transparent;
|
|
46
|
+
padding: 0.6em 1.2em;
|
|
47
|
+
font-size: 1em;
|
|
48
|
+
font-weight: 500;
|
|
49
|
+
font-family: inherit;
|
|
50
|
+
background-color: #1a1a1a;
|
|
51
|
+
cursor: pointer;
|
|
52
|
+
transition: border-color 0.25s;
|
|
53
|
+
}
|
|
54
|
+
button:hover {
|
|
55
|
+
border-color: #646cff;
|
|
56
|
+
}
|
|
57
|
+
button:focus,
|
|
58
|
+
button:focus-visible {
|
|
59
|
+
outline: 4px auto -webkit-focus-ring-color;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
@media (prefers-color-scheme: light) {
|
|
63
|
+
:root {
|
|
64
|
+
color: #213547;
|
|
65
|
+
background-color: #ffffff;
|
|
66
|
+
}
|
|
67
|
+
a:hover {
|
|
68
|
+
color: #747bff;
|
|
69
|
+
}
|
|
70
|
+
button {
|
|
71
|
+
background-color: #f9f9f9;
|
|
72
|
+
}
|
|
73
|
+
}
|
package/lib/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './components';
|
package/lib/index.js
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { type LexicalCommand } from 'lexical';
|
|
2
|
+
import { type ChatInlineProtocolConfig } from '../components/chat/components/ChatInline';
|
|
3
|
+
/**
|
|
4
|
+
* Lexical commands for selection preservation
|
|
5
|
+
*/
|
|
6
|
+
export declare const SAVE_SELECTION_COMMAND: LexicalCommand<null>;
|
|
7
|
+
export declare const RESTORE_SELECTION_COMMAND: LexicalCommand<null>;
|
|
8
|
+
/**
|
|
9
|
+
* Props for ChatInlinePlugin
|
|
10
|
+
*/
|
|
11
|
+
export interface ChatInlinePluginProps {
|
|
12
|
+
/** Protocol configuration for the AI agent */
|
|
13
|
+
protocol: ChatInlineProtocolConfig;
|
|
14
|
+
/** Optional: Container element for the portal (defaults to document.body) */
|
|
15
|
+
portalContainer?: HTMLElement;
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* ChatInlinePlugin - Floating AI toolbar for Lexical text selection.
|
|
19
|
+
*/
|
|
20
|
+
export declare function ChatInlinePlugin({ protocol, portalContainer, }: ChatInlinePluginProps): JSX.Element | null;
|
|
21
|
+
export default ChatInlinePlugin;
|