Skip to content

RAG-powered documentation assistant that converts, processes, and provides semantic search capabilities for Odoo's technical documentation. Supports multiple Odoo versions with an interactive chat interface powered by LLM models.

License

Apache-2.0, CC-BY-SA-4.0 licenses found

Licenses found

Apache-2.0
LICENSE
CC-BY-SA-4.0
LICENSE-DOCS
Notifications You must be signed in to change notification settings

MFYDev/odoo-expert

Odoo Expert

RAG-Powered Odoo Documentation Assistant

Integrating Odoo Expert into Odoo Official Documentation Website Demo Video: https://fanyangmeng.blog/introducing-odoo-expert-streaming-api-integration/

Initial Version Demo Video: https://fanyangmeng.blog/introducing-odoo-expert/

⚠️ PLEASE NOTE: This project is in ALPHA stage This is an early release that is still under heavy development. Breaking changes can and will happen at any time without prior notice. The API, database schema, and core functionality may change significantly between versions. While we welcome testing and feedback, this version is not recommended for production use. This project is not sponsored or endrosed by Odoo S.A. or Odoo Inc. yet. I am developing this project as a personal project with the intention of helping the Odoo community on my own.

A comprehensive documentation processing and chat system that converts Odoo's documentation to a searchable knowledge base with an AI-powered chat interface. This tool supports multiple Odoo versions (16.0, 17.0, 18.0) and provides semantic search capabilities powered by OpenAI embeddings.

Initial Intention Behind This Project

The project was conceived with the vision of enhancing the Odoo documentation experience. The goal was to create a system similar to Perplexity or Google, where users could receive AI-powered answers directly within the documentation website, complete with proper source links. This eliminates the need for users to manually navigate through complex documentation structures.

How it works?

graph TD
    A[Odoo Documentation] -->|pull_rawdata.sh| B[Raw Data]
    B -->|process-raw| C[Markdown Files]
    C -->|process-docs| D[(Database with Embeddings)]
    D -->|serve --mode ui| E[Streamlit UI]
    D -->|serve --mode api| F[REST API]
    
    subgraph "Data Processing Pipeline"
        B
        C
        D
    end
    
    subgraph "Interface Layer"
        E
        F
    end

    style A fill:#f9f,stroke:#333,stroke-width:2px
    style D fill:#bbf,stroke:#333,stroke-width:2px
    style E fill:#bfb,stroke:#333,stroke-width:2px
    style F fill:#bfb,stroke:#333,stroke-width:2px
Loading

The system operates through a pipeline of data processing and serving steps:

  1. Documentation Pulling: Fetches raw documentation from Odoo's repositories
  2. Format Conversion: Converts RST files to Markdown for better AI processing
  3. Embedding Generation: Processes Markdown files and stores them with embeddings
  4. Interface Layer: Provides both UI and API access to the processed knowledge base

Features

Core Functionality

  • Documentation Processing: Automated conversion of RST to Markdown with smart preprocessing
  • Semantic Search: Real-time semantic search across documentation versions
  • AI-Powered Chat: Context-aware responses with source citations
  • Multi-Version Support: Comprehensive support for Odoo versions 16.0, 17.0, and 18.0
  • Always updated: Efficiently detect and process documentation updates.

Interface Options

  • Web UI: Streamlit-based interface for interactive querying
  • REST API: Authenticated endpoints for programmatic access
  • CLI: Command-line interface for document processing and chat

Prerequisites

  • Docker and Docker Compose
  • PostgreSQL with pgvector extension
  • OpenAI API access
  • Git

if you want to do source install, you need to install the following dependencies:

  • Python 3.10+
  • Pandoc
  • PostgreSQL with pgvector extension

Installation & Usage

Assuming the table name is odoo_docs. If you have a different table name, please update the table name in the following SQL commands.

Docker Compose Install

  1. Download the docker-compose.yml file to your local machine.
  2. Set up environment variables in the .env file by using the .env.example file as a template.
     OPENAI_API_KEY=your_openai_api_key
     OPENAI_API_BASE=https://api.openai.com/v1
     POSTGRES_USER=odoo_expert
     POSTGRES_PASSWORD=your_secure_password
     POSTGRES_DB=odoo_expert_db
     POSTGRES_HOST=db
     POSTGRES_PORT=5432
     LLM_MODEL=gpt-4o
     BEARER_TOKEN=comma_separated_bearer_tokens
     CORS_ORIGINS=http://localhost:3000,http://localhost:8501,https://www.odoo.com
     ODOO_VERSIONS=16.0,17.0,18.0
     SYSTEM_PROMPT=same as .env.example
     # Data Directories
     RAW_DATA_DIR=raw_data
     MARKDOWN_DATA_DIR=markdown
  3. Run the following command:
    docker-compose up -d
  4. Pull the raw data and write to your PostgreSQL's table:
    # Pull documentation (uses ODOO_VERSIONS from .env)
    docker compose run --rm odoo-expert ./pull_rawdata.sh
    
    # Convert RST to Markdown
    docker compose run --rm odoo-expert python main.py process-raw
    
    # Process documents
    docker compose run --rm odoo-expert python main.py process-docs
  5. Access the UI at port 8501 and the API at port 8000
  6. Docker compose will automatically pull the latest changes and update the system once a day, or you can manually update by running the following command:
    docker compose run --rm odoo-expert python main.py check-updates

