import React from 'react'; import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card'; import { Input } from '@/components/ui/input'; import { Label } from '@/components/ui/label'; import { Switch } from '@/components/ui/switch'; import { Settings } from 'lucide-react'; import { ConfigComponentProps } from '../types'; const AdvancedConfig: React.FC = ({ config, updateConfig }) => { return (
Advanced Options
updateConfig("config_path", e.target.value || undefined) } placeholder="path/to/config.yaml" className="bg-slate-900 border-slate-600 text-white rounded-lg" />
updateConfig("use_policy_training_preset", checked) } />
); }; export default AdvancedConfig;