"deepseek-r1:1.5b", "prompt" => $full, "stream" => false ]); $ch = curl_init("http://localhost:11434/api/generate"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_HTTPHEADER, ["Content-Type: application/json"]); curl_setopt($ch, CURLOPT_POSTFIELDS, $payload); curl_setopt($ch, CURLOPT_TIMEOUT, 30); $result = curl_exec($ch); $code = curl_getinfo($ch, CURLINFO_HTTP_CODE); curl_close($ch); http_response_code($code); echo $result; exit; } readfile(__FILE__);