Source Install

  1. Install PostgreSQL and pgvector:

    # For Debian/Ubuntu
    sudo apt-get install postgresql postgresql-contrib
    
    # Install pgvector extension
    git clone https://github.com/pgvector/pgvector.git
    cd pgvector
    make
    make install
  2. Create database and enable extension:

    CREATE DATABASE odoo_expert;
    \c odoo_expert
    CREATE EXTENSION vector;
  3. Set up the database schema by running the SQL commands in src/sqls/init.sql.

  4. Create a .env file from the template and configure your environment variables:

    cp .env.example .env
    # Edit .env with your settings including ODOO_VERSIONS and SYSTEM_PROMPT
  5. Pull Odoo documentation:

    chmod +x pull_rawdata.sh
    ./pull_rawdata.sh  # Will use ODOO_VERSIONS from .env
  6. Convert RST to Markdown:

    python main.py process-raw
  7. Process and embed documents:

    python main.py process-docs
  8. Launch the chat interface:

    python main.py serve --mode ui
  9. Launch the API:

    python main.py serve --mode api
  10. Access the UI at port 8501 and the API at port 8000

  11. To sync with the latest changes in the Odoo documentation, run:

    python main.py check-updates

API Endpoints

The project provides a REST API for programmatic access to the documentation assistant.

Authentication

All API endpoints require Bearer token authentication. Add your API token in the Authorization header:

Authorization: Bearer your-api-token

Endpoints

POST /api/chat Query the documentation and get AI-powered responses.

Request body:

{
    "query": "string",        // The question about Odoo
    "version": integer,       // Odoo version (160, 170, or 180)
    "conversation_history": [ // Optional
        {
            "user": "string",
            "assistant": "string"
        }
    ]
}

Response:

{
    "answer": "string",       // AI-generated response
    "sources": [              // Reference documents used
        {
            "url": "string",
            "title": "string"
        }
    ]
}

Example:

curl -X POST "http://localhost:8000/api/chat" \
-H "Authorization: Bearer your-api-token" \
-H "Content-Type: application/json" \
-d '{
    "query": "How do I install Odoo?",
    "version": 180,
    "conversation_history": []
}'

POST /api/stream Query the documentation and get AI-powered responses in streaming format.

Request body:

{
    "query": "string",        // The question about Odoo
    "version": integer,       // Odoo version (160, 170, or 180)
    "conversation_history": [ // Optional
        {
            "user": "string",
            "assistant": "string"
        }
    ]
}

Response: Stream of text chunks (text/event-stream content type)

Example:

curl -X POST "http://localhost:8000/api/stream" \
-H "Authorization: Bearer your-api-token" \
-H "Content-Type: application/json" \
-d '{
    "query": "How do I install Odoo?",
    "version": 180,
    "conversation_history": []
}'

Browser Extension Setup

The project includes a browser extension that enhances the Odoo documentation search experience with AI-powered responses. To set up the extension:

  1. Open Chrome/Edge and navigate to the extensions page:

    • Chrome: chrome://extensions/
    • Edge: edge://extensions/
  2. Enable "Developer mode" in the top right corner

  3. Click "Load unpacked" and select the browser-ext folder from this project

  4. The Odoo Expert extension icon should appear in your browser toolbar

  5. Make sure your local API server is running (port 8000)

The extension will now enhance the search experience on Odoo documentation pages by providing AI-powered responses alongside the traditional search results.

Future Roadmap

Please see GitHub Issues for the future roadmap.

What Are the Potential Applications?

While initially focused on Odoo documentation, the system's architecture makes it highly adaptable for various documentation management scenarios:

  • Internal knowledge base systems
  • Technical documentation portals
  • Customer support systems
  • Educational content management
  • API documentation assistance

The underlying RAG (Retrieval-Augmented Generation) architecture can be extended to process and serve any structured documentation, making it valuable for organizations looking to enhance their documentation accessibility and searchability.

Support

If you encounter any issues or have questions, please:

Check the known issues Create a new issue in the GitHub repository Provide detailed information about your environment and the problem

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Thanks for the following contributors during the development of this project:

License

This project is licensed under Apache License 2.0: No warranty is provided. You can use this project for any purpose, but you must include the original copyright and license.

Extra license CC-BY-SA 4.0 to align with the original Odoo/Documentation license.

About

RAG-powered documentation assistant that converts, processes, and provides semantic search capabilities for Odoo's technical documentation. Supports multiple Odoo versions with an interactive chat interface powered by LLM models.

Topics

Resources

License

Apache-2.0, CC-BY-SA-4.0 licenses found

Licenses found

Apache-2.0
LICENSE
CC-BY-SA-4.0
LICENSE-DOCS

Stars

Watchers

Forks

Sponsor this project

Packages

No packages published