diff --git a/app/Http/Controllers/InterviewController.php b/app/Http/Controllers/InterviewController.php index b09391b..c8a404e 100644 --- a/app/Http/Controllers/InterviewController.php +++ b/app/Http/Controllers/InterviewController.php @@ -856,9 +856,12 @@ public function uploadTabScreenshot(Request $request, $id) $relativePath = '/' . $subDir . '/' . $filename; $fullFilePath = $destinationPath . '/' . $filename; - // Automatically analyze candidate system screen capture using AI Vision Engine + // Automatically analyze candidate system screen capture using AI Vision Engine (disabled for now) + $aiVerdict = null; + /* $aiDetector = new \App\Services\AiCheatingDetectorService(); $aiVerdict = $aiDetector->analyzeScreenshot($fullFilePath); + */ $screenshotEntry = [ 'url' => $relativePath, diff --git a/resources/views/interview/show.blade.php b/resources/views/interview/show.blade.php index 303dc8f..afc01d7 100644 --- a/resources/views/interview/show.blade.php +++ b/resources/views/interview/show.blade.php @@ -319,6 +319,15 @@