1. What is Davix AI Engine? #
Davix AI Engine is a WordPress plugin that adds AI-powered chat, content tools, and automation to your site. It is built around multiple modules that work together: chatbot, theming, LLM index, forms automation, Telegram human handoff, comment/review auto-replies, AI Writer, and a debug log viewer.
At a high level, Davix AI Engine lets your site:
- Show a floating AI chatbot bubble and a full-page chat.
- Connect to the OpenAI API to generate AI answers.
- Expose your site’s content via an LLM index (JSON + text feed).
- Capture form submissions and generate AI-powered email replies.
- Forward conversations to humans via Telegram (Pro).
- Automatically reply to comments and WooCommerce reviews (Pro).
- Use an AI Writer sidebar in the Gutenberg editor (Pro).
- Inspect activity via a central debug log viewer.
These features are described in the full documentation and readme.
image IMAGE PLACEHOLDER: Screenshot of Davix AI Engine admin menu and submenus in the WordPress dashboard sidebar (Chatbot, LLM Index, Forms, AI Writer, Auto-Reply, Debug Logs, About). IMAGE image
2. Free vs Pro: How the Features Are Split #
Davix AI Engine is designed with a clear Free vs Pro model.
Free version includes:
- Chatbot widget + full-page shortcode
- Floating bubble + popup.
- Full-page chat via
.
- Chatbot theming basics & OpenAI integration
- Base light/dark colors.
- Fixed OpenAI model:
gpt-4o-mini. - System prompt and temperature.
- Optional site-search grounding for posts/pages.
- LLM Index builder
- JSON endpoint:
/wp-json/davix/v1/llm-index - Text endpoint:
/llm.txt
- JSON endpoint:
- Forms module basics
- Capture entries from supported form providers (e.g., SureForms).
- Store entries.
- Predefined reply text and AI notice.
- Manual AI usage using main OpenAI key.
- Debug Log viewer
- Logging for chatbot, forms, and other modules.
- Admin menu & About page
Pro version adds:
- Advanced chatbot theming
- Human message colors.
- Extra color controls in both light and dark themes.
- OpenAI model selection
- Choose any chat-capable model (Free is fixed to
gpt-4o-mini).
- Choose any chat-capable model (Free is fixed to
- Extended Forms automation
- Auto-generated replies.
- Auto-send email replies.
- Search grounding across posts, pages, and products.
- Include/exclude URL scopes.
- Email templates (from, reply-to, subject, body).
- Provider filters for auto emails and Telegram alerts.
- Telegram live chat / human handoff
- Modes: AI only, AI + human toggle, human only.
- Rate limiting, availability, consent options.
- Comment & WooCommerce review auto-replies
- Automatic AI replies.
- Separate AI settings for comments and reviews.
- Predefined templates and AI notice.
- Telegram notifications per status.
- AI Writer – Gutenberg sidebar
- Draft generation and rewriting.
- Tone/length/language controls.
- Image and alt-text helpers.
- Role-based access and per-post overrides.
All of the above is explicitly listed in your documentation and readme.
3. Which Modules Are Included #
Davix AI Engine is organized into modules that you see in the admin menu:
- Chatbot
- LLM Index
- Forms
- AI Writer (Pro)
- Auto-Reply (Pro)
- Debug Logs
- About
Each module has its own settings page and behavior. The rest of the documentation (later articles) will go module by module.
image IMAGE PLACEHOLDER: Screenshot of the “About” page explaining main tabs (General, OpenAI Integration, Login Required, Buttons, Shortcode) and showing overview text. IMAGE image
4. How the Plugin Works Internally (High-Level) #
From a high-level technical view:
- It uses WordPress REST API to communicate with the front-end chat UI, LLM index, AI Writer, and Telegram endpoints.
- It uses WordPress admin menus, shortcodes, meta boxes, and AJAX to integrate into the dashboard.
- It uses the OpenAI API for all AI operations.
- It uses the Telegram Bot API for Telegram-based features.
- It uses Freemius (
my_fs()->can_use_premium_code()) to gate Pro features.
This means some menus, settings, or options only appear when Pro code is active and a valid license is detected, which will be mentioned in each article where relevant.

