├── LICENSE ├── README.md ├── index.html ├── package.json ├── postcss.config.cjs ├── public └── vite.svg ├── src ├── App.tsx ├── assets │ └── icons │ │ ├── AboutIcon.tsx │ │ ├── ChatIcon.tsx │ │ ├── CopyIcon.tsx │ │ ├── CrossIcon.tsx │ │ ├── CrossIcon2.tsx │ │ ├── DeleteIcon.tsx │ │ ├── DownArrow.tsx │ │ ├── DownChevronArrow.tsx │ │ ├── EditIcon.tsx │ │ ├── EditIcon2.tsx │ │ ├── ExportIcon.tsx │ │ ├── HeartIcon.tsx │ │ ├── ImageIcon.tsx │ │ ├── LinkIcon.tsx │ │ ├── LogoutIcon.tsx │ │ ├── MarkdownIcon.tsx │ │ ├── MoonIcon.tsx │ │ ├── PdfIcon.tsx │ │ ├── PersonIcon.tsx │ │ ├── PlusIcon.tsx │ │ ├── RefreshIcon.tsx │ │ ├── SendIcon.tsx │ │ ├── SettingIcon.tsx │ │ ├── SpinnerIcon.tsx │ │ ├── SunIcon.tsx │ │ └── TickIcon.tsx ├── compoenets │ ├── Chat │ │ ├── Chat.tsx │ │ └── index.tsx │ └── Menu │ │ ├── ChatHistoryList.tsx │ │ ├── Menu.tsx │ │ ├── NewChat.tsx │ │ └── index.tsx ├── index.css ├── main.tsx └── vite-env.d.ts ├── tailwind.config.cjs ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/chatgpt-knowledge-base-chatbot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/chatgpt-knowledge-base-chatbot/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/chatgpt-knowledge-base-chatbot/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/chatgpt-knowledge-base-chatbot/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/chatgpt-knowledge-base-chatbot/HEAD/postcss.config.cjs -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/chatgpt-knowledge-base-chatbot/HEAD/public/vite.svg -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/chatgpt-knowledge-base-chatbot/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/assets/icons/AboutIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/chatgpt-knowledge-base-chatbot/HEAD/src/assets/icons/AboutIcon.tsx -------------------------------------------------------------------------------- /src/assets/icons/ChatIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/chatgpt-knowledge-base-chatbot/HEAD/src/assets/icons/ChatIcon.tsx -------------------------------------------------------------------------------- /src/assets/icons/CopyIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/chatgpt-knowledge-base-chatbot/HEAD/src/assets/icons/CopyIcon.tsx -------------------------------------------------------------------------------- /src/assets/icons/CrossIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/chatgpt-knowledge-base-chatbot/HEAD/src/assets/icons/CrossIcon.tsx -------------------------------------------------------------------------------- /src/assets/icons/CrossIcon2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/chatgpt-knowledge-base-chatbot/HEAD/src/assets/icons/CrossIcon2.tsx -------------------------------------------------------------------------------- /src/assets/icons/DeleteIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/chatgpt-knowledge-base-chatbot/HEAD/src/assets/icons/DeleteIcon.tsx -------------------------------------------------------------------------------- /src/assets/icons/DownArrow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/chatgpt-knowledge-base-chatbot/HEAD/src/assets/icons/DownArrow.tsx -------------------------------------------------------------------------------- /src/assets/icons/DownChevronArrow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/chatgpt-knowledge-base-chatbot/HEAD/src/assets/icons/DownChevronArrow.tsx -------------------------------------------------------------------------------- /src/assets/icons/EditIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/chatgpt-knowledge-base-chatbot/HEAD/src/assets/icons/EditIcon.tsx -------------------------------------------------------------------------------- /src/assets/icons/EditIcon2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/chatgpt-knowledge-base-chatbot/HEAD/src/assets/icons/EditIcon2.tsx -------------------------------------------------------------------------------- /src/assets/icons/ExportIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/chatgpt-knowledge-base-chatbot/HEAD/src/assets/icons/ExportIcon.tsx -------------------------------------------------------------------------------- /src/assets/icons/HeartIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/chatgpt-knowledge-base-chatbot/HEAD/src/assets/icons/HeartIcon.tsx -------------------------------------------------------------------------------- /src/assets/icons/ImageIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/chatgpt-knowledge-base-chatbot/HEAD/src/assets/icons/ImageIcon.tsx -------------------------------------------------------------------------------- /src/assets/icons/LinkIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/chatgpt-knowledge-base-chatbot/HEAD/src/assets/icons/LinkIcon.tsx -------------------------------------------------------------------------------- /src/assets/icons/LogoutIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/chatgpt-knowledge-base-chatbot/HEAD/src/assets/icons/LogoutIcon.tsx -------------------------------------------------------------------------------- /src/assets/icons/MarkdownIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/chatgpt-knowledge-base-chatbot/HEAD/src/assets/icons/MarkdownIcon.tsx -------------------------------------------------------------------------------- /src/assets/icons/MoonIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/chatgpt-knowledge-base-chatbot/HEAD/src/assets/icons/MoonIcon.tsx -------------------------------------------------------------------------------- /src/assets/icons/PdfIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/chatgpt-knowledge-base-chatbot/HEAD/src/assets/icons/PdfIcon.tsx -------------------------------------------------------------------------------- /src/assets/icons/PersonIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/chatgpt-knowledge-base-chatbot/HEAD/src/assets/icons/PersonIcon.tsx -------------------------------------------------------------------------------- /src/assets/icons/PlusIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/chatgpt-knowledge-base-chatbot/HEAD/src/assets/icons/PlusIcon.tsx -------------------------------------------------------------------------------- /src/assets/icons/RefreshIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/chatgpt-knowledge-base-chatbot/HEAD/src/assets/icons/RefreshIcon.tsx -------------------------------------------------------------------------------- /src/assets/icons/SendIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/chatgpt-knowledge-base-chatbot/HEAD/src/assets/icons/SendIcon.tsx -------------------------------------------------------------------------------- /src/assets/icons/SettingIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/chatgpt-knowledge-base-chatbot/HEAD/src/assets/icons/SettingIcon.tsx -------------------------------------------------------------------------------- /src/assets/icons/SpinnerIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/chatgpt-knowledge-base-chatbot/HEAD/src/assets/icons/SpinnerIcon.tsx -------------------------------------------------------------------------------- /src/assets/icons/SunIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/chatgpt-knowledge-base-chatbot/HEAD/src/assets/icons/SunIcon.tsx -------------------------------------------------------------------------------- /src/assets/icons/TickIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/chatgpt-knowledge-base-chatbot/HEAD/src/assets/icons/TickIcon.tsx -------------------------------------------------------------------------------- /src/compoenets/Chat/Chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/chatgpt-knowledge-base-chatbot/HEAD/src/compoenets/Chat/Chat.tsx -------------------------------------------------------------------------------- /src/compoenets/Chat/index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from './Chat'; 2 | -------------------------------------------------------------------------------- /src/compoenets/Menu/ChatHistoryList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/chatgpt-knowledge-base-chatbot/HEAD/src/compoenets/Menu/ChatHistoryList.tsx -------------------------------------------------------------------------------- /src/compoenets/Menu/Menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/chatgpt-knowledge-base-chatbot/HEAD/src/compoenets/Menu/Menu.tsx -------------------------------------------------------------------------------- /src/compoenets/Menu/NewChat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/chatgpt-knowledge-base-chatbot/HEAD/src/compoenets/Menu/NewChat.tsx -------------------------------------------------------------------------------- /src/compoenets/Menu/index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from './Menu'; 2 | -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/chatgpt-knowledge-base-chatbot/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/chatgpt-knowledge-base-chatbot/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/chatgpt-knowledge-base-chatbot/HEAD/tailwind.config.cjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/chatgpt-knowledge-base-chatbot/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/chatgpt-knowledge-base-chatbot/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zeeshanahmad4/chatgpt-knowledge-base-chatbot/HEAD/vite.config.ts --------------------------------------------------------------------------------