├── .dockerignore ├── .env.example ├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── components.json ├── data ├── avatars │ ├── analytics-engineer-json-fixed.json │ ├── data-analyst-json-fixed.json │ ├── data-architect-json-fixed.json │ ├── data-engineer-json-fixed.json │ ├── data-governance-json-fixed.json │ ├── data-product-manager-json-fixed.json │ ├── data-scientist-json-fixed.json │ ├── ml-engineer-json-fixed.json │ └── pipeline-engineer-json-fixed.json └── n8n │ └── conversation │ └── 1_workflow.json ├── docker-compose.yml ├── n8n_workflow.txt ├── next-env.d.ts ├── next.config.js ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── prisma └── schema.prisma ├── pyn8n.txt ├── src ├── app │ ├── (main) │ │ ├── conversation │ │ │ └── page.tsx │ │ ├── execution │ │ │ └── page.tsx │ │ ├── history │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ └── settings │ │ │ └── page.tsx │ ├── api │ │ ├── claude │ │ │ └── validate │ │ │ │ └── route.ts │ │ ├── debug │ │ │ └── env │ │ │ │ └── route.ts │ │ ├── gemini │ │ │ └── validate │ │ │ │ └── route.ts │ │ ├── n8n │ │ │ ├── health │ │ │ │ ├── [type] │ │ │ │ │ ├── route.ts │ │ │ │ │ └── validate │ │ │ │ │ │ └── route.ts │ │ │ │ └── route.ts │ │ │ ├── route.ts │ │ │ └── workflows │ │ │ │ └── [type] │ │ │ │ └── route.ts │ │ ├── ollama │ │ │ └── validate │ │ │ │ └── route.ts │ │ ├── openai │ │ │ └── validate │ │ │ │ └── route.ts │ │ └── troubleshoot │ │ │ └── route.ts │ ├── landing │ │ ├── layout.tsx │ │ └── page.tsx │ ├── layout.tsx │ └── page.tsx ├── components │ ├── ConnectionSelector.tsx │ ├── ConnectionStatus.tsx │ ├── ConnectionStatusTooltip.tsx │ ├── N8nProvider.tsx │ ├── ThemeToggle.tsx │ ├── agents │ │ ├── AgentCard.tsx │ │ ├── AgentList.tsx │ │ └── AgentSelector.tsx │ ├── chat │ │ ├── ChatInput.tsx │ │ ├── ChatInterface.tsx │ │ └── ChatMessage.tsx │ ├── conversation │ │ ├── AgentStrategyPanel.tsx │ │ └── ConversationHistory.tsx │ ├── layout │ │ ├── AppLayout.tsx │ │ ├── ChatControlBar.tsx │ │ ├── LeftSidebar.tsx │ │ ├── MainContent.tsx │ │ ├── RightSidebar.tsx │ │ ├── Sidebar.tsx │ │ └── Topbar.tsx │ ├── modern-tooltip.tsx │ ├── strategies │ │ ├── StrategyCard.tsx │ │ └── StrategySelector.tsx │ ├── theme-provider.tsx │ └── ui │ │ ├── alert.tsx │ │ ├── avatar.tsx │ │ ├── badge.tsx │ │ ├── button.tsx │ │ ├── card.tsx │ │ ├── dropdown-menu.tsx │ │ ├── hover-card.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── radio-group.tsx │ │ ├── scroll-area.tsx │ │ ├── separator.tsx │ │ ├── sheet.tsx │ │ ├── sidebar.tsx │ │ ├── skeleton.tsx │ │ ├── switch.tsx │ │ ├── tabs.tsx │ │ ├── textarea.tsx │ │ ├── toast.tsx │ │ ├── toaster.tsx │ │ ├── toggle-group.tsx │ │ ├── toggle.tsx │ │ └── tooltip.tsx ├── hooks │ ├── use-mobile.tsx │ └── use-toast.ts ├── lib │ ├── agents │ │ ├── agentFactory.ts │ │ └── strategies.ts │ ├── db │ │ └── schema.ts │ ├── environment.ts │ └── utils.ts ├── services │ ├── agent │ │ ├── agentService.ts │ │ └── demoResponses.ts │ ├── chat │ │ └── chatService.ts │ ├── connectionValidator.ts │ ├── database │ │ └── historyService.ts │ └── n8nService.ts ├── store │ └── index.ts ├── styles │ └── globals.css └── types │ └── index.ts ├── start-dev.sh ├── tailwind.config.js └── tsconfig.json /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/.env.example -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/README.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/components.json -------------------------------------------------------------------------------- /data/avatars/analytics-engineer-json-fixed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/data/avatars/analytics-engineer-json-fixed.json -------------------------------------------------------------------------------- /data/avatars/data-analyst-json-fixed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/data/avatars/data-analyst-json-fixed.json -------------------------------------------------------------------------------- /data/avatars/data-architect-json-fixed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/data/avatars/data-architect-json-fixed.json -------------------------------------------------------------------------------- /data/avatars/data-engineer-json-fixed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/data/avatars/data-engineer-json-fixed.json -------------------------------------------------------------------------------- /data/avatars/data-governance-json-fixed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/data/avatars/data-governance-json-fixed.json -------------------------------------------------------------------------------- /data/avatars/data-product-manager-json-fixed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/data/avatars/data-product-manager-json-fixed.json -------------------------------------------------------------------------------- /data/avatars/data-scientist-json-fixed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/data/avatars/data-scientist-json-fixed.json -------------------------------------------------------------------------------- /data/avatars/ml-engineer-json-fixed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/data/avatars/ml-engineer-json-fixed.json -------------------------------------------------------------------------------- /data/avatars/pipeline-engineer-json-fixed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/data/avatars/pipeline-engineer-json-fixed.json -------------------------------------------------------------------------------- /data/n8n/conversation/1_workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/data/n8n/conversation/1_workflow.json -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /n8n_workflow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/n8n_workflow.txt -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/postcss.config.js -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /pyn8n.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/pyn8n.txt -------------------------------------------------------------------------------- /src/app/(main)/conversation/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/app/(main)/conversation/page.tsx -------------------------------------------------------------------------------- /src/app/(main)/execution/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/app/(main)/execution/page.tsx -------------------------------------------------------------------------------- /src/app/(main)/history/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/app/(main)/history/page.tsx -------------------------------------------------------------------------------- /src/app/(main)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/app/(main)/layout.tsx -------------------------------------------------------------------------------- /src/app/(main)/settings/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/app/(main)/settings/page.tsx -------------------------------------------------------------------------------- /src/app/api/claude/validate/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/app/api/claude/validate/route.ts -------------------------------------------------------------------------------- /src/app/api/debug/env/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/app/api/debug/env/route.ts -------------------------------------------------------------------------------- /src/app/api/gemini/validate/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/app/api/gemini/validate/route.ts -------------------------------------------------------------------------------- /src/app/api/n8n/health/[type]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/app/api/n8n/health/[type]/route.ts -------------------------------------------------------------------------------- /src/app/api/n8n/health/[type]/validate/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/app/api/n8n/health/[type]/validate/route.ts -------------------------------------------------------------------------------- /src/app/api/n8n/health/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/app/api/n8n/health/route.ts -------------------------------------------------------------------------------- /src/app/api/n8n/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/app/api/n8n/route.ts -------------------------------------------------------------------------------- /src/app/api/n8n/workflows/[type]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/app/api/n8n/workflows/[type]/route.ts -------------------------------------------------------------------------------- /src/app/api/ollama/validate/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/app/api/ollama/validate/route.ts -------------------------------------------------------------------------------- /src/app/api/openai/validate/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/app/api/openai/validate/route.ts -------------------------------------------------------------------------------- /src/app/api/troubleshoot/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/app/api/troubleshoot/route.ts -------------------------------------------------------------------------------- /src/app/landing/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/app/landing/layout.tsx -------------------------------------------------------------------------------- /src/app/landing/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/app/landing/page.tsx -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/components/ConnectionSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/components/ConnectionSelector.tsx -------------------------------------------------------------------------------- /src/components/ConnectionStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/components/ConnectionStatus.tsx -------------------------------------------------------------------------------- /src/components/ConnectionStatusTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/components/ConnectionStatusTooltip.tsx -------------------------------------------------------------------------------- /src/components/N8nProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/components/N8nProvider.tsx -------------------------------------------------------------------------------- /src/components/ThemeToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/components/ThemeToggle.tsx -------------------------------------------------------------------------------- /src/components/agents/AgentCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/components/agents/AgentCard.tsx -------------------------------------------------------------------------------- /src/components/agents/AgentList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/components/agents/AgentList.tsx -------------------------------------------------------------------------------- /src/components/agents/AgentSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/components/agents/AgentSelector.tsx -------------------------------------------------------------------------------- /src/components/chat/ChatInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/components/chat/ChatInput.tsx -------------------------------------------------------------------------------- /src/components/chat/ChatInterface.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/components/chat/ChatInterface.tsx -------------------------------------------------------------------------------- /src/components/chat/ChatMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/components/chat/ChatMessage.tsx -------------------------------------------------------------------------------- /src/components/conversation/AgentStrategyPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/components/conversation/AgentStrategyPanel.tsx -------------------------------------------------------------------------------- /src/components/conversation/ConversationHistory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/components/conversation/ConversationHistory.tsx -------------------------------------------------------------------------------- /src/components/layout/AppLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/components/layout/AppLayout.tsx -------------------------------------------------------------------------------- /src/components/layout/ChatControlBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/components/layout/ChatControlBar.tsx -------------------------------------------------------------------------------- /src/components/layout/LeftSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/components/layout/LeftSidebar.tsx -------------------------------------------------------------------------------- /src/components/layout/MainContent.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/layout/RightSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/components/layout/RightSidebar.tsx -------------------------------------------------------------------------------- /src/components/layout/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/components/layout/Sidebar.tsx -------------------------------------------------------------------------------- /src/components/layout/Topbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/components/layout/Topbar.tsx -------------------------------------------------------------------------------- /src/components/modern-tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/components/modern-tooltip.tsx -------------------------------------------------------------------------------- /src/components/strategies/StrategyCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/components/strategies/StrategyCard.tsx -------------------------------------------------------------------------------- /src/components/strategies/StrategySelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/components/strategies/StrategySelector.tsx -------------------------------------------------------------------------------- /src/components/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/components/theme-provider.tsx -------------------------------------------------------------------------------- /src/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/components/ui/alert.tsx -------------------------------------------------------------------------------- /src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /src/components/ui/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/components/ui/sidebar.tsx -------------------------------------------------------------------------------- /src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /src/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/components/ui/toast.tsx -------------------------------------------------------------------------------- /src/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/components/ui/toaster.tsx -------------------------------------------------------------------------------- /src/components/ui/toggle-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/components/ui/toggle-group.tsx -------------------------------------------------------------------------------- /src/components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/components/ui/toggle.tsx -------------------------------------------------------------------------------- /src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /src/hooks/use-mobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/hooks/use-mobile.tsx -------------------------------------------------------------------------------- /src/hooks/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/hooks/use-toast.ts -------------------------------------------------------------------------------- /src/lib/agents/agentFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/lib/agents/agentFactory.ts -------------------------------------------------------------------------------- /src/lib/agents/strategies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/lib/agents/strategies.ts -------------------------------------------------------------------------------- /src/lib/db/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/lib/db/schema.ts -------------------------------------------------------------------------------- /src/lib/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/lib/environment.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/services/agent/agentService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/services/agent/agentService.ts -------------------------------------------------------------------------------- /src/services/agent/demoResponses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/services/agent/demoResponses.ts -------------------------------------------------------------------------------- /src/services/chat/chatService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/services/chat/chatService.ts -------------------------------------------------------------------------------- /src/services/connectionValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/services/connectionValidator.ts -------------------------------------------------------------------------------- /src/services/database/historyService.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/services/n8nService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/services/n8nService.ts -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/store/index.ts -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /start-dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/start-dev.sh -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HotTechStack/dataagents/HEAD/tsconfig.json --------------------------------------------------------------------------------