bemade-addons/openwebui_integration/__manifest__.py

35 lines
924 B
Python
Raw Normal View History

2025-01-16 18:42:16 -05:00
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'OpenWebUI Integration',
2025-02-18 14:55:35 -05:00
'version': '18.0.1.1.0',
2025-02-18 08:55:09 -05:00
'summary': 'Core integration with OpenWebUI',
2025-01-16 18:42:16 -05:00
'sequence': 10,
'description': """
OpenWebUI Integration
=====================
2025-02-18 08:55:09 -05:00
This module provides core integration with OpenWebUI.
2025-01-16 18:42:16 -05:00
Features:
---------
* Connect to OpenWebUI API
* Manage models and configurations
2025-02-18 08:55:09 -05:00
* Base bot functionality and configuration
* Authentication and access control
2025-01-16 18:42:16 -05:00
""",
'category': 'Discuss',
'website': 'https://www.odoo.com/app/discuss',
'depends': ['mail'],
'data': [
'security/security.xml',
'security/ir.model.access.csv',
'views/res_company_views.xml',
],
'installable': True,
'application': False,
'auto_install': False,
'license': 'LGPL-3',
2025-02-18 08:55:09 -05:00
'i18n': True,
2025-02-18 14:55:35 -05:00
'post_init_hook': 'post_init_hook',
2025-01-16 18:42:16 -05:00
}