diff --git a/odoo_chatgpt_connector/README.rst b/odoo_chatgpt_connector/README.rst new file mode 100755 index 000000000..f6d6dc97a --- /dev/null +++ b/odoo_chatgpt_connector/README.rst @@ -0,0 +1,37 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +Odoo ChatGPT Connector +====================== +This module allow to connect Odoo to ChatGPT. + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +Developer: Ammu @cybrosys, Contact: odoo@cybrosys.com + +Contacts +-------- +* Mail Contact : odoo@cybrosys.com +* Website : https://cybrosys.com + +Bug Tracker +----------- +Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. + +Maintainer +========== +.. image:: https://cybrosys.com/images/logo.png + :target: https://cybrosys.com + +This module is maintained by Cybrosys Technologies. + +For support and more information, please visit `Our Website `__ + +Further information +=================== +HTML Description: ``__ diff --git a/odoo_chatgpt_connector/__init__.py b/odoo_chatgpt_connector/__init__.py new file mode 100644 index 000000000..7153f6be4 --- /dev/null +++ b/odoo_chatgpt_connector/__init__.py @@ -0,0 +1,25 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2022-TODAY Cybrosys Technologies(). +# Author: Ammu Raj (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ + + +from . import controllers +from . import models diff --git a/odoo_chatgpt_connector/__manifest__.py b/odoo_chatgpt_connector/__manifest__.py new file mode 100644 index 000000000..98a6c406f --- /dev/null +++ b/odoo_chatgpt_connector/__manifest__.py @@ -0,0 +1,49 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2022-TODAY Cybrosys Technologies(). +# Author: Ammu Raj (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ + + +{ + 'name': 'Odoo ChatGPT Connector', + 'version': '16.0.1.0.0', + 'summary': 'Odoo ChatGPT Language Connector', + 'description': 'Allows the application to leverage the capabilities of the GPT language model to generate human-like responses, providing a more natural and intuitive user experience', + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': 'https://www.cybrosys.com', + 'license': 'AGPL-3', + 'depends': ['base', 'website'], + 'data': [ + 'views/chatgpt_menu.xml', + 'views/chatgpt_setting_views.xml', + 'views/res_config_settings_views.xml', + ], + 'assets': { + 'web.assets_frontend': [ + 'odoo_chatgpt_connector/static/src/js/service_charge_button.js', + 'odoo_chatgpt_connector/static/src/css/container.css' + ], + }, + 'installable': True, + 'application': False, + 'auto_install': False, +} diff --git a/odoo_chatgpt_connector/controllers/__init__.py b/odoo_chatgpt_connector/controllers/__init__.py new file mode 100644 index 000000000..6da8094f3 --- /dev/null +++ b/odoo_chatgpt_connector/controllers/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2022-TODAY Cybrosys Technologies(). +# Author: Ammu Raj (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ + + +from . import main diff --git a/odoo_chatgpt_connector/controllers/main.py b/odoo_chatgpt_connector/controllers/main.py new file mode 100644 index 000000000..4094221cf --- /dev/null +++ b/odoo_chatgpt_connector/controllers/main.py @@ -0,0 +1,32 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2022-TODAY Cybrosys Technologies(). +# Author: Ammu Raj (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ + + +from odoo import http + + +class ChatgptConnector(http.Controller): + @http.route(['/chatgpt_form'], type='http', auth="public", csrf=False, + website=True) + def question_submit(self): + """Rendering the template of ChatGPT""" + return http.request.render('odoo_chatgpt_connector.connector') diff --git a/odoo_chatgpt_connector/doc/RELEASE_NOTES.md b/odoo_chatgpt_connector/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..c574d70ea --- /dev/null +++ b/odoo_chatgpt_connector/doc/RELEASE_NOTES.md @@ -0,0 +1,7 @@ +## Module + +#### 05.01.2023 +#### Version 16.0.1.0.0 +#### ADD + +- Initial commit for Odoo ChatGPT Connector diff --git a/odoo_chatgpt_connector/models/__init__.py b/odoo_chatgpt_connector/models/__init__.py new file mode 100644 index 000000000..7a3a27015 --- /dev/null +++ b/odoo_chatgpt_connector/models/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2022-TODAY Cybrosys Technologies(). +# Author: Ammu Raj (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ + +from . import res_config_settings diff --git a/odoo_chatgpt_connector/models/res_config_settings.py b/odoo_chatgpt_connector/models/res_config_settings.py new file mode 100644 index 000000000..0848c2e4f --- /dev/null +++ b/odoo_chatgpt_connector/models/res_config_settings.py @@ -0,0 +1,32 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2022-TODAY Cybrosys Technologies(). +# Author: Ammu Raj (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ + +from odoo import fields, models + + +class ResConfigSettings(models.TransientModel): + _inherit = "res.config.settings" + + api_key = fields.Char(string="API Key", help="Provide the API key here", + config_parameter="odoo_chatgpt_connector.api_key") + + diff --git a/odoo_chatgpt_connector/static/description/assets/icons/check.png b/odoo_chatgpt_connector/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/icons/check.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/icons/chevron.png b/odoo_chatgpt_connector/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/icons/chevron.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/icons/cogs.png b/odoo_chatgpt_connector/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/icons/cogs.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/icons/consultation.png b/odoo_chatgpt_connector/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/icons/consultation.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/icons/ecom-black.png b/odoo_chatgpt_connector/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/icons/ecom-black.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/icons/education-black.png b/odoo_chatgpt_connector/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/icons/education-black.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/icons/hotel-black.png b/odoo_chatgpt_connector/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/icons/hotel-black.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/icons/license.png b/odoo_chatgpt_connector/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/icons/license.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/icons/lifebuoy.png b/odoo_chatgpt_connector/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/icons/lifebuoy.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/icons/manufacturing-black.png b/odoo_chatgpt_connector/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/icons/manufacturing-black.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/icons/pos-black.png b/odoo_chatgpt_connector/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/icons/pos-black.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/icons/puzzle.png b/odoo_chatgpt_connector/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/icons/puzzle.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/icons/restaurant-black.png b/odoo_chatgpt_connector/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/icons/restaurant-black.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/icons/service-black.png b/odoo_chatgpt_connector/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/icons/service-black.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/icons/trading-black.png b/odoo_chatgpt_connector/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/icons/trading-black.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/icons/training.png b/odoo_chatgpt_connector/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/icons/training.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/icons/update.png b/odoo_chatgpt_connector/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/icons/update.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/icons/user.png b/odoo_chatgpt_connector/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/icons/user.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/icons/wrench.png b/odoo_chatgpt_connector/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/icons/wrench.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/misc/categories.png b/odoo_chatgpt_connector/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/misc/categories.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/misc/check-box.png b/odoo_chatgpt_connector/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/misc/check-box.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/misc/compass.png b/odoo_chatgpt_connector/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/misc/compass.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/misc/corporate.png b/odoo_chatgpt_connector/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/misc/corporate.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/misc/customer-support.png b/odoo_chatgpt_connector/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/misc/customer-support.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/misc/cybrosys-logo.png b/odoo_chatgpt_connector/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/misc/cybrosys-logo.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/misc/features.png b/odoo_chatgpt_connector/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/misc/features.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/misc/logo.png b/odoo_chatgpt_connector/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/misc/logo.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/misc/pictures.png b/odoo_chatgpt_connector/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/misc/pictures.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/misc/pie-chart.png b/odoo_chatgpt_connector/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/misc/pie-chart.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/misc/right-arrow.png b/odoo_chatgpt_connector/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/misc/right-arrow.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/misc/star.png b/odoo_chatgpt_connector/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/misc/star.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/misc/support.png b/odoo_chatgpt_connector/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/misc/support.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/misc/whatsapp.png b/odoo_chatgpt_connector/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/misc/whatsapp.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/modules/1.png b/odoo_chatgpt_connector/static/description/assets/modules/1.png new file mode 100644 index 000000000..5238bdeab Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/modules/1.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/modules/2.png b/odoo_chatgpt_connector/static/description/assets/modules/2.png new file mode 100644 index 000000000..1ae7cfe3b Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/modules/2.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/modules/3.png b/odoo_chatgpt_connector/static/description/assets/modules/3.png new file mode 100644 index 000000000..3c3ff1afb Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/modules/3.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/modules/4.png b/odoo_chatgpt_connector/static/description/assets/modules/4.png new file mode 100644 index 000000000..3fae4631e Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/modules/4.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/modules/5.gif b/odoo_chatgpt_connector/static/description/assets/modules/5.gif new file mode 100644 index 000000000..2a5f8e659 Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/modules/5.gif differ diff --git a/odoo_chatgpt_connector/static/description/assets/modules/6.png b/odoo_chatgpt_connector/static/description/assets/modules/6.png new file mode 100644 index 000000000..7f2815273 Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/modules/6.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/screenshots/chat1.png b/odoo_chatgpt_connector/static/description/assets/screenshots/chat1.png new file mode 100644 index 000000000..e7ded7484 Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/screenshots/chat1.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/screenshots/chat2.png b/odoo_chatgpt_connector/static/description/assets/screenshots/chat2.png new file mode 100644 index 000000000..e56d7f2a1 Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/screenshots/chat2.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/screenshots/chat3.png b/odoo_chatgpt_connector/static/description/assets/screenshots/chat3.png new file mode 100644 index 000000000..2eabc0560 Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/screenshots/chat3.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/screenshots/chat4.png b/odoo_chatgpt_connector/static/description/assets/screenshots/chat4.png new file mode 100644 index 000000000..cc7a9a376 Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/screenshots/chat4.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/screenshots/chat5.png b/odoo_chatgpt_connector/static/description/assets/screenshots/chat5.png new file mode 100644 index 000000000..aac4a900a Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/screenshots/chat5.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/screenshots/chat6.png b/odoo_chatgpt_connector/static/description/assets/screenshots/chat6.png new file mode 100644 index 000000000..dd84f80bf Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/screenshots/chat6.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/screenshots/chat7.png b/odoo_chatgpt_connector/static/description/assets/screenshots/chat7.png new file mode 100644 index 000000000..b75d57b4c Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/screenshots/chat7.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/screenshots/hero.gif b/odoo_chatgpt_connector/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..b38e8f330 Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/screenshots/hero.gif differ diff --git a/odoo_chatgpt_connector/static/description/banner.png b/odoo_chatgpt_connector/static/description/banner.png new file mode 100644 index 000000000..1c98e213f Binary files /dev/null and b/odoo_chatgpt_connector/static/description/banner.png differ diff --git a/odoo_chatgpt_connector/static/description/icon.png b/odoo_chatgpt_connector/static/description/icon.png new file mode 100644 index 000000000..792fb67e0 Binary files /dev/null and b/odoo_chatgpt_connector/static/description/icon.png differ diff --git a/odoo_chatgpt_connector/static/description/index.html b/odoo_chatgpt_connector/static/description/index.html new file mode 100644 index 000000000..3c0086986 --- /dev/null +++ b/odoo_chatgpt_connector/static/description/index.html @@ -0,0 +1,570 @@ +
+ +
+ +
+
+ Community +
+
+ Enterprise +
+
+
+ + + +

