forked from guohuadeng/app-odoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__manifest__.py
81 lines (78 loc) · 3 KB
/
__manifest__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# -*- coding: utf-8 -*-
# Created on 2023-02-016
# author: 欧度智能,https://www.odooai.cn
# email: [email protected]
# resource of odooai
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
# Copyright (c) 2020-Present InTechual Solutions. (<https://intechualsolutions.com/>)
{
'name': 'ChatGPT4, China Ali,AiGC Center.Ai服务中心,聚合全网Ai',
'version': '16.23.09.27',
'author': 'odooai.cn',
'company': 'odooai.cn',
'maintainer': 'odooai.cn',
'category': 'Website/Website',
'website': 'https://www.odooai.cn',
'live_test_url': 'https://demo.odooapp.cn',
'license': 'LGPL-3',
'sequence': 10,
'images': ['static/description/banner.gif'],
'summary': '''
ChatGpt Odoo AI Center. Multi Ai aigc support with Ali Qwen Ai, Azure Ai, Baidu Ai,etc..
Support chatgpt 4 32k, Integration All ChatGpt Api and Azure OpenAI.
Easy Chat channel with several ChatGPT Robots and train.
''',
'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.
Base on is_chatgpt_integration from InTechual Solutions.
1. Multi ChatGpt openAI robot Connector. Chat and train.
2. Multi Ai support including Azure Ai, Alibaba Ai, Baidu Ai, Chatgpt 4, Chatgpt 3.5 Turbo, Chatgpt 3 Davinci.
3. Bind ChatGpt Api to user. So we can chat to robot user or use ChatGpt Channel for Group Chat.
4. White and black List for ChatGpt.
5. Setup Demo Chat time for every new user.
6. Easy Start and Stop ChatGpt.
7. Evaluation the ai robot to make better response. This training.
8. Add api support Connect the Microsoft Azure OpenAI Service.
9. Can set Synchronous or Asynchronous mode for Ai response.
10.Filter Sensitive Words Setup.
11. Multi-language Support. Multi-Company Support.
12. Support Odoo 16,15,14,13,12, Enterprise and Community and odoo.sh Edition.
13. Full Open Source.
''',
'depends': [
'base',
'app_odoo_customize',
'base_setup',
'mail',
'queue_job',
],
'data': [
'security/ir.model.access.csv',
'security/ir_rules.xml',
'data/mail_channel_data.xml',
'data/ai_robot_data.xml',
'data/user_partner_data.xml',
'data/ir_config_parameter.xml',
'views/res_config_settings_views.xml',
'views/ai_robot_views.xml',
'views/res_partner_ai_use_views.xml',
'views/res_users_views.xml',
'views/mail_channel_views.xml',
],
'assets': {
'mail.assets_messaging': [
'app_chatgpt/static/src/models/*.js',
],
'mail.assets_model_data': [
'app_chatgpt/static/src/models_data/*.js',
],
'web.assets_backend': [
'app_chatgpt/static/src/components/*/*.xml',
],
},
'external_dependencies': {'python': ['openai']},
'installable': True,
'application': True,
'auto_install': False,
}