docs(CLAUDE): client-side embedding is the PRODUCTION default#160
Merged
Conversation
…efault OFF") The code default for app.auth.client-side-embedding is OFF, but production .env.prod sets APP_AUTH_CLIENT_SIDE_EMBEDDING=true (global) -> client-side embedding is the prod default for face enroll AND verify (browser computes Facenet512 via onnxruntime-web, only the 512-d vector is uploaded). The "default OFF" wording misled a thesis audit; clarify so the code default is not mistaken for prod behaviour. Verified live 2026-06-14 (FaceEnrollmentDialog.tsx:59, BiometricService.ts:220). Thesis corrected to match: FIVUCSAS #213/#214.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The code default for
app.auth.client-side-embeddingis OFF, but prod.env.prodsets it ON (global) -> client-side embedding is the production default for face enroll AND verify. The "default OFF" wording misled a thesis audit; this clarifies it. Verified live 2026-06-14.