Skip to content

Instantly share code, notes, and snippets.

View RomanSima's full-sized avatar

Roman Sima RomanSima

View GitHub Profile
@jordymeow
jordymeow / websearch.php
Last active July 8, 2024 06:20
Web Search (or similar) for AI Engine
<?php
add_filter( "mwai_context_search", 'my_web_search', 10, 3 );
function my_web_search( $context, $query, $options = [] ) {
// If the context is already provided, return it as is.
if ( ! empty( $context ) ) {
return $context;
}