Odoo ChatGPT Connector

+

Allows to leverage the capabilities of the GPT language model to generate human-like responses, providing a more natural and intuitive user experience. +

+ + + +
+ + +
+
+ +
+

Explore This + Module

+
+ + + + +
+
+ +
+

Overview +

+
+
+
+ ChatGPT is a chatbot application that uses the GPT (Generative Pretrained Transformer) language model to generate human-like responses to user input.This module allows to leverage the capabilities of the GPT language model to generate human-like responses, providing a more natural and intuitive user experience. +
+
+ + + +
+
+ +
+

Features +

+
+
+
+
+ +
+ Easy to set up + Easy to set up API of the ChatGPT +
+
+
+ +
+ Queries + You can simply type your question into the form interface and search it.As like ChatGPT, module is able to respond to a wide variety of questions and prompts. +
+
+ +
+
+
+ +
+ Answer of the query + You can get the answer of the query below +
+
+
+ +
+ Copy to clipboard + Also possible to copy the Answer into clipboard by simply click on the copy button +
+
+
+
+ + + +
+
+ +
+

Screenshots +

+
+
+
+ +
+

Configure API

+

You can simply set the API inside the settings of Website + +

+ +
+

ChatGPT Menu

+

You can see the ChatGPT Menu.Click on the button for redirect to the form.

