diff --git a/index.php b/index.php index 0d2ef00..b81f856 100644 --- a/index.php +++ b/index.php @@ -7,7 +7,7 @@ if ($_SERVER['REQUEST_METHOD'] === 'POST') { if (!empty($userMessage)) { // Python-Skript aufrufen - $command = escapeshellcmd("python3 assistant_api.py " . escapeshellarg($userMessage)); + $command = escapeshellcmd("python3 assistant.py " . escapeshellarg($userMessage)); $response = shell_exec($command); $assistantResponse = json_decode($response, true); }