diff --git a/odoo_chatgpt_connector/README.rst b/odoo_chatgpt_connector/README.rst new file mode 100755 index 000000000..cbfb9ff2f --- /dev/null +++ b/odoo_chatgpt_connector/README.rst @@ -0,0 +1,44 @@ +.. 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 `__ + +License +------- +General Public License, Version 3 (AGPL v3). +(https://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Credits +------- +Developer: (V16) Ammu @cybrosys, + (V17) Safa Faheem PE @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..bf9ff5a50 --- /dev/null +++ b/odoo_chatgpt_connector/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# 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..c263e94ae --- /dev/null +++ b/odoo_chatgpt_connector/__manifest__.py @@ -0,0 +1,51 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# 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': '17.0.1.0.0', + 'category': 'Extra Tools', + 'summary': 'Connect Odoo with ChatGPT', + 'description': """Allows the application to leverage the capabilities of + the GPT language model to generate human-like responses,Odoo ChatGPT + Connector,Odoo ChatGPT,ChatGPT, chatgpt odoo connector, chatgpt""", + '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.jpg'], + '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..77a2cd581 --- /dev/null +++ b/odoo_chatgpt_connector/controllers/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# 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..efbd12ac8 --- /dev/null +++ b/odoo_chatgpt_connector/controllers/odoo_chatgpt_connector.py @@ -0,0 +1,33 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# 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..233296f16 --- /dev/null +++ b/odoo_chatgpt_connector/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 16.07.2024 +#### Version 17.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..329aefe24 --- /dev/null +++ b/odoo_chatgpt_connector/models/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# 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..8cbf7405d --- /dev/null +++ b/odoo_chatgpt_connector/models/res_config_settings.py @@ -0,0 +1,90 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# 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 . +# +############################################################################### +import requests +from odoo import fields, models, _ + + +def notification_response(title, notification_type, message): + """Method notification_response returns the notification data according + to each conditions while checking the connection to ChatGPT.""" + notification_data = { + 'type': 'ir.actions.client', + 'tag': 'display_notification', + 'params': { + 'title': _(title), + 'type': notification_type, + 'message': message, + 'sticky': False, + } + } + return notification_data + + +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") + + def action_test_api(self): + """Method action_test_api to test the connection from Odoo to + ChatGPT""" + url = "https://api.openai.com/v1/completions" + payload = {'model': 'gpt-3.5-turbo-instruct'} + api_key = self.env['ir.config_parameter'].sudo().get_param( + 'odoo_chatgpt_connector.api_key') + if not api_key: + notification = notification_response(title="No API key!", + notification_type="danger", + message="Please provide " + "an API Key") + return notification + headers = { + 'Authorization': f"Bearer {api_key}", + 'Content-Type': "application/json" + } + try: + response = requests.post(url, headers=headers, json=payload, + timeout=10) + response.raise_for_status() # Raise an exception for HTTP errors + notification = notification_response(title="Connection " + "Successful!", + notification_type="success", + message="Successfully " + "connected to " + "ChatGPT") + return notification + except requests.exceptions.Timeout: + notification = notification_response(title="Connection Timeout!", + notification_type="danger", + message="The request to " + "ChatGPT timed out") + return notification + except requests.exceptions.RequestException: + notification = notification_response(title="Connection Error!", + notification_type="danger", + message="Error connecting to " + "ChatGPT: API Key is " + "not valid") + return notification diff --git a/odoo_chatgpt_connector/static/description/assets/icons/capture (1).png b/odoo_chatgpt_connector/static/description/assets/icons/capture (1).png new file mode 100644 index 000000000..8824deafc Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/icons/capture (1).png differ 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/img.png b/odoo_chatgpt_connector/static/description/assets/icons/img.png new file mode 100644 index 000000000..70197f477 Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/icons/img.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/photo-capture.png b/odoo_chatgpt_connector/static/description/assets/icons/photo-capture.png new file mode 100644 index 000000000..06c111758 Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/icons/photo-capture.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/Cybrosys R.png b/odoo_chatgpt_connector/static/description/assets/misc/Cybrosys R.png new file mode 100644 index 000000000..da4058087 Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/misc/Cybrosys R.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/misc/email.svg b/odoo_chatgpt_connector/static/description/assets/misc/email.svg new file mode 100644 index 000000000..15291cdc3 --- /dev/null +++ b/odoo_chatgpt_connector/static/description/assets/misc/email.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo_chatgpt_connector/static/description/assets/misc/phone.svg b/odoo_chatgpt_connector/static/description/assets/misc/phone.svg new file mode 100644 index 000000000..b7bd7f251 --- /dev/null +++ b/odoo_chatgpt_connector/static/description/assets/misc/phone.svg @@ -0,0 +1,3 @@ + + + diff --git a/odoo_chatgpt_connector/static/description/assets/misc/star (1) 2.svg b/odoo_chatgpt_connector/static/description/assets/misc/star (1) 2.svg new file mode 100644 index 000000000..5ae9f507a --- /dev/null +++ b/odoo_chatgpt_connector/static/description/assets/misc/star (1) 2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/odoo_chatgpt_connector/static/description/assets/misc/support (1) 1.svg b/odoo_chatgpt_connector/static/description/assets/misc/support (1) 1.svg new file mode 100644 index 000000000..7d37a8f30 --- /dev/null +++ b/odoo_chatgpt_connector/static/description/assets/misc/support (1) 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/odoo_chatgpt_connector/static/description/assets/misc/support-email.svg b/odoo_chatgpt_connector/static/description/assets/misc/support-email.svg new file mode 100644 index 000000000..eb70370d6 --- /dev/null +++ b/odoo_chatgpt_connector/static/description/assets/misc/support-email.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/odoo_chatgpt_connector/static/description/assets/misc/tick-mark.svg b/odoo_chatgpt_connector/static/description/assets/misc/tick-mark.svg new file mode 100644 index 000000000..2dbb40187 --- /dev/null +++ b/odoo_chatgpt_connector/static/description/assets/misc/tick-mark.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/odoo_chatgpt_connector/static/description/assets/misc/whatsapp 1.svg b/odoo_chatgpt_connector/static/description/assets/misc/whatsapp 1.svg new file mode 100644 index 000000000..0bfaf8fc6 --- /dev/null +++ b/odoo_chatgpt_connector/static/description/assets/misc/whatsapp 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/odoo_chatgpt_connector/static/description/assets/misc/whatsapp.svg b/odoo_chatgpt_connector/static/description/assets/misc/whatsapp.svg new file mode 100644 index 000000000..b618aea1d --- /dev/null +++ b/odoo_chatgpt_connector/static/description/assets/misc/whatsapp.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/odoo_chatgpt_connector/static/description/assets/modules/1.jpg b/odoo_chatgpt_connector/static/description/assets/modules/1.jpg new file mode 100644 index 000000000..67c7f7062 Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/modules/1.jpg 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..3bedf7981 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..164eb62c7 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..d246d83ac 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.jpg b/odoo_chatgpt_connector/static/description/assets/modules/5.jpg new file mode 100644 index 000000000..655cf38f5 Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/modules/5.jpg differ diff --git a/odoo_chatgpt_connector/static/description/assets/modules/6.jpg b/odoo_chatgpt_connector/static/description/assets/modules/6.jpg new file mode 100644 index 000000000..1f3f2e27f Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/modules/6.jpg differ diff --git a/odoo_chatgpt_connector/static/description/assets/screenshots/api_01.png b/odoo_chatgpt_connector/static/description/assets/screenshots/api_01.png new file mode 100644 index 000000000..311ea7411 Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/screenshots/api_01.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/screenshots/api_02.png b/odoo_chatgpt_connector/static/description/assets/screenshots/api_02.png new file mode 100644 index 000000000..8f907d010 Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/screenshots/api_02.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/screenshots/api_03.png b/odoo_chatgpt_connector/static/description/assets/screenshots/api_03.png new file mode 100644 index 000000000..6151c39ad Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/screenshots/api_03.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/screenshots/api_04.png b/odoo_chatgpt_connector/static/description/assets/screenshots/api_04.png new file mode 100644 index 000000000..a5e348edc Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/screenshots/api_04.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/screenshots/api_05.png b/odoo_chatgpt_connector/static/description/assets/screenshots/api_05.png new file mode 100644 index 000000000..6eee0a5b3 Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/screenshots/api_05.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/screenshots/chatgpt_connector_01.png b/odoo_chatgpt_connector/static/description/assets/screenshots/chatgpt_connector_01.png new file mode 100644 index 000000000..6bf3b6ac8 Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/screenshots/chatgpt_connector_01.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/screenshots/chatgpt_connector_02.png b/odoo_chatgpt_connector/static/description/assets/screenshots/chatgpt_connector_02.png new file mode 100644 index 000000000..ea5f595d3 Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/screenshots/chatgpt_connector_02.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/screenshots/chatgpt_connector_03.png b/odoo_chatgpt_connector/static/description/assets/screenshots/chatgpt_connector_03.png new file mode 100644 index 000000000..1bc9bde9c Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/screenshots/chatgpt_connector_03.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/screenshots/chatgpt_connector_04.png b/odoo_chatgpt_connector/static/description/assets/screenshots/chatgpt_connector_04.png new file mode 100644 index 000000000..602fcfc00 Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/screenshots/chatgpt_connector_04.png differ diff --git a/odoo_chatgpt_connector/static/description/assets/screenshots/chatgpt_connector_05.png b/odoo_chatgpt_connector/static/description/assets/screenshots/chatgpt_connector_05.png new file mode 100644 index 000000000..2518382c1 Binary files /dev/null and b/odoo_chatgpt_connector/static/description/assets/screenshots/chatgpt_connector_05.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..556258566 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.jpg b/odoo_chatgpt_connector/static/description/banner.jpg new file mode 100644 index 000000000..9b516c357 Binary files /dev/null and b/odoo_chatgpt_connector/static/description/banner.jpg 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..0a275307e 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..b4e971e4c --- /dev/null +++ b/odoo_chatgpt_connector/static/description/index.html @@ -0,0 +1,662 @@ + + + + + + + Odoo App 3 Index + + + + + + + + +
+
+
+
+
+ +
+
+
+ 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. +

+
+ +
+
+
+
+
+

Key Highlights +

+
+
+
+
+
+ +
+
+

Easy to set up

+
+
+
+
+
+
+ +
+
+

Answer of the query

+
+
+
+
+
+
+ +
+
+

Copy to clipboard

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

+ If you don't already have an OpenAI account, create an OpenAI account and login your account. https://openai.com/ +

+
+
+
+
+
+
+ +
+
+

+ Navigate to the API section +

+
+
+
+
+
+
+ +
+
+

+ You can see a button "Create new secret key". Click on that button to generate a new API key. +

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

+ OpenAI charges for use of its API on a usage basis, so, if you haven't already set up a payment method for billing, you'll need to do so. Otherwise, the API Key you just created won't work. +

+
+
+
+
+
+
+ +
+
+

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

+
+
+
+
+
+
+ +
+
+

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

+
+
+
+
+
+
+ +
+
+

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

+
+
+
+
+
+
+ +
+
+

+ Answer of the Entered question is here. +

+
+
+
+
+
+
+ +
+
+

+ Copy button for copying the answer into clipboard +

+
+
+
+
+
+
+
    +
  • + Easy to set up API of the ChatGPT. +
  • +
  • + 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. +
  • +
  • + You can get the answer of the query below. +
  • +
  • + Also, possible to copy the Answer into clipboard by simply click on the copy button. +
  • +
+
+
+
+
+
+
Version + 17.0.1.0.0|Released on:16 July 2024 +
+

+ + Initial commit for Odoo ChatGPT Connector.

+
+
+
+
+
+
+
+

Related Products

+
+
+ +
+
+

Our Services

+ +
+
+
+
+
+
+
+
+ service-icon +
+
+

Odoo Customization

+
+
+
+
+
+
+ service-icon +
+
+

Odoo Implementation

+
+
+
+
+
+
+ service-icon +
+
+

Odoo Support

+
+
+
+
+
+
+ service-icon +
+
+

Hire Odoo Developer

+
+
+
+
+ +
+
+ service-icon +
+
+

Odoo Integration

+
+
+
+
+
+
+ service-icon +
+
+

Odoo Migration

+
+
+
+
+
+
+ service-icon +
+
+

Odoo Consultancy

+
+
+
+
+
+
+ service-icon +
+
+

Odoo Implementation

+
+
+
+
+
+
+ service-icon +
+
+

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 + 99456767686
+
+
+
+
+
+
+
+
+ + + + + + 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..2bb83f2d3 --- /dev/null +++ b/odoo_chatgpt_connector/static/src/js/submit_request.js @@ -0,0 +1,84 @@ +/** @odoo-module **/ +import publicWidget from '@web/legacy/js/public/public_widget'; +import { _t } from "@web/core/l10n/translation"; +publicWidget.registry.QuestionInput = publicWidget.Widget.extend({ + selector: "#main_layout", + events: { + 'click #send_button': 'get_answer', + 'click #copy_content': 'copy', + }, + /** + * @constructor + */ + init: function() { + this._super(...arguments); + this.orm = this.bindService("orm"); + this.notification = this.bindService("notification"); + this.api_key = ""; + }, + /* For getting the Answer of submitted question */ + get_answer: async function(event) { + $(event.currentTarget).prop("disabled", true); + $('#result_area').val(''); + $('#result_area')[0].placeholder = "Loading....."; + if (!this.api_key) { + await this.orm.call( + "ir.config_parameter", "get_param", ["odoo_chatgpt_connector.api_key"] + ).then(result => { + this.api_key = result; + }); + } + var question = $('#question_input').val(); + if (!question) { + $('#result_area')[0].placeholder = "Please drop your question"; + this.notification.add( + _t("Please drop your question"), + { type: 'danger', sticky: false }, + ) + $(event.currentTarget).prop("disabled", false); + return; + } + var myHeaders = new Headers(); + myHeaders.append("Content-Type", "application/json"); + myHeaders.append("Authorization", "Bearer " + this.api_key); + var raw = JSON.stringify({ + "model": "gpt-3.5-turbo-instruct", + "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.json()) + .then(result => { + let area = result.choices[0].text; + $('#result_area').val(area.trim()); + $(event.currentTarget).prop("disabled", false); + }) + .catch(error => { + $('#result_area')[0].placeholder = "Couldn't fetch"; + this.notification.add( + _t("Couldn't connect to OpenAI server please check your Credentials"), + { type: 'danger', sticky: false }, + ) + $(event.currentTarget).prop("disabled", false); + }); + }, + /* For copying the Answer to the clipboard */ + copy: function(event) { + var textToCopy = $("#result_area").val(); + var tempTextarea = $('