udi-yac 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +373 -0
- package/dist/app/ErrorBoundary.d.ts +18 -0
- package/dist/app/UDIChat.d.ts +3 -0
- package/dist/app/UDIChatConfig.d.ts +23 -0
- package/dist/app/UDIChatContext.d.ts +26 -0
- package/dist/app/validateConfig.d.ts +14 -0
- package/dist/app/validateConfig.test.d.ts +1 -0
- package/dist/assets/domainWorker-Cd9KoNXV.js +16 -0
- package/dist/ce-entry-C4ngOj0B.js +42577 -0
- package/dist/components/ui/badge.d.ts +7 -0
- package/dist/components/ui/button.d.ts +8 -0
- package/dist/components/ui/card.d.ts +11 -0
- package/dist/components/ui/checkbox.d.ts +3 -0
- package/dist/components/ui/dialog.d.ts +17 -0
- package/dist/components/ui/dropdown-menu.d.ts +29 -0
- package/dist/components/ui/input.d.ts +3 -0
- package/dist/components/ui/label.d.ts +3 -0
- package/dist/components/ui/scroll-area.d.ts +4 -0
- package/dist/components/ui/select.d.ts +15 -0
- package/dist/components/ui/separator.d.ts +3 -0
- package/dist/components/ui/slider.d.ts +3 -0
- package/dist/components/ui/switch.d.ts +5 -0
- package/dist/components/ui/tabs.d.ts +10 -0
- package/dist/components/ui/textarea.d.ts +3 -0
- package/dist/components/ui/tooltip.d.ts +6 -0
- package/dist/data/hubmap_2025-05-05/datapackage_udi.json +19606 -0
- package/dist/data/hubmap_2025-05-05/datasets.csv +6324 -0
- package/dist/data/hubmap_2025-05-05/datasets.tsv +6324 -0
- package/dist/data/hubmap_2025-05-05/donors.csv +433 -0
- package/dist/data/hubmap_2025-05-05/donors.tsv +433 -0
- package/dist/data/hubmap_2025-05-05/samples.csv +4490 -0
- package/dist/data/hubmap_2025-05-05/samples.tsv +4490 -0
- package/dist/data/hubmap_api/datapackage.json +14110 -0
- package/dist/data/readme.md +41 -0
- package/dist/favicon.svg +1 -0
- package/dist/features/chat/api/completions.d.ts +12 -0
- package/dist/features/chat/components/ApiKeyInput.d.ts +5 -0
- package/dist/features/chat/components/ChatHeaderBar.d.ts +19 -0
- package/dist/features/chat/components/ChatInput.d.ts +7 -0
- package/dist/features/chat/components/ChatPanel.d.ts +13 -0
- package/dist/features/chat/components/ClosedVisualizationsPanel.d.ts +6 -0
- package/dist/features/chat/components/ConversationList.d.ts +1 -0
- package/dist/features/chat/components/DebugToggleSection.d.ts +13 -0
- package/dist/features/chat/components/MessageBubble.d.ts +8 -0
- package/dist/features/chat/components/MessageList.d.ts +7 -0
- package/dist/features/chat/hooks/useChatApi.d.ts +6 -0
- package/dist/features/chat/hooks/useDebugExports.d.ts +11 -0
- package/dist/features/chat/hooks/useExamplePrompts.d.ts +7 -0
- package/dist/features/chat/hooks/useResetHandlers.d.ts +8 -0
- package/dist/features/chat/index.d.ts +9 -0
- package/dist/features/chat/stores/conversationStore.d.ts +10 -0
- package/dist/features/chat/stores/conversationStore.test.d.ts +1 -0
- package/dist/features/dashboard/components/DashboardCard.d.ts +9 -0
- package/dist/features/dashboard/components/DashboardPanel.d.ts +1 -0
- package/dist/features/dashboard/components/DataCounts.d.ts +1 -0
- package/dist/features/dashboard/components/DownloadButton.d.ts +1 -0
- package/dist/features/dashboard/components/FilterToolbar.d.ts +1 -0
- package/dist/features/dashboard/components/VizTweakComponent.d.ts +8 -0
- package/dist/features/dashboard/components/VizTweakComponent.types.d.ts +20 -0
- package/dist/features/dashboard/components/WelcomeSplash.d.ts +1 -0
- package/dist/features/dashboard/index.d.ts +10 -0
- package/dist/features/dashboard/stores/dashboardStore.d.ts +70 -0
- package/dist/features/dashboard/stores/dashboardStore.test.d.ts +1 -0
- package/dist/features/dashboard/stores/dataFiltersStore.d.ts +34 -0
- package/dist/features/dashboard/stores/dataFiltersStore.test.d.ts +1 -0
- package/dist/features/dashboard/stores/memoryBankStore.d.ts +8 -0
- package/dist/features/dashboard/stores/memoryBankStore.test.d.ts +1 -0
- package/dist/features/dashboard/stores/selectionsStore.d.ts +7 -0
- package/dist/features/dashboard/stores/selectionsStore.test.d.ts +1 -0
- package/dist/features/data-package/index.d.ts +7 -0
- package/dist/features/data-package/stores/dataPackageStore.d.ts +25 -0
- package/dist/features/data-package/stores/dataPackageStore.test.d.ts +1 -0
- package/dist/features/data-package/types.d.ts +27 -0
- package/dist/features/data-package/utils/joinDataPath.d.ts +7 -0
- package/dist/features/data-package/utils/joinDataPath.test.d.ts +1 -0
- package/dist/features/data-package/utils/structuredTextParser.d.ts +7 -0
- package/dist/features/data-package/utils/structuredTextParser.test.d.ts +1 -0
- package/dist/features/data-package/workers/domainWorker.d.ts +13 -0
- package/dist/features/tool-calls/components/ClarifyVariable.d.ts +6 -0
- package/dist/features/tool-calls/components/FilterComponent.d.ts +9 -0
- package/dist/features/tool-calls/components/FreeTextExplain.d.ts +2 -0
- package/dist/features/tool-calls/components/IntervalFilterComponent.d.ts +9 -0
- package/dist/features/tool-calls/components/PointFilterComponent.d.ts +8 -0
- package/dist/features/tool-calls/components/RebuffNotice.d.ts +7 -0
- package/dist/features/tool-calls/components/ToolCallRenderer.d.ts +11 -0
- package/dist/features/tool-calls/components/VisualizationCard.d.ts +10 -0
- package/dist/features/tool-calls/index.d.ts +6 -0
- package/dist/features/tool-calls/types.d.ts +52 -0
- package/dist/icons.svg +24 -0
- package/dist/images/yac-mascot.svg +22 -0
- package/dist/index.d.ts +5 -0
- package/dist/lib/utils.d.ts +2 -0
- package/dist/stores/globalStore.d.ts +6 -0
- package/dist/stores/globalStore.test.d.ts +1 -0
- package/dist/test/setup.d.ts +0 -0
- package/dist/types/dataPackage.d.ts +64 -0
- package/dist/types/messages.d.ts +24 -0
- package/dist/udi-yac.css +3 -0
- package/dist/udi-yac.js +25877 -0
- package/dist/utils/specMutations.d.ts +45 -0
- package/dist/utils/specMutations.test.d.ts +1 -0
- package/package.json +110 -0
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.