Update vars to be capitalised to be in line with other variables in config file (#6085)

This commit is contained in:
dorien-koelemeijer
2025-12-12 11:12:45 +11:00
committed by GitHub
parent 04c3c9dbf1
commit 469f99f9c9
6 changed files with 15 additions and 15 deletions
@@ -3,16 +3,16 @@ import { Switch } from '../../ui/switch';
import { useConfig } from '../../ConfigContext';
interface SecurityConfig {
security_prompt_enabled?: boolean;
security_prompt_threshold?: number;
SECURITY_PROMPT_ENABLED?: boolean;
SECURITY_PROMPT_THRESHOLD?: number;
}
export const SecurityToggle = () => {
const { config, upsert } = useConfig();
const {
security_prompt_enabled: enabled = false,
security_prompt_threshold: configThreshold = 0.7,
SECURITY_PROMPT_ENABLED: enabled = false,
SECURITY_PROMPT_THRESHOLD: configThreshold = 0.7,
} = (config as SecurityConfig) ?? {};
const [thresholdInput, setThresholdInput] = useState(configThreshold.toString());
@@ -22,12 +22,12 @@ export const SecurityToggle = () => {
}, [configThreshold]);
const handleToggle = async (enabled: boolean) => {
await upsert('security_prompt_enabled', enabled, false);
await upsert('SECURITY_PROMPT_ENABLED', enabled, false);
};
const handleThresholdChange = async (threshold: number) => {
const validThreshold = Math.max(0, Math.min(1, threshold));
await upsert('security_prompt_threshold', validThreshold, false);
await upsert('SECURITY_PROMPT_THRESHOLD', validThreshold, false);
};
return (
+2 -2
View File
@@ -15,8 +15,8 @@ export const configLabels: Record<string, string> = {
GOOSE_RECIPE_GITHUB_REPO: 'Recipe GitHub Repo',
// security settings
security_prompt_enabled: 'Prompt Injection Detection Enabled',
security_prompt_threshold: 'Prompt Injection Detection Threshold',
SECURITY_PROMPT_ENABLED: 'Prompt Injection Detection Enabled',
SECURITY_PROMPT_THRESHOLD: 'Prompt Injection Detection Threshold',
// openai
OPENAI_API_KEY: 'OpenAI API Key',