fix: Update Gemini safety settings default value

This commit is contained in:
1808837298@qq.com
2025-02-26 19:01:45 +08:00
parent bf80d71ddf
commit e581ea33c2
2 changed files with 2 additions and 2 deletions

View File

@@ -6,7 +6,7 @@ import (
)
var geminiSafetySettings = map[string]string{
"default": "OFF",
"default": "BLOCK_NONE",
"HARM_CATEGORY_CIVIC_INTEGRITY": "BLOCK_NONE",
}

View File

@@ -10,7 +10,7 @@ import {
import { useTranslation } from 'react-i18next';
const GEMINI_SETTING_EXAMPLE = {
'default': 'OFF',
'default': 'BLOCK_NONE',
'HARM_CATEGORY_CIVIC_INTEGRITY': 'BLOCK_NONE',
};