├── .github └── workflows │ └── ci.yml ├── .gitignore ├── MANIFEST.in ├── README.md ├── erpnext_copilot ├── __init__.py ├── chat_bot_apis │ ├── bot_api_router.py │ ├── get_doctype_json.py │ ├── get_doctype_structure.py │ ├── sales_person_helper.py │ └── test_json.py ├── config │ ├── __init__.py │ ├── desktop.py │ └── docs.py ├── erpnext_copilot │ └── __init__.py ├── hooks.py ├── modules.txt ├── patches.txt ├── public │ ├── .gitkeep │ └── erpnextcopilot │ │ ├── assets │ │ ├── index-04490b11.css │ │ └── index-b22bb35f.js │ │ ├── bot.png │ │ ├── index.html │ │ └── vite.svg ├── templates │ ├── __init__.py │ └── pages │ │ └── __init__.py └── www │ └── erpnextcopilot.html ├── erpnextcopilot ├── .eslintrc.cjs ├── .gitignore ├── README.md ├── index.html ├── package.json ├── proxyOptions.js ├── public │ ├── bot.png │ └── vite.svg ├── src │ ├── App.css │ ├── App.jsx │ ├── Context │ │ └── UserContext.jsx │ ├── Home │ │ ├── Component │ │ │ ├── ChatView.jsx │ │ │ ├── form │ │ │ │ ├── ChildLinkField.jsx │ │ │ │ ├── DynamicFormNew.jsx │ │ │ │ ├── LinkField.jsx │ │ │ │ └── TableDemoNew.jsx │ │ │ ├── message │ │ │ │ ├── CopyToClipboardButton.jsx │ │ │ │ ├── DynamicMessage.jsx │ │ │ │ ├── DynamicMessageBubble.jsx │ │ │ │ ├── DynamicMessageRenderer.jsx │ │ │ │ └── MessageLoadingSkeletonText.jsx │ │ │ └── views │ │ │ │ ├── ChartRenderer.jsx │ │ │ │ └── TableRenderer.jsx │ │ └── index.jsx │ ├── Login │ │ └── index.jsx │ ├── assets │ │ ├── bot.png │ │ └── react.svg │ ├── common │ │ └── Alert.jsx │ ├── index.css │ ├── main.jsx │ └── utils │ │ └── protectedRoutes.jsx ├── vite.config.js └── yarn.lock ├── license.txt ├── package.json ├── requirements.txt └── setup.py /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhilam-Inc/ERPNext-CoPilot/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhilam-Inc/ERPNext-CoPilot/HEAD/.gitignore -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhilam-Inc/ERPNext-CoPilot/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhilam-Inc/ERPNext-CoPilot/HEAD/README.md -------------------------------------------------------------------------------- /erpnext_copilot/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | __version__ = '0.0.1' 3 | 4 | -------------------------------------------------------------------------------- /erpnext_copilot/chat_bot_apis/bot_api_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhilam-Inc/ERPNext-CoPilot/HEAD/erpnext_copilot/chat_bot_apis/bot_api_router.py -------------------------------------------------------------------------------- /erpnext_copilot/chat_bot_apis/get_doctype_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhilam-Inc/ERPNext-CoPilot/HEAD/erpnext_copilot/chat_bot_apis/get_doctype_json.py -------------------------------------------------------------------------------- /erpnext_copilot/chat_bot_apis/get_doctype_structure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhilam-Inc/ERPNext-CoPilot/HEAD/erpnext_copilot/chat_bot_apis/get_doctype_structure.py -------------------------------------------------------------------------------- /erpnext_copilot/chat_bot_apis/sales_person_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhilam-Inc/ERPNext-CoPilot/HEAD/erpnext_copilot/chat_bot_apis/sales_person_helper.py -------------------------------------------------------------------------------- /erpnext_copilot/chat_bot_apis/test_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhilam-Inc/ERPNext-CoPilot/HEAD/erpnext_copilot/chat_bot_apis/test_json.py -------------------------------------------------------------------------------- /erpnext_copilot/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /erpnext_copilot/config/desktop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhilam-Inc/ERPNext-CoPilot/HEAD/erpnext_copilot/config/desktop.py -------------------------------------------------------------------------------- /erpnext_copilot/config/docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhilam-Inc/ERPNext-CoPilot/HEAD/erpnext_copilot/config/docs.py -------------------------------------------------------------------------------- /erpnext_copilot/erpnext_copilot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /erpnext_copilot/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhilam-Inc/ERPNext-CoPilot/HEAD/erpnext_copilot/hooks.py -------------------------------------------------------------------------------- /erpnext_copilot/modules.txt: -------------------------------------------------------------------------------- 1 | Erpnext Copilot -------------------------------------------------------------------------------- /erpnext_copilot/patches.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /erpnext_copilot/public/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /erpnext_copilot/public/erpnextcopilot/assets/index-04490b11.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhilam-Inc/ERPNext-CoPilot/HEAD/erpnext_copilot/public/erpnextcopilot/assets/index-04490b11.css -------------------------------------------------------------------------------- /erpnext_copilot/public/erpnextcopilot/assets/index-b22bb35f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhilam-Inc/ERPNext-CoPilot/HEAD/erpnext_copilot/public/erpnextcopilot/assets/index-b22bb35f.js -------------------------------------------------------------------------------- /erpnext_copilot/public/erpnextcopilot/bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhilam-Inc/ERPNext-CoPilot/HEAD/erpnext_copilot/public/erpnextcopilot/bot.png -------------------------------------------------------------------------------- /erpnext_copilot/public/erpnextcopilot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhilam-Inc/ERPNext-CoPilot/HEAD/erpnext_copilot/public/erpnextcopilot/index.html -------------------------------------------------------------------------------- /erpnext_copilot/public/erpnextcopilot/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhilam-Inc/ERPNext-CoPilot/HEAD/erpnext_copilot/public/erpnextcopilot/vite.svg -------------------------------------------------------------------------------- /erpnext_copilot/templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /erpnext_copilot/templates/pages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /erpnext_copilot/www/erpnextcopilot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhilam-Inc/ERPNext-CoPilot/HEAD/erpnext_copilot/www/erpnextcopilot.html -------------------------------------------------------------------------------- /erpnextcopilot/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhilam-Inc/ERPNext-CoPilot/HEAD/erpnextcopilot/.eslintrc.cjs -------------------------------------------------------------------------------- /erpnextcopilot/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhilam-Inc/ERPNext-CoPilot/HEAD/erpnextcopilot/.gitignore -------------------------------------------------------------------------------- /erpnextcopilot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhilam-Inc/ERPNext-CoPilot/HEAD/erpnextcopilot/README.md -------------------------------------------------------------------------------- /erpnextcopilot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhilam-Inc/ERPNext-CoPilot/HEAD/erpnextcopilot/index.html -------------------------------------------------------------------------------- /erpnextcopilot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhilam-Inc/ERPNext-CoPilot/HEAD/erpnextcopilot/package.json -------------------------------------------------------------------------------- /erpnextcopilot/proxyOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhilam-Inc/ERPNext-CoPilot/HEAD/erpnextcopilot/proxyOptions.js -------------------------------------------------------------------------------- /erpnextcopilot/public/bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhilam-Inc/ERPNext-CoPilot/HEAD/erpnextcopilot/public/bot.png -------------------------------------------------------------------------------- /erpnextcopilot/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhilam-Inc/ERPNext-CoPilot/HEAD/erpnextcopilot/public/vite.svg -------------------------------------------------------------------------------- /erpnextcopilot/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhilam-Inc/ERPNext-CoPilot/HEAD/erpnextcopilot/src/App.css -------------------------------------------------------------------------------- /erpnextcopilot/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhilam-Inc/ERPNext-CoPilot/HEAD/erpnextcopilot/src/App.jsx -------------------------------------------------------------------------------- /erpnextcopilot/src/Context/UserContext.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhilam-Inc/ERPNext-CoPilot/HEAD/erpnextcopilot/src/Context/UserContext.jsx -------------------------------------------------------------------------------- /erpnextcopilot/src/Home/Component/ChatView.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhilam-Inc/ERPNext-CoPilot/HEAD/erpnextcopilot/src/Home/Component/ChatView.jsx -------------------------------------------------------------------------------- /erpnextcopilot/src/Home/Component/form/ChildLinkField.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhilam-Inc/ERPNext-CoPilot/HEAD/erpnextcopilot/src/Home/Component/form/ChildLinkField.jsx -------------------------------------------------------------------------------- /erpnextcopilot/src/Home/Component/form/DynamicFormNew.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhilam-Inc/ERPNext-CoPilot/HEAD/erpnextcopilot/src/Home/Component/form/DynamicFormNew.jsx -------------------------------------------------------------------------------- /erpnextcopilot/src/Home/Component/form/LinkField.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhilam-Inc/ERPNext-CoPilot/HEAD/erpnextcopilot/src/Home/Component/form/LinkField.jsx -------------------------------------------------------------------------------- /erpnextcopilot/src/Home/Component/form/TableDemoNew.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhilam-Inc/ERPNext-CoPilot/HEAD/erpnextcopilot/src/Home/Component/form/TableDemoNew.jsx -------------------------------------------------------------------------------- /erpnextcopilot/src/Home/Component/message/CopyToClipboardButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhilam-Inc/ERPNext-CoPilot/HEAD/erpnextcopilot/src/Home/Component/message/CopyToClipboardButton.jsx -------------------------------------------------------------------------------- /erpnextcopilot/src/Home/Component/message/DynamicMessage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhilam-Inc/ERPNext-CoPilot/HEAD/erpnextcopilot/src/Home/Component/message/DynamicMessage.jsx -------------------------------------------------------------------------------- /erpnextcopilot/src/Home/Component/message/DynamicMessageBubble.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhilam-Inc/ERPNext-CoPilot/HEAD/erpnextcopilot/src/Home/Component/message/DynamicMessageBubble.jsx -------------------------------------------------------------------------------- /erpnextcopilot/src/Home/Component/message/DynamicMessageRenderer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhilam-Inc/ERPNext-CoPilot/HEAD/erpnextcopilot/src/Home/Component/message/DynamicMessageRenderer.jsx -------------------------------------------------------------------------------- /erpnextcopilot/src/Home/Component/message/MessageLoadingSkeletonText.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhilam-Inc/ERPNext-CoPilot/HEAD/erpnextcopilot/src/Home/Component/message/MessageLoadingSkeletonText.jsx -------------------------------------------------------------------------------- /erpnextcopilot/src/Home/Component/views/ChartRenderer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhilam-Inc/ERPNext-CoPilot/HEAD/erpnextcopilot/src/Home/Component/views/ChartRenderer.jsx -------------------------------------------------------------------------------- /erpnextcopilot/src/Home/Component/views/TableRenderer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhilam-Inc/ERPNext-CoPilot/HEAD/erpnextcopilot/src/Home/Component/views/TableRenderer.jsx -------------------------------------------------------------------------------- /erpnextcopilot/src/Home/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhilam-Inc/ERPNext-CoPilot/HEAD/erpnextcopilot/src/Home/index.jsx -------------------------------------------------------------------------------- /erpnextcopilot/src/Login/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhilam-Inc/ERPNext-CoPilot/HEAD/erpnextcopilot/src/Login/index.jsx -------------------------------------------------------------------------------- /erpnextcopilot/src/assets/bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhilam-Inc/ERPNext-CoPilot/HEAD/erpnextcopilot/src/assets/bot.png -------------------------------------------------------------------------------- /erpnextcopilot/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhilam-Inc/ERPNext-CoPilot/HEAD/erpnextcopilot/src/assets/react.svg -------------------------------------------------------------------------------- /erpnextcopilot/src/common/Alert.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhilam-Inc/ERPNext-CoPilot/HEAD/erpnextcopilot/src/common/Alert.jsx -------------------------------------------------------------------------------- /erpnextcopilot/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhilam-Inc/ERPNext-CoPilot/HEAD/erpnextcopilot/src/index.css -------------------------------------------------------------------------------- /erpnextcopilot/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhilam-Inc/ERPNext-CoPilot/HEAD/erpnextcopilot/src/main.jsx -------------------------------------------------------------------------------- /erpnextcopilot/src/utils/protectedRoutes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhilam-Inc/ERPNext-CoPilot/HEAD/erpnextcopilot/src/utils/protectedRoutes.jsx -------------------------------------------------------------------------------- /erpnextcopilot/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhilam-Inc/ERPNext-CoPilot/HEAD/erpnextcopilot/vite.config.js -------------------------------------------------------------------------------- /erpnextcopilot/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhilam-Inc/ERPNext-CoPilot/HEAD/erpnextcopilot/yarn.lock -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- 1 | License: MIT -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhilam-Inc/ERPNext-CoPilot/HEAD/package.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhilam-Inc/ERPNext-CoPilot/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akhilam-Inc/ERPNext-CoPilot/HEAD/setup.py --------------------------------------------------------------------------------