2026-01-14 20:30:28 -05:00
|
|
|
// Main Canvas Component
|
2026-01-14 20:00:35 -05:00
|
|
|
export { AtomizerCanvas } from './AtomizerCanvas';
|
feat(dashboard): Enhanced chat, spec management, and Claude integration
Backend:
- spec.py: New AtomizerSpec REST API endpoints
- spec_manager.py: SpecManager service for unified config
- interview_engine.py: Study creation interview logic
- claude.py: Enhanced Claude API with context
- optimization.py: Extended optimization endpoints
- context_builder.py, session_manager.py: Improved services
Frontend:
- Chat components: Enhanced message rendering, tool call cards
- Hooks: useClaudeCode, useSpecWebSocket, improved useChat
- Pages: Updated Dashboard, Analysis, Insights, Setup, Home
- Components: ParallelCoordinatesPlot, ParetoPlot improvements
- App.tsx: Route updates for canvas/studio
Infrastructure:
- vite.config.ts: Build configuration updates
- start/stop-dashboard.bat: Script improvements
2026-01-20 13:10:47 -05:00
|
|
|
export { SpecRenderer } from './SpecRenderer';
|
2026-01-14 20:30:28 -05:00
|
|
|
|
|
|
|
|
// Palette
|
2026-01-14 20:00:35 -05:00
|
|
|
export { NodePalette } from './palette/NodePalette';
|
2026-01-14 20:30:28 -05:00
|
|
|
|
|
|
|
|
// Panels
|
2026-01-14 20:00:35 -05:00
|
|
|
export { NodeConfigPanel } from './panels/NodeConfigPanel';
|
|
|
|
|
export { ValidationPanel } from './panels/ValidationPanel';
|
2026-01-14 20:18:46 -05:00
|
|
|
export { ExecuteDialog } from './panels/ExecuteDialog';
|
|
|
|
|
export { ChatPanel } from './panels/ChatPanel';
|
2026-01-14 20:30:28 -05:00
|
|
|
export { ConfigImporter } from './panels/ConfigImporter';
|
|
|
|
|
export { TemplateSelector } from './panels/TemplateSelector';
|
|
|
|
|
|
|
|
|
|
// Nodes
|
2026-01-14 20:00:35 -05:00
|
|
|
export * from './nodes';
|