related_post_query_args

You can add custom arguments via filter hook as following.

add_filter('related_post_query_args','related_post_query_args_20200126');

function related_post_query_args_20200126($args) {
    $args['s'] = 'Template'; // search term
    return $args;
}