Files
odoo-ai/addons/activeblue_ai/__manifest__.py
Carlos Garcia 992d2c2775 feat(addon): add ActiveBlue AI bot to Odoo Discuss
- Create res.partner for the AI bot (appears in DM contacts)
- Override mail.channel.message_post to intercept direct messages
  to the bot partner and forward them to the agent service
- Post the agent reply back into the Discuss channel as the bot
- Add discuss to depends; load res_partner_bot.xml data

Users can now open Discuss -> New Message -> search 'ActiveBlue AI'
to start a conversation with the agent.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-24 22:14:00 -04:00

39 lines
1.3 KiB
Python

{
'name': 'ActiveBlue AI',
'version': '18.0.0.1.0',
'summary': 'Multi-agent AI assistant for Odoo 18',
'description': """
ActiveBlue AI integrates a multi-agent AI system into Odoo 18.
Features a Master AI with 8 specialist agents for finance, accounting,
CRM, sales, project management, eLearning, expenses, and HR.
""",
'author': 'ActiveBlue',
'website': 'https://activeblue.net',
'category': 'Productivity',
'license': 'LGPL-3',
'depends': ['base', 'mail', 'web', 'discuss'],
'data': [
'security/res_groups.xml',
'security/ir.model.access.csv',
'data/res_partner_bot.xml',
'data/ir_cron.xml',
'views/ab_ai_bot_views.xml',
'views/ab_ai_directive_views.xml',
'views/ab_ai_log_views.xml',
'views/ab_ai_registry_views.xml',
'views/menus.xml',
],
'assets': {
'web.assets_backend': [
'activeblue_ai/static/src/css/activeblue_ai.css',
'activeblue_ai/static/src/xml/systray.xml',
'activeblue_ai/static/src/xml/ai_panel.xml',
'activeblue_ai/static/src/js/components/ai_panel.js',
'activeblue_ai/static/src/js/components/systray_button.js',
],
},
'installable': True,
'application': True,
'auto_install': False,
}