File size: 846 Bytes
80bd48c 5150311 a505ab1 5150311 a505ab1 5150311 a505ab1 5150311 a505ab1 5150311 a505ab1 5150311 a505ab1 5150311 80bd48c |
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 |
# Original code
SAFETY_SETTTINGS = [
{
"category": "HARM_CATEGORY_SEXUAL",
"threshold": "BLOCK_NONE",
},
{
"category": "HARM_CATEGORY_DANGEROUS",
"threshold": "BLOCK_NONE",
},
{
"category": "HARM_CATEGORY_HARASSMENT",
"threshold": "BLOCK_NONE",
},
{
"category": "HARM_CATEGORY_HATE_SPEECH",
"threshold": "BLOCK_NONE",
},
{
"category": "HARM_CATEGORY_SEXUALLY_EXPLICIT",
"threshold": "BLOCK_NONE",
},
{
"category": "HARM_CATEGORY_DANGEROUS_CONTENT",
"threshold": "BLOCK_NONE",
},
]
# Modified code to allow uninterrupted chat session
MODIFIED_SAFETY_SETTTINGS = []
# Set all thresholds to "ALLOW_ALL" to disable blocking
for setting in MODIFIED_SAFETY_SETTTINGS:
setting["threshold"] = "ALLOW_ALL" |