'use client'; import type { RefObject } from 'react'; import { FormField, SelectPopover } from '@/components/form'; const options = [ { value: 'yolo', label: 'Road Defect Detection' }, { value: 'yoloe', label: 'YOLOE Open-Vocabulary Detection' }, { value: 'yoloe_trained_vl', label: 'YOLOE With Vision Language Model' }, { value: 'culvert_detection', label: 'Culvert Detection' }, { value: 'combined', label: 'Road Defect Detection with vl' }, { value: 'yoloe_seg', label: 'Improved Road Defect Detection' }, ] as const; interface UploadSettingsSectionProps { value: string; onValueChange: (value: string) => void; disabled?: boolean; portalContainer?: RefObject; } export function UploadSettingsSection({ value, onValueChange, disabled = false, portalContainer, }: UploadSettingsSectionProps) { return (

Upload Settings

Select the detection workflow for this upload.

); }