├── .gitignore ├── README.md ├── library ├── assistant.js └── index.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | .env -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/its-hafsa04/Chatbot-AI/HEAD/README.md -------------------------------------------------------------------------------- /library/assistant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/its-hafsa04/Chatbot-AI/HEAD/library/assistant.js -------------------------------------------------------------------------------- /library/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/its-hafsa04/Chatbot-AI/HEAD/library/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/its-hafsa04/Chatbot-AI/HEAD/package.json --------------------------------------------------------------------------------