17 lines
439 B
PHP
Executable File
17 lines
439 B
PHP
Executable File
|
|
<?php
|
|
set_time_limit(0); // Temps illimité
|
|
ini_set('memory_limit', '2G');
|
|
|
|
$data = json_decode(file_get_contents('php://input'), true);
|
|
$huge_text = $data['content'];
|
|
|
|
// On envoie à la Forge Elite via le moteur Multi-Agents
|
|
$process = popen("python3 /opt/wevads/scripts/document-forge-elite.py", "w");
|
|
fwrite($process, $huge_text);
|
|
pclose($process);
|
|
|
|
echo json_encode(["status" => "Processing massive document in background..."]);
|
|
?>
|
|
|