| Availability |
Odoo Online
Odoo.sh
On Premise
|
| Lines of code | 1306 |
| Technical Name |
senai_connector |
| License | OPL-1 |
| Website | https://sendigitech.com |
| Availability |
Odoo Online
Odoo.sh
On Premise
|
| Lines of code | 1306 |
| Technical Name |
senai_connector |
| License | OPL-1 |
| Website | https://sendigitech.com |
✦ AI Chat Assistant
Google Gemini · OpenAI (ChatGPT) · Anthropic (Claude) — directly in Odoo 19
Key Features
Persistent Floating Chat
A fixed tab on the right edge of every Odoo page. Click to open a sleek panel — no page change required.
Automatic Odoo Context
The assistant detects your current module (CRM, Sales, Accounting…) and automatically injects live data into every conversation.
Personal Conversation History
Each user has their own private conversation history, persisted in the database and resumable at any time.
Multi-LLM Support
Choose your AI provider — Google Gemini, OpenAI or Anthropic Claude. Switch anytime from the configuration.
Odoo-Native Security
Built-in User and Admin groups. Record rules enforce personal data isolation at the ORM level.
Developer Mixin
Inherit senai.mixin in any custom module to add AI capabilities in just 3 lines of code.
Screenshots
The floating tab is always visible — click to open the chat panel
Contextual conversation — the assistant reads your CRM/Sales/Accounting data in real time
Choose your AI provider and paste your API key — done in 30 seconds
Personal conversation history — resume any past conversation
Supported AI Providers
🔵 Google Gemini
Free tier available
API key from aistudio.google.com
gemini-2.5-flash
gemini-2.0-flash
🟢 OpenAI
ChatGPT models
API key from platform.openai.com
gpt-4o
gpt-4o-mini
🟠 Anthropic
Claude models
API key from console.anthropic.com
claude-opus-4-7
claude-sonnet-4-6
Getting Started in 3 Steps
Install the module
Upload the ZIP in Odoo Apps (Settings → Activate developer mode → Apps → Upload). The module installs with zero additional dependencies.
Enter your API key
Go to SenAI → Configuration, select your AI provider, paste your API key and save.
Assign access to users
In the same configuration, add users to SenAI Users. The floating chat immediately appears for them on every Odoo page.
Developer Mixin
Add AI to any custom model in 3 lines — the mixin handles authentication, fallback models and error handling automatically.
_name = 'my.model'
_inherit = ['my.model', 'senai.mixin']
def action_summarize(self):
self.ensure_one()
# Works with Gemini, OpenAI or Claude — whichever is configured
summary = self.action_ask_senai(
f"Summarize this record: {self.description}"
)
self.ai_summary = summary
Automatic Context — Supported Modules
| Odoo Module | Data injected into AI context |
|---|---|
| CRM | Leads by stage, expected revenue, responsible user |
| Sales | Orders by status, total amounts |
| Accounting | Customer invoices, supplier bills, payment states, totals |
| Inventory | Transfers by status |
| Purchase | Purchase orders, total amounts |
| Project | Tasks by stage |
| HR / Employees | Employees by department |
FAQ
Does this module send my Odoo data to third-party servers?
Only the data from your current Odoo module (e.g. CRM leads count, invoice totals) is sent to the AI provider you configured. No full database export, no sensitive personal data beyond what you explicitly ask about.
Which Odoo editions are supported?
Both Community and Enterprise. The module only depends on base and web — no Enterprise-specific modules required.
Do I need to install any Python packages?
No. All API calls use Python's built-in urllib library. Nothing to pip-install on your server.
Can multiple users share the same API key?
Yes. The admin configures one API key for the whole company. All authorized users share it transparently.
Is conversation data private between users?
Yes. Record-level security rules (ORM-level) ensure each user can only read, write and delete their own conversations. Admins can view all conversations via the back-office menu.
Odoo Proprietary License v1.0 This software and associated files (the "Software") may only be used (executed, modified, executed after modifications) if you have purchased a valid license from the authors, typically via Odoo Apps, or if you have received a written agreement from the authors of the Software (see the COPYRIGHT file). You may develop Odoo modules that use the Software as a library (typically by depending on it, importing it and using its resources), but without copying any source code or material from the Software. You may distribute those modules under the license of your choice, provided that this license is compatible with the terms of the Odoo Proprietary License (For example: LGPL, MIT, or proprietary licenses similar to this one). It is forbidden to publish, distribute, sublicense, or sell copies of the Software or modified copies of the Software. The above copyright notice and this permission notice must be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Please log in to comment on this module