+ +
+
+

Question&Answer

+

Enter your question and click the Generate Response button for getting the Answer.You can see the Answer is 'Loading'

+ +
+
+

Answer

+

Answer of the Entered question is here.

+ +
+
+

Copy button for copying the answer into clipboard

+ +
+
+

Examples

+ +
+
+ +
+
+
+ + + +
+
+ +
+

Related + Products +

+
+
+
+ +
+
+ + + + +
+
+ +
+

Our Services +

+
+ +
+
+
+
+ +
+
+ Odoo + Customization
+
+ +
+
+ +
+
+ Odoo + Implementation
+
+ +
+
+ +
+
+ Odoo + Support
+
+ + +
+
+ +
+
+ Hire + Odoo + Developer
+
+ +
+
+ +
+
+ Odoo + Integration
+
+ +
+
+ +
+
+ Odoo + Migration
+
+ + +
+
+ +
+
+ Odoo + Consultancy
+
+ +
+
+ +
+
+ Odoo + Implementation
+
+ +
+
+ +
+
+ Odoo + Licensing Consultancy
+
+
+ +
+ + + + + +
+
+ +
+

Our + Industries +

+
+ +
+
+
+
+ +
+ Trading +
+

+ Easily procure + and + sell your products

+
+
+ +
+
+ +
+ POS +
+

