feat(privacy): redact PII from LLM context when privacy.redact_pii is enabled (#1542)
feat(privacy): redact PII from LLM context when privacy.redact_pii is enabled
This commit is contained in:
commit
2633272ea9
6 changed files with 292 additions and 6 deletions
|
|
@ -207,6 +207,11 @@ DEFAULT_CONFIG = {
|
|||
"show_reasoning": False,
|
||||
"skin": "default",
|
||||
},
|
||||
|
||||
# Privacy settings
|
||||
"privacy": {
|
||||
"redact_pii": False, # When True, hash user IDs and strip phone numbers from LLM context
|
||||
},
|
||||
|
||||
# Text-to-speech configuration
|
||||
"tts": {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue