import React from 'react'; import { Switch } from '~/components/ui/Switch'; import { useSettings } from '~/lib/hooks/useSettings'; export default function FeaturesTab() { const { debug, enableDebugMode, isLocalModel, enableLocalModels, enableEventLogs, isLatestBranch, enableLatestBranch, // Unused variables but needed from useSettings /* eslint-disable-next-line @typescript-eslint/no-unused-vars */ promptId, /* eslint-disable-next-line @typescript-eslint/no-unused-vars */ setPromptId, autoSelectTemplate, setAutoSelectTemplate, enableContextOptimization, contextOptimizationEnabled, } = useSettings(); const handleToggle = (enabled: boolean) => { enableDebugMode(enabled); enableEventLogs(enabled); }; return (
Check for updates against the main branch instead of stable
Let Bolt select the best starter template for your project.
redact file contents form chat and puts the latest file contents on the system prompt
Disclaimer: Experimental features may be unstable and are subject to change.
Enable experimental providers such as Ollama, LMStudio, and OpenAILike.