import ToggleSwitch from '../ToggleSwitch' import DraggableProgressBar from '../DraggableProgressBar' import { Controller } from 'react-hook-form' type Props = { control?: any } const CutomBotTemperature: React.FC = ({ control }) => (
{`Controls the creativity of the bot's responses. Higher values produce more varied but unpredictable replies, lower values generate more consistent responses.`}
default: 0.7 { if (!value) return
return ( ) }} />
) export default CutomBotTemperature