formcierge_chat_rate_limit
Filter
Since v1.2.0
Modify the AI chat rate limit — the maximum number of AI generation requests a single user can make per minute.
Parameters
$limit
int
Requests per minute per user. Default: 10.
includes/API/AIEndpoint.php
Basic Usage
add_filter( 'formcierge_chat_rate_limit', function ( $limit ) {
return current_user_can( 'manage_options' ) ? 30 : $limit;
} );