vertexchat / utils_old.py
airworkx's picture
Upload folder using huggingface_hub
d5ecfa9 verified
raw
history blame contribute delete
699 Bytes
"""https://ai.google.dev/api/rest/v1beta/HarmCategory"""
SAFETY_SETTTINGS = [
{
"category": "HARM_CATEGORY_SEXUAL",
"threshold": "BLOCK_ONLY_HIGH",
},
{
"category": "HARM_CATEGORY_DANGEROUS",
"threshold": "BLOCK_ONLY_HIGH",
},
{
"category": "HARM_CATEGORY_HARASSMENT",
"threshold": "BLOCK_ONLY_HIGH",
},
{
"category": "HARM_CATEGORY_HATE_SPEECH",
"threshold": "BLOCK_ONLY_HIGH",
},
{
"category": "HARM_CATEGORY_SEXUALLY_EXPLICIT",
"threshold": "BLOCK_ONLY_HIGH",
},
{
"category": "HARM_CATEGORY_DANGEROUS_CONTENT",
"threshold": "BLOCK_ONLY_HIGH",
},
]