Censor profanity: "..." on screen, spoken as "beep"
All checks were successful
CI/CD Pipeline / build-and-deploy (push) Successful in 29s
All checks were successful
CI/CD Pipeline / build-and-deploy (push) Successful in 29s
New profanity.js does whole-word matching against a Russian/English root list (avoids false positives like "победа", "тебя", "сукно"). Applied once per message before it's used anywhere downstream (display, TTS, AI reply input) — screen shows "..." in place of a censored word, while the TTS text uses "бип" so it's heard as a beep instead of read literally. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
parent
f56b829054
commit
620c1e5427
4 changed files with 43 additions and 5 deletions
|
|
@ -8,7 +8,7 @@ WORKDIR /app
|
|||
COPY package.json package-lock.json* ./
|
||||
RUN npm ci --omit=dev
|
||||
|
||||
COPY server.js db.js ai-prompt.txt ./
|
||||
COPY server.js db.js profanity.js ai-prompt.txt ./
|
||||
COPY public ./public
|
||||
|
||||
EXPOSE 3000
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue