├── .gitignore ├── README.md ├── client ├── .env ├── .gitignore ├── index.html ├── package-lock.json ├── package.json ├── postcss.config.cjs ├── src │ ├── App.css │ ├── App.jsx │ ├── assets │ │ ├── deleteicon.png │ │ ├── functions.js │ │ ├── infoicon.png │ │ ├── react.svg │ │ └── sendicon.png │ ├── components │ │ ├── Auth │ │ │ ├── Auth.jsx │ │ │ └── styles.js │ │ ├── ChatContext.jsx │ │ ├── Navbar │ │ │ ├── Navbar.jsx │ │ │ └── styles.js │ │ ├── OpenIcon.jsx │ │ ├── Sidebar.jsx │ │ └── Welcome.jsx │ ├── constants │ │ └── actionTypes.js │ ├── index.css │ ├── main.jsx │ └── reducers │ │ ├── auth.js │ │ └── index.js ├── tailwind.config.cjs └── vite.config.js └── server ├── .env ├── .gitignore ├── db.json ├── dbFunctions.js ├── index.js ├── package-lock.json └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaustoNisida/Chatbot-Long-Short-Term-Memory/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /client/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaustoNisida/Chatbot-Long-Short-Term-Memory/HEAD/client/.env -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaustoNisida/Chatbot-Long-Short-Term-Memory/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaustoNisida/Chatbot-Long-Short-Term-Memory/HEAD/client/index.html -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaustoNisida/Chatbot-Long-Short-Term-Memory/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaustoNisida/Chatbot-Long-Short-Term-Memory/HEAD/client/package.json -------------------------------------------------------------------------------- /client/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaustoNisida/Chatbot-Long-Short-Term-Memory/HEAD/client/postcss.config.cjs -------------------------------------------------------------------------------- /client/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaustoNisida/Chatbot-Long-Short-Term-Memory/HEAD/client/src/App.css -------------------------------------------------------------------------------- /client/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaustoNisida/Chatbot-Long-Short-Term-Memory/HEAD/client/src/App.jsx -------------------------------------------------------------------------------- /client/src/assets/deleteicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaustoNisida/Chatbot-Long-Short-Term-Memory/HEAD/client/src/assets/deleteicon.png -------------------------------------------------------------------------------- /client/src/assets/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaustoNisida/Chatbot-Long-Short-Term-Memory/HEAD/client/src/assets/functions.js -------------------------------------------------------------------------------- /client/src/assets/infoicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaustoNisida/Chatbot-Long-Short-Term-Memory/HEAD/client/src/assets/infoicon.png -------------------------------------------------------------------------------- /client/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaustoNisida/Chatbot-Long-Short-Term-Memory/HEAD/client/src/assets/react.svg -------------------------------------------------------------------------------- /client/src/assets/sendicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaustoNisida/Chatbot-Long-Short-Term-Memory/HEAD/client/src/assets/sendicon.png -------------------------------------------------------------------------------- /client/src/components/Auth/Auth.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaustoNisida/Chatbot-Long-Short-Term-Memory/HEAD/client/src/components/Auth/Auth.jsx -------------------------------------------------------------------------------- /client/src/components/Auth/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaustoNisida/Chatbot-Long-Short-Term-Memory/HEAD/client/src/components/Auth/styles.js -------------------------------------------------------------------------------- /client/src/components/ChatContext.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaustoNisida/Chatbot-Long-Short-Term-Memory/HEAD/client/src/components/ChatContext.jsx -------------------------------------------------------------------------------- /client/src/components/Navbar/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaustoNisida/Chatbot-Long-Short-Term-Memory/HEAD/client/src/components/Navbar/Navbar.jsx -------------------------------------------------------------------------------- /client/src/components/Navbar/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaustoNisida/Chatbot-Long-Short-Term-Memory/HEAD/client/src/components/Navbar/styles.js -------------------------------------------------------------------------------- /client/src/components/OpenIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaustoNisida/Chatbot-Long-Short-Term-Memory/HEAD/client/src/components/OpenIcon.jsx -------------------------------------------------------------------------------- /client/src/components/Sidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaustoNisida/Chatbot-Long-Short-Term-Memory/HEAD/client/src/components/Sidebar.jsx -------------------------------------------------------------------------------- /client/src/components/Welcome.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaustoNisida/Chatbot-Long-Short-Term-Memory/HEAD/client/src/components/Welcome.jsx -------------------------------------------------------------------------------- /client/src/constants/actionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaustoNisida/Chatbot-Long-Short-Term-Memory/HEAD/client/src/constants/actionTypes.js -------------------------------------------------------------------------------- /client/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaustoNisida/Chatbot-Long-Short-Term-Memory/HEAD/client/src/index.css -------------------------------------------------------------------------------- /client/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaustoNisida/Chatbot-Long-Short-Term-Memory/HEAD/client/src/main.jsx -------------------------------------------------------------------------------- /client/src/reducers/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaustoNisida/Chatbot-Long-Short-Term-Memory/HEAD/client/src/reducers/auth.js -------------------------------------------------------------------------------- /client/src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaustoNisida/Chatbot-Long-Short-Term-Memory/HEAD/client/src/reducers/index.js -------------------------------------------------------------------------------- /client/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaustoNisida/Chatbot-Long-Short-Term-Memory/HEAD/client/tailwind.config.cjs -------------------------------------------------------------------------------- /client/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaustoNisida/Chatbot-Long-Short-Term-Memory/HEAD/client/vite.config.js -------------------------------------------------------------------------------- /server/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaustoNisida/Chatbot-Long-Short-Term-Memory/HEAD/server/.env -------------------------------------------------------------------------------- /server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaustoNisida/Chatbot-Long-Short-Term-Memory/HEAD/server/.gitignore -------------------------------------------------------------------------------- /server/db.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /server/dbFunctions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaustoNisida/Chatbot-Long-Short-Term-Memory/HEAD/server/dbFunctions.js -------------------------------------------------------------------------------- /server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaustoNisida/Chatbot-Long-Short-Term-Memory/HEAD/server/index.js -------------------------------------------------------------------------------- /server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaustoNisida/Chatbot-Long-Short-Term-Memory/HEAD/server/package-lock.json -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FaustoNisida/Chatbot-Long-Short-Term-Memory/HEAD/server/package.json --------------------------------------------------------------------------------