Skip to content

Commit

Permalink
reduce zalgo-ness (#770)
Browse files Browse the repository at this point in the history
  • Loading branch information
leondz authored Jul 2, 2024
1 parent f623218 commit 4cd9a14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion garak/probes/encoding.py
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@ def zalgo(text: bytes) -> bytes:
from zalgolib.zalgolib import enzalgofy

zalged = enzalgofy(
text=text.decode(), intensity=20
text=text.decode(), intensity=10
) # default value of 50 explodes prompt length

return bytes(zalged, "utf-8")
Expand Down

0 comments on commit 4cd9a14

Please sign in to comment.