1. Where to Enter Your OpenAI API Key #
The readme says:
- Add your OpenAI key
3.1. Go to Davix AI Engine → Chatbot → OpenAI Integration.
3.2. Paste your OpenAI API key.
3.3. Save changes.
Step-by-step:
- In WordPress admin, go to Davix AI Engine → Chatbot.
- Open the OpenAI Integration tab.
- Locate the field labeled something like OpenAI API key.
- Paste your key into this field.
- Click Save Changes at the bottom.
image IMAGE PLACEHOLDER: Screenshot of the Chatbot “OpenAI Integration” tab highlighting the OpenAI API key field and Save button. IMAGE image
According to the docs, all AI features use your own OpenAI key.
2. Selecting an OpenAI Model #
From your documentation:
- Free:
- Model fixed to
gpt-4o-mini.
- Model fixed to
- Pro:
- You can choose any supported chat-capable model via the UI.
Step-by-step:
- In the same OpenAI Integration tab, locate the model field or dropdown.
- In Free:
- The model will be locked to
gpt-4o-mini; you cannot change it from the UI.
- The model will be locked to
- In Pro:
- You can select from available models in a dropdown (the plugin uses OpenAI chat models).
3. Setting the System Prompt and Temperature #
The OpenAI Integration tab also includes:
- system_prompt – used as the base instruction for the AI.
- temperature – controls how creative vs deterministic the AI should be.
Step-by-step:
- In OpenAI Integration, find the System Prompt field.
- Enter the instructions you want the chatbot to follow (for example, tone, type of answers).
- Find the Temperature field.
- Set a numeric value (docs mention default values like 0.6 for forms AI, but for Chatbot temperature is configurable in Chatbot settings).
- Save changes.
The plugin then uses these values when calling OpenAI (e.g., handle_chat_request() uses openai_api_key, openai_model, system_prompt, and temperature).
4. Enabling Site Search Grounding #
The documentation explains that OpenAI Integration can optionally ground responses in your site content:
Available toggles:
enable_site_searchsearch_postssearch_pagessearch_products(some options Pro-only when saving)
Step-by-step:
- In OpenAI Integration, enable the site search toggle if present.
- Choose which content types should be searched:
- Posts
- Pages
- Products (if WooCommerce and Pro-level search are available)
- Save changes.
When a user asks a question, the plugin can perform site search and pass relevant excerpts as context to OpenAI, improving accuracy.
image IMAGE PLACEHOLDER: Screenshot of OpenAI Integration tab showing site search toggles (enable site search, search posts, search pages, search products). IMAGE image

