Files
html/api/ambre-v139-quick.php
opus 03c2699122
Some checks failed
WEVAL NonReg / nonreg (push) Has been cancelled
auto-sync-0030
2026-04-22 00:30:04 +02:00

11 lines
521 B
PHP

<?php
header("Content-Type: application/json");
echo json_encode([
"v15_png" => count(glob("/var/www/html/api/ambre-pw-tests/output/v15-*.png")),
"v14_png" => count(glob("/var/www/html/api/ambre-pw-tests/output/v14-*.png")),
"tesseract" => trim(@shell_exec("which tesseract") ?: "NO"),
"rembg" => trim(@shell_exec("which rembg") ?: "NO"),
"yt_api" => trim(@shell_exec("python3 -c 'import youtube_transcript_api' 2>&1 | head -1") ?: "OK"),
"wevia_size" => filesize("/var/www/html/wevia.html"),
]);