+ Easy + configuration + and convivial experience

+
+
+ +
+
+ +
+ Education +
+

+ A platform for + educational management

+
+
+ +
+
+ +
+ Manufacturing +
+

+ Plan, track and + schedule your operations

+
+
+ +
+
+ +
+ E-commerce & Website +
+

+ Mobile + friendly, + awe-inspiring product pages

+
+
+ +
+
+ +
+ Service Management +
+

+ Keep track of + services and invoice

+
+
+ +
+
+ +
+ Restaurant +
+

+ Run your bar or + restaurant methodically

+
+
+ +
+
+ +
+ Hotel Management +
+

+ An + all-inclusive + hotel management application

+
+
+
+
+ + + + +
+
+ +
+

Support +

+
+
+
+
+
+
+ +
+
+

Need Help?

+

Got questions or need help? Get in touch.

+ +

+ odoo@cybrosys.com

+
+
+
+
+
+
+
+ +
+
+

WhatsApp

+

Say hi to us on WhatsApp!

+ +

+91 86068 + 27707

+
+
+
+
+
+
+
+ +
+
+
+ \ No newline at end of file diff --git a/odoo_chatgpt_connector/static/src/css/container.css b/odoo_chatgpt_connector/static/src/css/container.css new file mode 100644 index 000000000..61b4d3935 --- /dev/null +++ b/odoo_chatgpt_connector/static/src/css/container.css @@ -0,0 +1,325 @@ + +#result_area{ + overflow:auto; + width:1023px !important; + font-size:14px; + height: 300px !important; + margin:0px ; + display:block; + border-radius:10px; + margin-bottom: 40px !important; + +} +background:#eee; +} + +.padding { + padding: 50px; +} + +/* GRID */ +.col-md-9{ +width: 106%; +padding: 129px; +} +.col { + padding: 10px 20px; + margin-bottom: 10px; + background: #fff; + color: #666666; + text-align: center; + font-weight: 400; + box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.1); +} + +.row h3 { + color: #666666; +} + +.row.grid { + margin-left: 0; +} + +.grid { + position: relative; + width: 100%; + background: #fff; + color: #666666; + border-radius: 2px; + margin-bottom: 25px; + box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.1); +} + +.grid .grid-header { + position: relative; + border-bottom: 1px solid #ddd; + padding: 15px 10px 10px 20px; +} + +.grid .grid-header:before, +.grid .grid-header:after { + display: table; + content: " "; +} + +.grid .grid-header:after { + clear: both; +} + +.grid .grid-header span, +.grid .grid-header > .fa { + display: inline-block; + margin: 0; + font-weight: 300; + font-size: 1.5em; + float: left; +} + +.grid .grid-header span { + padding: 0 5px; +} + +.grid .grid-header > .fa { + padding: 5px 10px 0 0; +} + +.grid .grid-header > .grid-tools { + padding: 4px 10px; +} + +.grid .grid-header > .grid-tools a { + color: #999999; + padding-left: 10px; + cursor: pointer; +} + +.grid .grid-header > .grid-tools a:hover { + color: #666666; +} + +.grid .grid-body { + padding: 15px 20px 15px 20px; + font-size: 0.9em; + line-height: 1.9em; +} + +.grid .full { + padding: 0 !important; +} + +.grid .transparent { + box-shadow: none !important; + margin: 0px !important; + border-radius: 0px !important; +} + +.grid.top.black > .grid-header { + border-top-color: #000000 !important; +} + +.grid.bottom.black > .grid-body { + border-bottom-color: #000000 !important; +} + +.grid.top.blue > .grid-header { + border-top-color: #007be9 !important; +} + +.grid.bottom.blue > .grid-body { + border-bottom-color: #007be9 !important; +} + +.grid.top.green > .grid-header { + border-top-color: #00c273 !important; +} + +.grid.bottom.green > .grid-body { + border-bottom-color: #00c273 !important; +} + +.grid.top.purple > .grid-header { + border-top-color: #a700d3 !important; +} + +.grid.bottom.purple > .grid-body { + border-bottom-color: #a700d3 !important; +} + +.grid.top.red > .grid-header { + border-top-color: #dc1200 !important; +} + +.grid.bottom.red > .grid-body { + border-bottom-color: #dc1200 !important; +} + +.grid.top.orange > .grid-header { + border-top-color: #f46100 !important; +} + +.grid.bottom.orange > .grid-body { + border-bottom-color: #f46100 !important; +} + +.grid.no-border > .grid-header { + border-bottom: 0px !important; +} + +.grid.top > .grid-header { + border-top-width: 4px !important; + border-top-style: solid !important; +} + +.grid.bottom > .grid-body { + border-bottom-width: 4px !important; + border-bottom-style: solid !important; +} + + +/* SUPPORT TICKET */ +.support ul { + list-style: none; + padding: 0px; +} + +.support ul li { + padding: 8px 10px; +} + +.support ul li a { + color: #999; + display: block; +} + +.support ul li a:hover { + color: #666; +} + +.support ul li.active { + background: #0073b7; +} + +.support ul li.active a { + color: #fff; +} + +.support ul.support-label li { + padding: 2px 0px; +} + +.support h2, +.support-content h2 { + margin-top: 5px; +} + +.support-content .list-group li { + padding: 15px 20px 12px 20px; + cursor: pointer; +} + +.support-content .list-group li:hover { + background: #eee; +} + +.support-content .fa-padding .fa { + padding-top: 5px; + width: 1.5em; +} + +.support-content .info { + color: #777; + margin: 0px; +} + +.support-content a { + color: #111; +} + +.support-content .info a:hover { + text-decoration: underline; +} + +.support-content .info .fa { + width: 1.5em; + text-align: center; +} + +.support-content .number { + color: #777; +} + +.support-content img { + margin: 0 auto; + display: block; +} + +.support-content .modal-body { + padding-bottom: 0px; +} + +.support-content-comment { + padding: 10px 10px 10px 30px; + background: #eee; + border-top: 1px solid #ccc; +} + + +/* BACKGROUND COLORS */ +.bg-red, .bg-yellow, .bg-aqua, .bg-blue, .bg-light-blue, .bg-green, .bg-navy, .bg-teal, .bg-olive, .bg-lime, .bg-orange, .bg-fuchsia, .bg-purple, .bg-maroon, bg-gray, bg-black, .bg-red a, .bg-yellow a, .bg-aqua a, .bg-blue a, .bg-light-blue a, .bg-green a, .bg-navy a, .bg-teal a, .bg-olive a, .bg-lime a, .bg-orange a, .bg-fuchsia a, .bg-purple a, .bg-maroon a, bg-gray a, .bg-black a { + color: #f9f9f9 !important; +} +.bg-white, .bg-white a { + color: #999999 !important; +} +.bg-red { + background-color: #f56954 !important; +} +.bg-yellow { + background-color: #f39c12 !important; +} +.bg-aqua { + background-color: #00c0ef !important; +} +.bg-blue { + background-color: #0073b7 !important; +} +.bg-light-blue { + background-color: #3c8dbc !important; +} +.bg-green { + background-color: #00a65a !important; +} +.bg-navy { + background-color: #001f3f !important; +} +.bg-teal { + background-color: #39cccc !important; +} +.bg-olive { + background-color: #3d9970 !important; +} +.bg-lime { + background-color: #01ff70 !important; +} +.bg-orange { + background-color: #ff851b !important; +} +.bg-fuchsia { + background-color: #f012be !important; +} +.bg-purple { + background-color: #932ab6 !important; +} +.bg-maroon { + background-color: #85144b !important; +} +.bg-gray { + background-color: #eaeaec !important; +} +.bg-black { + background-color: #222222 !important; +} +.btn-default{ + left: 1600%; + border: #8e7d6c; +} \ No newline at end of file diff --git a/odoo_chatgpt_connector/static/src/js/submit_request.js b/odoo_chatgpt_connector/static/src/js/submit_request.js new file mode 100644 index 000000000..8c27468c7 --- /dev/null +++ b/odoo_chatgpt_connector/static/src/js/submit_request.js @@ -0,0 +1,72 @@ +odoo.define('odoo_chatgpt_connector.chatgpt_search', function(require) { + 'use strict'; + var ajax = require('web.ajax'); + var publicWidget = require('web.public.widget'); + var core = require('web.core'); + var rpc = require('web.rpc'); + + publicWidget.registry.QuestionInput = publicWidget.Widget.extend({ + selector: "#main_layout", + events: { + 'change #question_input ': 'get_answer', + 'click #copy_content': 'copy', + }, + /** + * @constructor + */ + init: function() { + var api_key = ""; + }, + + /* For getting the Answer of submitted question*/ + get_answer: async function(event) { + $(this).prop("disabled", true); + $('#result_area').val(''); + $('#result_area')[0].placeholder = "Loading....."; + if (!this.api_key) { + var data = await rpc.query({ + model: 'ir.config_parameter', + method: 'get_param', + args: ['odoo_chatgpt_connector.api_key'], + }).then(result => { + this.api_key = result; + }); + } + var question = event.target.value; + var myHeaders = new Headers(); + myHeaders.append("Content-Type", "application/json"); + myHeaders.append("Authorization", "Bearer " + this.api_key); + + var raw = JSON.stringify({ + "model": "text-davinci-003", + "prompt": question, + "temperature": 0, + "max_tokens": 1000, + "top_p": 1, + "frequency_penalty": 0, + "presence_penalty": 0, + }); + + var requestOptions = { + method: 'POST', + headers: myHeaders, + body: raw, + redirect: 'follow' + }; + + fetch("https://api.openai.com/v1/completions", requestOptions) + .then(response => response.text()) + .then(result => { + const obj = JSON.parse(result); + let area = obj.choices[0].text; + $('#result_area').val(obj.choices[0].text.trim()); + }) + .catch(error => console.log('error', error)); + }, + /*For copy the Answer to the clipboard*/ + copy: function(event) { + document.querySelector("textarea").select(); + document.execCommand('copy'); + }, + }); +}); \ No newline at end of file diff --git a/odoo_chatgpt_connector/views/chatgpt_menu.xml b/odoo_chatgpt_connector/views/chatgpt_menu.xml new file mode 100644 index 000000000..4c086ebd3 --- /dev/null +++ b/odoo_chatgpt_connector/views/chatgpt_menu.xml @@ -0,0 +1,9 @@ + + + + ChatGPT + /chatgpt_form + + 63 + + \ No newline at end of file diff --git a/odoo_chatgpt_connector/views/chatgpt_setting_views.xml b/odoo_chatgpt_connector/views/chatgpt_setting_views.xml new file mode 100644 index 000000000..2e346d0d9 --- /dev/null +++ b/odoo_chatgpt_connector/views/chatgpt_setting_views.xml @@ -0,0 +1,29 @@ + + + + res.config.settings.view.form.inherit.chatgpt + res.config.settings + + + + +

ChatGPT Connection

+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/odoo_chatgpt_connector/views/chatgpt_template.xml b/odoo_chatgpt_connector/views/chatgpt_template.xml new file mode 100644 index 000000000..2f09ad2d9 --- /dev/null +++ b/odoo_chatgpt_connector/views/chatgpt_template.xml @@ -0,0 +1,97 @@ + + +