├── .gitignore ├── README.md ├── eslint.config.js ├── index.html ├── package.json ├── postcss.config.js ├── public ├── _redirects ├── assets │ ├── AI_Clinical_Notes_icon.png │ ├── AI_Doctor_icon.png │ ├── AI_Prompt_Optimizer_icon.png │ ├── AI_Researcher_icon.png │ ├── AI_Stock_Predictor_icon.png │ ├── Add_your_own_icon.png │ └── react.svg ├── icons │ ├── clinic.svg │ ├── doctor.svg │ ├── lawyer.svg │ ├── own-promt.svg │ ├── promt.svg │ ├── researcher.svg │ └── stock.svg ├── images │ ├── avatar.png │ ├── logo1.svg │ └── logo2.svg ├── logo.png └── vite.svg ├── src ├── App.css ├── App.tsx ├── assets │ └── react.svg ├── components │ ├── auth │ │ └── signin-modal.tsx │ ├── chats │ │ ├── bot-message.tsx │ │ ├── chat-input.tsx │ │ ├── chat-list.tsx │ │ ├── chat-messages.tsx │ │ ├── serach-chats.tsx │ │ └── user-message.tsx │ ├── customModal.tsx │ ├── header.tsx │ ├── icons.tsx │ ├── logo.tsx │ ├── primitives.ts │ ├── services │ │ └── services-sidebar-btn.tsx │ ├── setting │ │ ├── APIs.tsx │ │ ├── general.tsx │ │ ├── renderTableCell.tsx │ │ └── security.tsx │ ├── sidebar.tsx │ ├── theme-switch.tsx │ ├── tootip │ │ └── tooltip.tsx │ └── user │ │ └── profile.tsx ├── config │ └── site.ts ├── contexts │ ├── ArchiveContext.tsx │ └── AuthContext.tsx ├── hooks │ ├── use-archive.ts │ ├── use-auth.ts │ ├── use-speech2text.tsx │ └── use-theme.ts ├── html2pdf.d.ts ├── index.css ├── layouts │ └── default.tsx ├── main.tsx ├── pages │ ├── about.tsx │ ├── activate-account.tsx │ ├── blog.tsx │ ├── chat.tsx │ ├── docs.tsx │ ├── index.tsx │ ├── pricing.tsx │ ├── profile.tsx │ ├── setting.tsx │ └── upgradepage.tsx ├── provider.tsx ├── services │ ├── dispatch │ │ ├── chat-dispatch.ts │ │ └── user-dispatch.ts │ ├── service.ts │ └── session.ts ├── store │ ├── actions │ │ └── chatActions.ts │ ├── hooks.ts │ ├── index.ts │ └── slices │ │ └── chatSlice.ts ├── styles │ └── globals.css ├── types │ └── index.ts ├── utils │ ├── PDFdocument.tsx │ └── index.tsx └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node copy.json ├── tsconfig.node.json ├── tsconfig.node.tsbuildinfo ├── vercel.json ├── vite.config.d.ts ├── vite.config.js └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/public/_redirects -------------------------------------------------------------------------------- /public/assets/AI_Clinical_Notes_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/public/assets/AI_Clinical_Notes_icon.png -------------------------------------------------------------------------------- /public/assets/AI_Doctor_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/public/assets/AI_Doctor_icon.png -------------------------------------------------------------------------------- /public/assets/AI_Prompt_Optimizer_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/public/assets/AI_Prompt_Optimizer_icon.png -------------------------------------------------------------------------------- /public/assets/AI_Researcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/public/assets/AI_Researcher_icon.png -------------------------------------------------------------------------------- /public/assets/AI_Stock_Predictor_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/public/assets/AI_Stock_Predictor_icon.png -------------------------------------------------------------------------------- /public/assets/Add_your_own_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/public/assets/Add_your_own_icon.png -------------------------------------------------------------------------------- /public/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/public/assets/react.svg -------------------------------------------------------------------------------- /public/icons/clinic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/public/icons/clinic.svg -------------------------------------------------------------------------------- /public/icons/doctor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/public/icons/doctor.svg -------------------------------------------------------------------------------- /public/icons/lawyer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/public/icons/lawyer.svg -------------------------------------------------------------------------------- /public/icons/own-promt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/public/icons/own-promt.svg -------------------------------------------------------------------------------- /public/icons/promt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/public/icons/promt.svg -------------------------------------------------------------------------------- /public/icons/researcher.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/public/icons/researcher.svg -------------------------------------------------------------------------------- /public/icons/stock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/public/icons/stock.svg -------------------------------------------------------------------------------- /public/images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/public/images/avatar.png -------------------------------------------------------------------------------- /public/images/logo1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/public/images/logo1.svg -------------------------------------------------------------------------------- /public/images/logo2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/public/images/logo2.svg -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/public/vite.svg -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/assets/react.svg -------------------------------------------------------------------------------- /src/components/auth/signin-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/components/auth/signin-modal.tsx -------------------------------------------------------------------------------- /src/components/chats/bot-message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/components/chats/bot-message.tsx -------------------------------------------------------------------------------- /src/components/chats/chat-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/components/chats/chat-input.tsx -------------------------------------------------------------------------------- /src/components/chats/chat-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/components/chats/chat-list.tsx -------------------------------------------------------------------------------- /src/components/chats/chat-messages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/components/chats/chat-messages.tsx -------------------------------------------------------------------------------- /src/components/chats/serach-chats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/components/chats/serach-chats.tsx -------------------------------------------------------------------------------- /src/components/chats/user-message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/components/chats/user-message.tsx -------------------------------------------------------------------------------- /src/components/customModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/components/customModal.tsx -------------------------------------------------------------------------------- /src/components/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/components/header.tsx -------------------------------------------------------------------------------- /src/components/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/components/icons.tsx -------------------------------------------------------------------------------- /src/components/logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/components/logo.tsx -------------------------------------------------------------------------------- /src/components/primitives.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/components/primitives.ts -------------------------------------------------------------------------------- /src/components/services/services-sidebar-btn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/components/services/services-sidebar-btn.tsx -------------------------------------------------------------------------------- /src/components/setting/APIs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/components/setting/APIs.tsx -------------------------------------------------------------------------------- /src/components/setting/general.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/components/setting/general.tsx -------------------------------------------------------------------------------- /src/components/setting/renderTableCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/components/setting/renderTableCell.tsx -------------------------------------------------------------------------------- /src/components/setting/security.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/components/setting/security.tsx -------------------------------------------------------------------------------- /src/components/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/components/sidebar.tsx -------------------------------------------------------------------------------- /src/components/theme-switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/components/theme-switch.tsx -------------------------------------------------------------------------------- /src/components/tootip/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/components/tootip/tooltip.tsx -------------------------------------------------------------------------------- /src/components/user/profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/components/user/profile.tsx -------------------------------------------------------------------------------- /src/config/site.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/config/site.ts -------------------------------------------------------------------------------- /src/contexts/ArchiveContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/contexts/ArchiveContext.tsx -------------------------------------------------------------------------------- /src/contexts/AuthContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/contexts/AuthContext.tsx -------------------------------------------------------------------------------- /src/hooks/use-archive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/hooks/use-archive.ts -------------------------------------------------------------------------------- /src/hooks/use-auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/hooks/use-auth.ts -------------------------------------------------------------------------------- /src/hooks/use-speech2text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/hooks/use-speech2text.tsx -------------------------------------------------------------------------------- /src/hooks/use-theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/hooks/use-theme.ts -------------------------------------------------------------------------------- /src/html2pdf.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/html2pdf.d.ts -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/index.css -------------------------------------------------------------------------------- /src/layouts/default.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/layouts/default.tsx -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/pages/about.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/pages/about.tsx -------------------------------------------------------------------------------- /src/pages/activate-account.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/pages/activate-account.tsx -------------------------------------------------------------------------------- /src/pages/blog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/pages/blog.tsx -------------------------------------------------------------------------------- /src/pages/chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/pages/chat.tsx -------------------------------------------------------------------------------- /src/pages/docs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/pages/docs.tsx -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/pages/pricing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/pages/pricing.tsx -------------------------------------------------------------------------------- /src/pages/profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/pages/profile.tsx -------------------------------------------------------------------------------- /src/pages/setting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/pages/setting.tsx -------------------------------------------------------------------------------- /src/pages/upgradepage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/pages/upgradepage.tsx -------------------------------------------------------------------------------- /src/provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/provider.tsx -------------------------------------------------------------------------------- /src/services/dispatch/chat-dispatch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/services/dispatch/chat-dispatch.ts -------------------------------------------------------------------------------- /src/services/dispatch/user-dispatch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/services/dispatch/user-dispatch.ts -------------------------------------------------------------------------------- /src/services/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/services/service.ts -------------------------------------------------------------------------------- /src/services/session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/services/session.ts -------------------------------------------------------------------------------- /src/store/actions/chatActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/store/actions/chatActions.ts -------------------------------------------------------------------------------- /src/store/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/store/hooks.ts -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/store/index.ts -------------------------------------------------------------------------------- /src/store/slices/chatSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/store/slices/chatSlice.ts -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/utils/PDFdocument.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/utils/PDFdocument.tsx -------------------------------------------------------------------------------- /src/utils/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/src/utils/index.tsx -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node copy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/tsconfig.node copy.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /tsconfig.node.tsbuildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/tsconfig.node.tsbuildinfo -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/vercel.json -------------------------------------------------------------------------------- /vite.config.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/vite.config.d.ts -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/vite.config.js -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeByStella/AI-chatbot/HEAD/vite.config.ts --------------------------------------------------------------------------------