├── .gitignore ├── README.md ├── components.json ├── eslint.config.js ├── index.html ├── package.json ├── postcss.config.js ├── public └── vite.svg ├── src ├── App.tsx ├── assets │ └── react.svg ├── components │ ├── ChatMessage.tsx │ ├── ChatSidebar.tsx │ ├── ThemeProvider.tsx │ ├── ThoughtMessage.tsx │ └── ui │ │ ├── button.tsx │ │ ├── card.tsx │ │ ├── dialog.tsx │ │ ├── form.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── separator.tsx │ │ ├── sheet.tsx │ │ ├── sidebar.tsx │ │ ├── skeleton.tsx │ │ ├── textarea.tsx │ │ └── tooltip.tsx ├── hooks │ └── use-mobile.tsx ├── index.css ├── lib │ ├── dexie.ts │ └── utils.ts ├── main.tsx ├── pages │ └── ChatPage.tsx └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodevoid/local-ai-chat/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodevoid/local-ai-chat/HEAD/README.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodevoid/local-ai-chat/HEAD/components.json -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodevoid/local-ai-chat/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodevoid/local-ai-chat/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodevoid/local-ai-chat/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodevoid/local-ai-chat/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodevoid/local-ai-chat/HEAD/public/vite.svg -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodevoid/local-ai-chat/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodevoid/local-ai-chat/HEAD/src/assets/react.svg -------------------------------------------------------------------------------- /src/components/ChatMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodevoid/local-ai-chat/HEAD/src/components/ChatMessage.tsx -------------------------------------------------------------------------------- /src/components/ChatSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodevoid/local-ai-chat/HEAD/src/components/ChatSidebar.tsx -------------------------------------------------------------------------------- /src/components/ThemeProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodevoid/local-ai-chat/HEAD/src/components/ThemeProvider.tsx -------------------------------------------------------------------------------- /src/components/ThoughtMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodevoid/local-ai-chat/HEAD/src/components/ThoughtMessage.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodevoid/local-ai-chat/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodevoid/local-ai-chat/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodevoid/local-ai-chat/HEAD/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodevoid/local-ai-chat/HEAD/src/components/ui/form.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodevoid/local-ai-chat/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodevoid/local-ai-chat/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodevoid/local-ai-chat/HEAD/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodevoid/local-ai-chat/HEAD/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /src/components/ui/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodevoid/local-ai-chat/HEAD/src/components/ui/sidebar.tsx -------------------------------------------------------------------------------- /src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodevoid/local-ai-chat/HEAD/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodevoid/local-ai-chat/HEAD/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodevoid/local-ai-chat/HEAD/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /src/hooks/use-mobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodevoid/local-ai-chat/HEAD/src/hooks/use-mobile.tsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodevoid/local-ai-chat/HEAD/src/index.css -------------------------------------------------------------------------------- /src/lib/dexie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodevoid/local-ai-chat/HEAD/src/lib/dexie.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodevoid/local-ai-chat/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodevoid/local-ai-chat/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/pages/ChatPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodevoid/local-ai-chat/HEAD/src/pages/ChatPage.tsx -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodevoid/local-ai-chat/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodevoid/local-ai-chat/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodevoid/local-ai-chat/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodevoid/local-ai-chat/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theodevoid/local-ai-chat/HEAD/vite.config.ts --------------------------------------------------------------------------------