Log flagged prompts

Created on 18 February 2025, about 1 month ago

Problem/Motivation

When loading content in bulk to a vector database, certain paragraphs may be flagged by moderation.
The interface does not show exactly what content caused the issue so that it can be addressed.

Proposed resolution

Add code similar to this to OpenAiProvider.php:
(lines 626-628)

if (!empty($response['results'][0]['flagged'])) {
$moderation_alert = 'This prompt was flagged by the moderation model: ' . $prompt;
\Drupal::logger('ai_provider_openai')->notice($moderation_alert);
throw new AiUnsafePromptException('The prompt was flagged by the moderation model.');
}

Feature request
Status

Active

Version

1.0

Component

Code

Created by

🇺🇸United States mindbet

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

Production build 0.71.5 2024