diff --git a/app/services/gemini_chat_service.py b/app/services/gemini_chat_service.py index 58df814..db42587 100644 --- a/app/services/gemini_chat_service.py +++ b/app/services/gemini_chat_service.py @@ -86,7 +86,7 @@ class GeminiChatService: {"category": "HARM_CATEGORY_HATE_SPEECH", "threshold": "OFF"}, {"category": "HARM_CATEGORY_SEXUALLY_EXPLICIT", "threshold": "OFF"}, {"category": "HARM_CATEGORY_DANGEROUS_CONTENT", "threshold": "OFF"}, - {"category": "HARM_CATEGORY_CIVIC_INTEGRITY", "threshold": "BLOCK_ONLY_HIGH"} + {"category": "HARM_CATEGORY_CIVIC_INTEGRITY", "threshold": "OFF"} ] return [ {"category": "HARM_CATEGORY_HARASSMENT", "threshold": "BLOCK_NONE"}, diff --git a/app/services/openai_chat_service.py b/app/services/openai_chat_service.py index a1a6cb5..fc0d9b2 100644 --- a/app/services/openai_chat_service.py +++ b/app/services/openai_chat_service.py @@ -133,7 +133,7 @@ class OpenAIChatService: {"category": "HARM_CATEGORY_HATE_SPEECH", "threshold": "OFF"}, {"category": "HARM_CATEGORY_SEXUALLY_EXPLICIT", "threshold": "OFF"}, {"category": "HARM_CATEGORY_DANGEROUS_CONTENT", "threshold": "OFF"}, - {"category": "HARM_CATEGORY_CIVIC_INTEGRITY", "threshold": "BLOCK_ONLY_HIGH"} + {"category": "HARM_CATEGORY_CIVIC_INTEGRITY", "threshold": "OFF"} ] return [ {"category": "HARM_CATEGORY_HARASSMENT", "threshold": "BLOCK_NONE"},