import { Textarea, Tooltip, TooltipArrow, TooltipContent, TooltipPortal, TooltipTrigger, } from '@janhq/uikit' import { InfoIcon } from 'lucide-react' type Props = { title: string enabled?: boolean name: string description: string placeholder: string value: string onValueChanged?: (e: string | number | boolean) => void } const ModelConfigInput: React.FC = ({ title, enabled = true, value, description, placeholder, onValueChanged, }) => (

{title}

{description}