

Floating "Ask AI" button with animated orbital ring, shown on a live site
OZY AI Chatbot turns your WordPress website into an intelligent, conversational assistant. Visitors ask questions and get instant, accurate answers — grounded strictly in your own website content.
Unlike a general chatbot, this assistant is scope-locked: it only talks about your website and its services. If a visitor asks something off-topic — or tries to trick it into writing code, essays, or acting as a free general-purpose AI — it politely declines and steers them back to your business. This protects your API budget and keeps the conversation on-brand.
[ozy_ai_chatbot]ozy_ai_providers filteradd_filter( 'ozy_ai_providers', function( $providers ) {
$providers['mistral'] = [
'label' => 'Mistral AI',
'models' => [ 'mistral-large-latest', 'mistral-small-latest' ],
'api_url' => 'https://api.mistral.ai/v1/chat/completions',
'key_url' => 'https://console.mistral.ai/api-keys',
];
return $providers;
} );
[ozy_ai_chatbot]
This plugin connects to the following third-party services. Data is only transmitted when a visitor submits a question in the chat widget, or when you use an admin feature such as “Test Connection”.
Depending on the provider you configure, the visitor’s question and relevant text excerpts from your own website are sent to one of these services:
No AI provider request is made until a visitor submits a question. The data sent is limited to the visitor’s question and relevant text excerpts scraped from your own website pages. No personal data beyond what the visitor types is transmitted. Site owners are responsible for disclosing this third-party processing in their own privacy policy.
The plugin loads the “Rethink Sans” typeface from Google Fonts (https://fonts.google.com/). This causes the visitor’s browser to connect to Google’s servers, which may transmit the visitor’s IP address to Google. Privacy policy: https://policies.google.com/privacy
To disable the font, add this to your theme’s functions.php:
add_action( 'wp_enqueue_scripts', function() {
wp_dequeue_style( 'ozy-rethink-sans' );
wp_deregister_style( 'ozy-rethink-sans' );
}, 20 );