8c12d5e778
- Custom inline form (EN/NO/UK/PL lang switcher) replacing generic stub - Engine selector: Azure gpt-4o-mini (default), gpt-4o, GPU cuttlefish, regex-only - Entity type toggles: names, organisations, places, dates of birth - Output formats: contextual role tags, generic [PERSON], Norwegian pseudonyms - Keep officials mode: judges/experts kept as [JUDGE: Andersen] format - Exempt names list: specific names excluded from redaction - Hint paragraphs explaining each option in all four languages - Backend: engine routing, callGpuLlm(), applyGenericTags(), applyPseudonymization() - AzureOpenAiGateway: withDeployment() clone pattern for per-call model override Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
67 lines
2.3 KiB
PHP
67 lines
2.3 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
require_once __DIR__ . '/../includes/LegalTools.php';
|
|
|
|
dbnToolsRequireMethod('POST');
|
|
dbnToolsRequireAuth();
|
|
$input = dbnToolsJsonInput(400000);
|
|
|
|
dbnToolsWithTelemetry('redact', '', function () use ($input): array {
|
|
$text = dbnToolsString($input, 'text', 128000);
|
|
$mode = (string)($input['mode'] ?? 'standard');
|
|
$region = dbnToolsNormalizeRegion($input['region'] ?? 'nordic');
|
|
$language = dbnToolsNormalizeLanguage($input['language'] ?? 'en');
|
|
|
|
$validEngines = ['azure_mini', 'azure_full', 'gpu', 'regex'];
|
|
$engine = in_array((string)($input['engine'] ?? ''), $validEngines, true)
|
|
? (string)$input['engine']
|
|
: 'azure_mini';
|
|
|
|
$validFormats = ['contextual', 'generic', 'pseudonym'];
|
|
$outputFormat = in_array((string)($input['output_format'] ?? ''), $validFormats, true)
|
|
? (string)$input['output_format']
|
|
: 'contextual';
|
|
|
|
$keepOfficials = (bool)($input['keep_officials'] ?? false);
|
|
|
|
$aliases = [];
|
|
$rawAliases = $input['aliases'] ?? [];
|
|
if (is_array($rawAliases)) {
|
|
foreach (array_slice($rawAliases, 0, 20) as $item) {
|
|
if (!is_array($item)) {
|
|
continue;
|
|
}
|
|
$original = substr(trim((string)($item['original'] ?? '')), 0, 100);
|
|
$alias = substr(trim((string)($item['alias'] ?? '')), 0, 100);
|
|
if ($original !== '' && $alias !== '') {
|
|
$aliases[] = ['original' => $original, 'alias' => $alias];
|
|
}
|
|
}
|
|
}
|
|
|
|
$exemptNames = [];
|
|
$rawExempt = $input['exempt_names'] ?? [];
|
|
if (is_array($rawExempt)) {
|
|
foreach (array_slice($rawExempt, 0, 20) as $name) {
|
|
$name = substr(trim((string)$name), 0, 100);
|
|
if ($name !== '') {
|
|
$exemptNames[] = $name;
|
|
}
|
|
}
|
|
}
|
|
|
|
$rawTypes = $input['redact_types'] ?? [];
|
|
$redactTypes = [
|
|
'names' => ($rawTypes['names'] ?? true) !== false,
|
|
'orgs' => ($rawTypes['orgs'] ?? true) !== false,
|
|
'places' => ($rawTypes['places'] ?? true) !== false,
|
|
'dob' => ($rawTypes['dob'] ?? true) !== false,
|
|
];
|
|
|
|
return (new DbnLegalToolsService())->redact(
|
|
$text, $mode, $region, $language, $aliases,
|
|
$engine, $outputFormat, $keepOfficials, $exemptNames, $redactTypes
|
|
);
|
|
});
|