diff --git a/odoo_chatgpt_connector/README.rst b/odoo_chatgpt_connector/README.rst new file mode 100755 index 000000000..cd29223ca --- /dev/null +++ b/odoo_chatgpt_connector/README.rst @@ -0,0 +1,47 @@ +.. image:: https://img.shields.io/badge/license-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. + +Configuration +============= +* No additional configurations needed + +Company +------- +* `Cybrosys Techno Solutions `__ + +License +------- +General Public License, Version 3 (AGPL v3). +(http://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Credits +------- +Developer: (V15) Sajna S, Jumana Jabin MP +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..fdb03ac31 --- /dev/null +++ b/odoo_chatgpt_connector/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################### +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions (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..86f4b5200 --- /dev/null +++ b/odoo_chatgpt_connector/__manifest__.py @@ -0,0 +1,49 @@ +# -*- coding: utf-8 -*- +############################################################################### +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions (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': '15.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', + 'depends': ['website'], + 'data': [ + 'views/odoo_chatgpt_connector_menus.xml', + 'views/res_config_setting_views.xml', + 'views/website_templates.xml', + ], + 'assets': { + 'web.assets_frontend': [ + 'odoo_chatgpt_connector/static/src/js/submit_request.js', + 'odoo_chatgpt_connector/static/src/css/container.css' + ], + }, + 'images': ['static/description/banner.png'], + 'license': 'AGPL-3', + '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..2a40c056f --- /dev/null +++ b/odoo_chatgpt_connector/controllers/__init__.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +############################################################################### +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions(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 odoo_chatgpt_connector diff --git a/odoo_chatgpt_connector/controllers/odoo_chatgpt_connector.py b/odoo_chatgpt_connector/controllers/odoo_chatgpt_connector.py new file mode 100644 index 000000000..0e8cfb753 --- /dev/null +++ b/odoo_chatgpt_connector/controllers/odoo_chatgpt_connector.py @@ -0,0 +1,33 @@ +# -*- coding: utf-8 -*- +############################################################################### +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions (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): + """ This class defines the HTTP routes and methods for ChatGPT interaction. + It provides functionality to render the ChatGPT template for user + interaction.""" + + @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..43d6025b1 --- /dev/null +++ b/odoo_chatgpt_connector/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 03.10.2023 +#### Version 15.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..07a852db8 --- /dev/null +++ b/odoo_chatgpt_connector/models/__init__.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +############################################################################### +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions (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..282efe008 --- /dev/null +++ b/odoo_chatgpt_connector/models/res_config_settings.py @@ -0,0 +1,30 @@ +# -*- coding: utf-8 -*- +############################################################################### +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions (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): + """This class extends the base 'res.config.settings' model to include + additional fields for configuring ChatGPT integration settings.""" + _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..a0969fcb5 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/live_chat.png b/odoo_chatgpt_connector/static/description/assets/modules/live_chat.png new file mode 100644 index 000000000..3664700f5 Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/modules/live_chat.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/modules/slack.png b/odoo_chatgpt_connector/static/description/assets/modules/slack.png new file mode 100644 index 000000000..92ae36dc5 Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/modules/slack.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/modules/twitter.png b/odoo_chatgpt_connector/static/description/assets/modules/twitter.png new file mode 100644 index 000000000..ee4fa9abd Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/modules/twitter.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/modules/whatsapp.gif b/odoo_chatgpt_connector/static/description/assets/modules/whatsapp.gif new file mode 100644 index 000000000..c51b9eb07 Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/modules/whatsapp.gif differ diff --git a/odoo_chatgpt_connector/static/description/assets/modules/zoom_meet.jpg b/odoo_chatgpt_connector/static/description/assets/modules/zoom_meet.jpg new file mode 100644 index 000000000..ae7760bd2 Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/modules/zoom_meet.jpg 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..cc0da870a 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..fa11bbc4c 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..01271f532 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..1e3145e6e 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..7cd9a19ae 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/hero.gif b/odoo_chatgpt_connector/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..bf2ee0635 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..145068f34 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..1e5eca4ad 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..812a4dc32 --- /dev/null +++ b/odoo_chatgpt_connector/static/description/index.html @@ -0,0 +1,705 @@ +
+ +
+ +
+
+ Community +
+
+ Enterprise +
+
+ Odoo.Sh +
+
+
+ +
+
+
+

+ 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. +

+ +
+
+ + + +
+
+

+ 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

+
+ +
+
+
+ +
+
+

+ Can Add Queries and Get Query Answers + +

+
+
+
+
+ +
+
+

+ Copy to Clipboard

+
+
+ + +
+
+

+ 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

+ +
+ + +
+
+

Suggested + 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

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

Need + Help?

+
+
+
+ + +
+ +
+ + +
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+
+
+ + +
+
+
+
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..0add5ff42 --- /dev/null +++ b/odoo_chatgpt_connector/static/src/css/container.css @@ -0,0 +1,269 @@ +#result_area{ + overflow:auto; + width:1023px !important; + font-size:14px; + height: 300px !important; + margin-top:50px ; + 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..66e984112 --- /dev/null +++ b/odoo_chatgpt_connector/static/src/js/submit_request.js @@ -0,0 +1,67 @@ +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'); + /* extend the widget */ + 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.$el.find(this).prop("disabled", true); + this.$el.find('#result_area').val(''); + this.$el.find('#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' + }; + /* For showing the answer in the result area */ + 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; + this.$el.find('#result_area').val(obj.choices[0].text.trim()); + }) + .catch(error => console.log('error', error)); + }, + /*For copying the Answer to the clipboard*/ + copy: function(event) { + document.querySelector('#result_area').select(); + document.execCommand('copy'); + }, + }); +}); \ No newline at end of file diff --git a/odoo_chatgpt_connector/views/odoo_chatgpt_connector_menus.xml b/odoo_chatgpt_connector/views/odoo_chatgpt_connector_menus.xml new file mode 100644 index 000000000..de0e0482f --- /dev/null +++ b/odoo_chatgpt_connector/views/odoo_chatgpt_connector_menus.xml @@ -0,0 +1,10 @@ + + + + + ChatGPT + /chatgpt_form + + 63 + + diff --git a/odoo_chatgpt_connector/views/res_config_setting_views.xml b/odoo_chatgpt_connector/views/res_config_setting_views.xml new file mode 100644 index 000000000..9289b7847 --- /dev/null +++ b/odoo_chatgpt_connector/views/res_config_setting_views.xml @@ -0,0 +1,32 @@ + + + + + + res.config.settings.view.form.inherit.odoo.chatgpt.connector + + res.config.settings + + + + +

ChatGPT Connection

+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/odoo_chatgpt_connector/views/website_templates.xml b/odoo_chatgpt_connector/views/website_templates.xml new file mode 100644 index 000000000..c2a0819d6 --- /dev/null +++ b/odoo_chatgpt_connector/views/website_templates.xml @@ -0,0 +1,45 @@ + + + +