UNPKG

proctor-ai-sdk

Version:

A powerful SDK for preventing cheating during online exams using face detection, voice detection, and tab monitoring.

15 lines (11 loc) 471 B
//⬅️ Load models import * as faceapi from "face-api.js"; export const loadModels = async (modelPath = "/models") => { await Promise.all([ faceapi.nets.tinyFaceDetector.loadFromUri(modelPath), faceapi.nets.faceExpressionNet.loadFromUri(modelPath), faceapi.nets.faceLandmark68Net.loadFromUri(modelPath), faceapi.nets.faceRecognitionNet.loadFromUri(modelPath), ]); console.log("✅ Face-api.js models loaded from", modelPath); };