Spaces:
Running
Running
File size: 18,423 Bytes
6d69a4c 51280c3 6d69a4c af99c56 6d69a4c aa387a3 6d69a4c 66919e5 aa387a3 66919e5 af99c56 66919e5 af99c56 6d69a4c af99c56 66919e5 af99c56 66919e5 aa387a3 66919e5 af99c56 66919e5 af99c56 6d69a4c af99c56 6d69a4c aa387a3 efaac09 8a699bc c7c27a1 8a699bc 6d69a4c af99c56 cb10dda af99c56 cb10dda af99c56 cb10dda af99c56 cb10dda af99c56 cb10dda af99c56 cb10dda af99c56 cb10dda af99c56 cb10dda af99c56 6d69a4c af99c56 6d69a4c af99c56 6d69a4c cb10dda af99c56 6d69a4c af99c56 6d69a4c af99c56 cb10dda 6d69a4c af99c56 cb10dda af99c56 75bf83f af99c56 6d69a4c af99c56 cb10dda 6d69a4c af99c56 6d69a4c 80fbc0a 6d69a4c 80fbc0a 9408a49 80fbc0a 9408a49 80fbc0a 9408a49 6d69a4c af99c56 6d69a4c aa387a3 6c6047f aa387a3 6c6047f aa387a3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 |
import initWasm, {
decrypt_serialized_u64_radix_flat_wasm
} from './concrete-ml-extensions-wasm/concrete_ml_extensions_wasm.js';
const SERVER = 'https://api.zama.ai';
let clientKey, serverKey;
let encTokens;
let encServerResult;
let keygenWorker;
let encryptWorker;
let sessionUid;
let taskId;
// Memory-efficient base64 encoding for large Uint8Array
function uint8ToBase64(uint8) {
return new Promise((resolve, reject) => {
const blob = new Blob([uint8]);
const reader = new FileReader();
reader.onload = function () {
const base64 = reader.result.split(',')[1];
resolve(base64);
};
reader.onerror = reject;
reader.readAsDataURL(blob);
});
}
// βββ local key cache helpers ββββββββββββββββββββββββββββββ
const KEYS_STORAGE_KEY = 'synthid_keys_v1';
/** base64 β Uint8Array (works in all browsers, avoids atob size limits) */
function base64ToUint8(base64) {
const binStr = atob(base64);
const len = binStr.length;
const bytes = new Uint8Array(len);
for (let i = 0; i < len; i++) bytes[i] = binStr.charCodeAt(i);
return bytes;
}
function getSavedKeys() { return JSON.parse(localStorage.getItem(KEYS_STORAGE_KEY) || '{}'); }
function saveKeys(map) { localStorage.setItem(KEYS_STORAGE_KEY, JSON.stringify(map)); }
function saveKeyset(uid, b64){ const m = getSavedKeys(); m[uid] = b64; saveKeys(m); }
const $ = id => document.getElementById(id);
const enable = (id, ok=true) => $(id).disabled = !ok;
const show = (id, visible=true) => $(id).hidden = !visible;
// Hide all spinners immediately
show('keygenSpin', false);
show('spin', false);
show('encIcon', false);
show('tokenizerSpin', false);
// Initialize WASM
(async () => {
try {
console.log('[Main] Initializing WASM module...');
await initWasm();
console.log('[Main] WASM module initialized successfully');
// Initialize the keygen worker
keygenWorker = new Worker(new URL('./keygen-worker.js', import.meta.url), { type: 'module' });
keygenWorker.onmessage = async function(e) {
if (e.data.type === 'success') {
const res = e.data.result;
console.log('[Main] Key generation successful');
console.log(`[Main] Client key size: ${res.clientKey.length} bytes`);
console.log(`[Main] Server key size: ${res.serverKey.length} bytes`);
clientKey = res.clientKey; serverKey = res.serverKey;
try {
// Initialize encryption worker
initEncryptWorkerWithKey(clientKey);
console.log('[Main] Sending server key to server...');
$('keygenStatus').textContent = 'Keys generated, sending server key...';
show('keygenSpin', true);
const formData = new FormData();
const serverKeyBlob = new Blob([serverKey], { type: 'application/octet-stream' });
const serverKeyFile = new File([serverKeyBlob], "server.key");
formData.append('key', serverKeyFile);
formData.append('task_name', 'synthid');
const addKeyResponse = await fetch(`${SERVER}/add_key`, {
method: 'POST',
body: formData
});
if (!addKeyResponse.ok) {
const errorText = await addKeyResponse.text();
throw new Error(`Server /add_key failed: ${addKeyResponse.status} ${errorText}`);
}
const { uid } = await addKeyResponse.json();
sessionUid = uid;
console.log('[Main] Server key sent and UID received:', sessionUid);
$('keygenStatus').textContent = 'Keys generated & UID received β';
enable('btnEncrypt');
// Persist clientKey β· uid for reuse
uint8ToBase64(clientKey)
.then(b64 => {
saveKeyset(sessionUid, b64);
console.log(`[Main] Saved clientKey for uid ${sessionUid} to localStorage`);
})
.catch(err => console.warn('[Main] Failed to save key:', err));
} catch (error) {
console.error('[Main] Server key submission error:', error);
$('keygenStatus').textContent = `Server key submission failed: ${error.message}`;
enable('btnEncrypt', false);
} finally {
show('keygenSpin', false);
}
} else {
console.error('[Main] Key generation error:', e.data.error);
$('keygenStatus').textContent = `Error generating keys: ${e.data.error}`;
show('keygenSpin', false);
}
};
} catch (e) {
console.error('[Main] Failed to initialize WASM module:', e);
$('keygenStatus').textContent = `Initialization Error: ${e.message}`;
throw e;
}
})();
$('btnKeygen').onclick = async () => {
if ($('keygenSpin').hidden === false) {
console.log('[Main] Keygen already in progress, ignoring click');
return;
}
show('keygenSpin', true);
$('keygenStatus').textContent = 'generatingβ¦';
try {
keygenWorker.postMessage({});
} catch (e) {
console.error('[Main] Key generation error:', e);
$('keygenStatus').textContent = `Error generating keys: ${e.message}`;
show('keygenSpin', false);
}
};
$('btnLoadSaved').onclick = async () => {
const saved = getSavedKeys();
const ids = Object.keys(saved);
if (!ids.length) {
alert('No saved keys found on this machine.');
return;
}
// Very lightweight UI: ask which uid to use
const uid = prompt(
`Saved key sets:\n${ids.join('\n')}\n\nEnter the uid you want to use:`,
ids[0]
);
if (!uid || !saved[uid]) {
alert('Invalid or unknown uid.');
return;
}
try {
sessionUid = uid;
clientKey = base64ToUint8(saved[uid]);
// Make sure we have an encryption worker ready
initEncryptWorkerWithKey(clientKey);
$('keygenStatus').textContent = `Loaded saved keys for ${uid} β`;
enable('btnEncrypt');
} catch (err) {
console.error('[Main] Failed to load key:', err);
alert(`Failed to load saved key: ${err.message}`);
}
};
// Add example text buttons
$('btnWatermarked').onclick = () => {
$('tokenInput').value = 'watermarking is useful for a variety of reasons like authentication, privacy';
$('tokenInput').dispatchEvent(new Event('input'));
};
// Add token counter functionality
$('tokenInput').addEventListener('input', () => {
const text = $('tokenInput').value.trim();
if (text && typeof llama3Tokenizer !== 'undefined') {
try {
const tokenIds = llama3Tokenizer.encode(text);
const tokenCount = tokenIds.length;
const TOKEN_LIMIT = 16;
if (tokenCount > TOKEN_LIMIT) {
$('encStatus').textContent = `β οΈ ${tokenCount}/${TOKEN_LIMIT} tokens - text too long`;
$('encStatus').style.color = '#d32f2f';
} else if (tokenCount < 10) {
$('encStatus').textContent = `β οΈ ${tokenCount}/${TOKEN_LIMIT} tokens - low reliability`;
$('encStatus').style.color = '#f57c00';
} else {
$('encStatus').textContent = `${tokenCount}/${TOKEN_LIMIT} tokens`;
$('encStatus').style.color = '';
}
} catch (e) {
// Tokenizer might not be ready yet
$('encStatus').textContent = '';
}
} else {
$('encStatus').textContent = '';
$('encStatus').style.color = '';
}
});
$('btnEncrypt').onclick = async () => {
const text = $('tokenInput').value.trim();
if (!text) {
console.error('[Main] No text provided for tokenization/encryption');
alert('Please enter text to encrypt.');
return;
}
if (!encryptWorker) {
console.error('[Main] Encryption worker not initialized');
alert('Encryption worker is not ready. Please generate keys first.');
return;
}
show('encryptSpin', true);
show('encIcon', false);
enable('btnEncrypt', false);
try {
console.log('[Main] Tokenizing text:', text);
const tokenIds = llama3Tokenizer.encode(text);
console.log('[Main] Token IDs:', tokenIds);
encryptWorker.postMessage({ type: 'encrypt', tokenIds });
} catch (error) {
console.error('[Main] Tokenization or encryption initiation error:', error);
show('encryptSpin', false);
enable('btnEncrypt', true);
alert(`Error during tokenization/encryption: ${error.message}`);
}
};
async function pollTaskStatus(currentTaskId, currentUid) {
try {
const statusResponse = await fetch(`${SERVER}/get_task_status?task_id=${currentTaskId}&uid=${currentUid}`);
if (!statusResponse.ok) {
const errorText = await statusResponse.text();
console.error(`[Poll] Error fetching status: ${statusResponse.status} ${errorText}`);
$('srvStatus').textContent = `Error checking status`;
show('spin', false);
return null;
}
const statusData = await statusResponse.json();
console.log('[Poll] Task status:', statusData);
// Parse and display user-friendly status messages
let userMessage = '';
let showComputing = false;
if (statusData.status === 'queued') {
// Extract position from details if available
const positionMatch = statusData.details?.match(/Position:\s*(\d+)\/(\d+)/);
if (positionMatch) {
const [, position, total] = positionMatch;
userMessage = `Waiting in queue (${position} of ${total})`;
} else {
userMessage = 'Waiting in queue...';
}
} else if (statusData.status === 'processing' || statusData.status === 'running') {
userMessage = 'Processing your request...';
showComputing = true;
} else if (statusData.status === 'success' || statusData.status === 'completed') {
userMessage = 'Processing complete!';
} else if (['failure', 'revoked', 'unknown', 'error'].includes(statusData.status.toLowerCase())) {
userMessage = 'Task failed. Please try again.';
} else {
// Fallback for any other status
userMessage = `Status: ${statusData.status}`;
}
$('srvStatus').textContent = userMessage;
$('srvComputing').hidden = !showComputing;
if (statusData.status === 'success' || statusData.status === 'completed') {
return statusData;
} else if (['failure', 'revoked', 'unknown', 'error'].includes(statusData.status.toLowerCase())) {
console.error('[Poll] Task failed or unrecoverable:', statusData);
show('spin', false);
return null;
} else {
setTimeout(() => pollTaskStatus(currentTaskId, currentUid).then(finalStatus => {
if (finalStatus && (finalStatus.status === 'success' || finalStatus.status === 'completed')) {
getTaskResult(currentTaskId, currentUid, 'synthid');
}
}), 5000);
return null;
}
} catch (e) {
console.error('[Poll] Polling exception:', e);
$('srvStatus').textContent = 'Connection error. Please check your network.';
show('spin', false);
return null;
}
}
async function getTaskResult(currentTaskId, currentUid, taskName) {
$('srvStatus').textContent = 'Retrieving results...';
try {
const resultResponse = await fetch(`${SERVER}/get_task_result?task_name=${taskName}&task_id=${currentTaskId}&uid=${currentUid}`);
if (!resultResponse.ok) {
const errorText = await resultResponse.text();
throw new Error(`Failed to get results`);
}
const resultArrayBuffer = await resultResponse.arrayBuffer();
encServerResult = new Uint8Array(resultArrayBuffer);
console.log(`[Main] Received encrypted result: ${encServerResult.length} bytes`);
$('encResult').value = `Encrypted result (${encServerResult.length} bytes)`;
const duration = ((performance.now() - window.taskStartTime) / 1000).toFixed(1);
$('srvStatus').textContent = `β Complete! (${duration}s)`;
enable('btnDecrypt');
} catch (e) {
const duration = window.taskStartTime ? ((performance.now() - window.taskStartTime) / 1000).toFixed(1) : 'N/A';
console.error(`[Main] /get_task_result failed after ${duration}s:`, e);
$('srvStatus').textContent = 'Failed to retrieve results. Please try again.';
} finally {
show('spin', false);
$('srvComputing').hidden = true;
}
}
$('btnSend').onclick = async () => {
if ($('spin').hidden === false) {
console.log('[Main] Task submission/polling already in progress, ignoring click');
return;
}
if (!sessionUid || !encTokens) {
alert('Please generate keys and encrypt text first.');
return;
}
show('encIcon', false);
show('spin', true);
$('srvStatus').textContent = 'Sending encrypted data...';
$('srvComputing').hidden = true; // Ensure it's hidden initially
window.taskStartTime = performance.now();
try {
const formData = new FormData();
formData.append('uid', sessionUid);
formData.append('task_name', 'synthid');
const encryptedInputBlob = new Blob([encTokens], { type: 'application/octet-stream' });
const encryptedInputFile = new File([encryptedInputBlob], "input.fheencrypted");
formData.append('encrypted_input', encryptedInputFile);
const startTaskResponse = await fetch(`${SERVER}/start_task`, {
method: 'POST',
body: formData
});
if (!startTaskResponse.ok) {
const errorText = await startTaskResponse.text();
throw new Error(`Server error: ${startTaskResponse.status}`);
}
const { task_id: newTaskId } = await startTaskResponse.json();
taskId = newTaskId;
console.log('[Main] Task submitted to server. Task ID:', taskId);
$('srvStatus').textContent = 'Request submitted. Checking status...';
pollTaskStatus(taskId, sessionUid).then(finalStatus => {
if (finalStatus && (finalStatus.status === 'success' || finalStatus.status === 'completed')) {
getTaskResult(taskId, sessionUid, 'synthid');
}
});
} catch (e) {
const duration = ((performance.now() - window.taskStartTime) / 1000).toFixed(2);
console.error(`[Main] Task submission failed after ${duration}s:`, e);
$('srvStatus').textContent = 'Failed to submit request. Please try again.';
show('spin', false);
$('srvComputing').hidden = true;
}
};
$('btnDecrypt').onclick = () => {
try {
console.log('[Main] Starting decryption...');
const dec = decrypt_serialized_u64_radix_flat_wasm(encServerResult, clientKey);
const [flag, score_scaled, total_g] = Array.from(dec);
const rawScore = Number(score_scaled) / 1e6;
console.log('[Main] Decryption successful');
console.log(`[Main] Result - flag: ${flag}, raw_score: ${rawScore}, total_g: ${total_g}`);
// Convert to confidence value between 0 and 1
const confidence = Math.max(0, Math.min(1, rawScore));
// Determine result based on confidence ranges
let resultText, confidenceText, resultClass;
if (confidence < 0.5) {
// Problematic range - should not be addressed according to user
resultText = 'β οΈ Inconclusive';
confidenceText = `Confidence: ${(confidence * 100).toFixed(1)}% (insufficient data)`;
resultClass = 'inconclusive';
} else if (confidence >= 0.5 && confidence < 0.6) {
// Very likely to be watermarked (close to 0.5)
resultText = 'β
AI-Generated (Watermarked)';
confidenceText = `Confidence: ${(confidence * 100).toFixed(1)}%`;
resultClass = 'watermarked';
} else {
// Between 0.6 and 1 - highly likely to be AI generated
resultText = 'π€ AI-Generated';
confidenceText = `Confidence: ${(confidence * 100).toFixed(1)}%`;
resultClass = 'ai-generated';
}
$('decResult').innerHTML = `
<div class="watermark-flag ${resultClass}">${resultText}</div>
<div class="watermark-score">${confidenceText}</div>
`;
} catch (e) {
console.error('[Main] Decryption error:', e);
$('decResult').textContent = `Decryption failed: ${e.message}`;
}
};
function encryptWorker_onmessage(e) {
if (e.data.type === 'ready') {
console.log('[Main] Encryption worker ready');
} else if (e.data.type === 'success') {
encTokens = e.data.result;
console.log(`[Main] Encryption completed: ${encTokens.length} bytes`);
show('encryptSpin', false);
show('encIcon', true);
enable('btnEncrypt', true);
enable('btnSend');
enable('btnDecrypt', false);
$('encStatus').textContent = 'Your text is encrypted π';
$('decResult').textContent = '';
} else if (e.data.type === 'error') {
console.error('[Main] Encryption error:', e.data.error);
show('encryptSpin', false);
enable('btnEncrypt', true);
$('encStatus').textContent = `Encryption failed: ${e.data.error}`;
alert(`Encryption failed: ${e.data.error}`);
}
}
function initEncryptWorkerWithKey(keyUint8) {
encryptWorker = new Worker(new URL('./encrypt-worker.js', import.meta.url), { type: 'module' });
encryptWorker.onmessage = encryptWorker_onmessage;
encryptWorker.postMessage({ type: 'init', clientKey: keyUint8 });
} |