7 lines
243 B
PHP
7 lines
243 B
PHP
<?php
|
|
header("Content-Type:text/plain");
|
|
$t = $_GET["t"] ?? "ETHICA_API_2026_SECURE";
|
|
if ($t !== "ETHICA_API_2026_SECURE") { die("NO"); }
|
|
$b = (int)($_GET["batch"] ?? 50);
|
|
echo shell_exec("python3 /opt/weval-l99/ethica-enrich-dz.py $b 2>&1");
|