├── .env ├── .gitattributes ├── .github └── workflows │ └── docker-image.yml ├── .gitignore ├── .vscode └── extensions.json ├── Dockerfile ├── README.md ├── bun.lockb ├── components.json ├── docker-compose.yml ├── eslint.config.js ├── index.html ├── nginx.conf ├── package.json ├── postcss.config.js ├── public ├── env-config.js ├── favicon.ico ├── og-image.png └── placeholder.svg ├── src ├── App.css ├── App.tsx ├── components │ ├── ChatMessage.tsx │ ├── CodeBlock.tsx │ ├── CodePlayground.tsx │ ├── ThemeToggle.tsx │ ├── chat │ │ ├── ChatInput.tsx │ │ ├── ChatLayout.tsx │ │ ├── ChatMessages.tsx │ │ ├── ChatSidebar.tsx │ │ ├── CodeBlock.tsx │ │ ├── CodeBlockRenderer.tsx │ │ ├── ImageUpload.tsx │ │ ├── KaTeXConfig.ts │ │ ├── LaTeXBlock.tsx │ │ ├── MarkdownRenderer.tsx │ │ └── StyleProvider.tsx │ ├── playground │ │ ├── EditorHeader.tsx │ │ ├── PlaygroundOutput.tsx │ │ └── constants.ts │ └── ui │ │ ├── accordion.tsx │ │ ├── alert-dialog.tsx │ │ ├── alert.tsx │ │ ├── aspect-ratio.tsx │ │ ├── avatar.tsx │ │ ├── badge.tsx │ │ ├── breadcrumb.tsx │ │ ├── button.tsx │ │ ├── calendar.tsx │ │ ├── card.tsx │ │ ├── carousel.tsx │ │ ├── chart.tsx │ │ ├── checkbox.tsx │ │ ├── collapsible.tsx │ │ ├── command.tsx │ │ ├── context-menu.tsx │ │ ├── dialog.tsx │ │ ├── drawer.tsx │ │ ├── dropdown-menu.tsx │ │ ├── form.tsx │ │ ├── hover-card.tsx │ │ ├── input-otp.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── menubar.tsx │ │ ├── navigation-menu.tsx │ │ ├── pagination.tsx │ │ ├── popover.tsx │ │ ├── progress.tsx │ │ ├── radio-group.tsx │ │ ├── resizable.tsx │ │ ├── scroll-area.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── sheet.tsx │ │ ├── sidebar.tsx │ │ ├── skeleton.tsx │ │ ├── slider.tsx │ │ ├── sonner.tsx │ │ ├── switch.tsx │ │ ├── table.tsx │ │ ├── tabs.tsx │ │ ├── textarea.tsx │ │ ├── toast.tsx │ │ ├── toaster.tsx │ │ ├── toggle-group.tsx │ │ ├── toggle.tsx │ │ ├── tooltip.tsx │ │ └── use-toast.ts ├── config │ └── messages.ts ├── hooks │ ├── use-mobile.tsx │ ├── use-toast.ts │ ├── useChatSessions.ts │ ├── useMessageSender.ts │ ├── usePopoutWindow.ts │ └── useSpeechRecognition.ts ├── index.css ├── lib │ └── utils.ts ├── main.tsx ├── pages │ ├── Index.tsx │ ├── NotFound.tsx │ └── Playground.tsx ├── types │ ├── chat.ts │ └── window.d.ts ├── utils │ ├── apiResponseHandler.ts │ ├── codeExecutor.ts │ ├── fetchWithTimeout.ts │ ├── fileOperations.ts │ ├── fileUpload.ts │ ├── markdownConfig.ts │ ├── responseHandler.ts │ └── uuid.ts └── vite-env.d.ts ├── tailwind.config.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/.env -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/.github/workflows/docker-image.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/README.md -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/bun.lockb -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/components.json -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/index.html -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/nginx.conf -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/env-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/public/env-config.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/og-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/public/og-image.png -------------------------------------------------------------------------------- /public/placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/public/placeholder.svg -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/components/ChatMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/ChatMessage.tsx -------------------------------------------------------------------------------- /src/components/CodeBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/CodeBlock.tsx -------------------------------------------------------------------------------- /src/components/CodePlayground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/CodePlayground.tsx -------------------------------------------------------------------------------- /src/components/ThemeToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/ThemeToggle.tsx -------------------------------------------------------------------------------- /src/components/chat/ChatInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/chat/ChatInput.tsx -------------------------------------------------------------------------------- /src/components/chat/ChatLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/chat/ChatLayout.tsx -------------------------------------------------------------------------------- /src/components/chat/ChatMessages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/chat/ChatMessages.tsx -------------------------------------------------------------------------------- /src/components/chat/ChatSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/chat/ChatSidebar.tsx -------------------------------------------------------------------------------- /src/components/chat/CodeBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/chat/CodeBlock.tsx -------------------------------------------------------------------------------- /src/components/chat/CodeBlockRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/chat/CodeBlockRenderer.tsx -------------------------------------------------------------------------------- /src/components/chat/ImageUpload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/chat/ImageUpload.tsx -------------------------------------------------------------------------------- /src/components/chat/KaTeXConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/chat/KaTeXConfig.ts -------------------------------------------------------------------------------- /src/components/chat/LaTeXBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/chat/LaTeXBlock.tsx -------------------------------------------------------------------------------- /src/components/chat/MarkdownRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/chat/MarkdownRenderer.tsx -------------------------------------------------------------------------------- /src/components/chat/StyleProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/chat/StyleProvider.tsx -------------------------------------------------------------------------------- /src/components/playground/EditorHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/playground/EditorHeader.tsx -------------------------------------------------------------------------------- /src/components/playground/PlaygroundOutput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/playground/PlaygroundOutput.tsx -------------------------------------------------------------------------------- /src/components/playground/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/playground/constants.ts -------------------------------------------------------------------------------- /src/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/ui/accordion.tsx -------------------------------------------------------------------------------- /src/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/ui/alert.tsx -------------------------------------------------------------------------------- /src/components/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /src/components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/ui/calendar.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/ui/carousel.tsx -------------------------------------------------------------------------------- /src/components/ui/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/ui/chart.tsx -------------------------------------------------------------------------------- /src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /src/components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /src/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/ui/command.tsx -------------------------------------------------------------------------------- /src/components/ui/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/ui/context-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/ui/drawer.tsx -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/ui/form.tsx -------------------------------------------------------------------------------- /src/components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /src/components/ui/input-otp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/ui/input-otp.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/components/ui/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/ui/menubar.tsx -------------------------------------------------------------------------------- /src/components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/ui/pagination.tsx -------------------------------------------------------------------------------- /src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /src/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/ui/progress.tsx -------------------------------------------------------------------------------- /src/components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /src/components/ui/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/ui/resizable.tsx -------------------------------------------------------------------------------- /src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/ui/select.tsx -------------------------------------------------------------------------------- /src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /src/components/ui/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/ui/sidebar.tsx -------------------------------------------------------------------------------- /src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /src/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/ui/slider.tsx -------------------------------------------------------------------------------- /src/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/ui/sonner.tsx -------------------------------------------------------------------------------- /src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/ui/table.tsx -------------------------------------------------------------------------------- /src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /src/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/ui/toast.tsx -------------------------------------------------------------------------------- /src/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/ui/toaster.tsx -------------------------------------------------------------------------------- /src/components/ui/toggle-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/ui/toggle-group.tsx -------------------------------------------------------------------------------- /src/components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/ui/toggle.tsx -------------------------------------------------------------------------------- /src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /src/components/ui/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/components/ui/use-toast.ts -------------------------------------------------------------------------------- /src/config/messages.ts: -------------------------------------------------------------------------------- 1 | export const DEFAULT_WELCOME_MESSAGE = "Welcome to the chat!."; -------------------------------------------------------------------------------- /src/hooks/use-mobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/hooks/use-mobile.tsx -------------------------------------------------------------------------------- /src/hooks/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/hooks/use-toast.ts -------------------------------------------------------------------------------- /src/hooks/useChatSessions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/hooks/useChatSessions.ts -------------------------------------------------------------------------------- /src/hooks/useMessageSender.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/hooks/useMessageSender.ts -------------------------------------------------------------------------------- /src/hooks/usePopoutWindow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/hooks/usePopoutWindow.ts -------------------------------------------------------------------------------- /src/hooks/useSpeechRecognition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/hooks/useSpeechRecognition.ts -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/index.css -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/pages/Index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/pages/Index.tsx -------------------------------------------------------------------------------- /src/pages/NotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/pages/NotFound.tsx -------------------------------------------------------------------------------- /src/pages/Playground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/pages/Playground.tsx -------------------------------------------------------------------------------- /src/types/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/types/chat.ts -------------------------------------------------------------------------------- /src/types/window.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/types/window.d.ts -------------------------------------------------------------------------------- /src/utils/apiResponseHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/utils/apiResponseHandler.ts -------------------------------------------------------------------------------- /src/utils/codeExecutor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/utils/codeExecutor.ts -------------------------------------------------------------------------------- /src/utils/fetchWithTimeout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/utils/fetchWithTimeout.ts -------------------------------------------------------------------------------- /src/utils/fileOperations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/utils/fileOperations.ts -------------------------------------------------------------------------------- /src/utils/fileUpload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/utils/fileUpload.ts -------------------------------------------------------------------------------- /src/utils/markdownConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/utils/markdownConfig.ts -------------------------------------------------------------------------------- /src/utils/responseHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/utils/responseHandler.ts -------------------------------------------------------------------------------- /src/utils/uuid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/src/utils/uuid.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jimmartinquisitive/talkflow-n8n/HEAD/vite.config.ts --------------------------------------------------------------------------------