chore: 移除不支持的设置

This commit is contained in:
yokowu
2025-07-30 19:21:59 +08:00
parent 368365f1b3
commit 47c618cdf8

View File

@@ -798,81 +798,6 @@ const ModelAdd = ({
/>
)}
/>
<Controller
control={control}
name='support_image'
render={({ field }) => (
<FormControlLabel
control={
<Checkbox
checked={field.value}
onChange={(e) => field.onChange(e.target.checked)}
size='small'
/>
}
label={
<Box sx={{ fontSize: 12 }}>
<Box component="span" sx={{ ml: 1, color: 'text.secondary', fontSize: 11 }}>
()
</Box>
</Box>
}
sx={{ margin: 0 }}
/>
)}
/>
<Controller
control={control}
name='support_compute'
render={({ field }) => (
<FormControlLabel
control={
<Checkbox
checked={field.value}
onChange={(e) => field.onChange(e.target.checked)}
size='small'
/>
}
label={
<Box sx={{ fontSize: 12 }}>
<Box component="span" sx={{ ml: 1, color: 'text.secondary', fontSize: 11 }}>
()
</Box>
</Box>
}
sx={{ margin: 0 }}
/>
)}
/>
<Controller
control={control}
name='support_prompt_caching'
render={({ field }) => (
<FormControlLabel
control={
<Checkbox
checked={field.value}
onChange={(e) => field.onChange(e.target.checked)}
size='small'
/>
}
label={
<Box sx={{ fontSize: 12 }}>
<Box component="span" sx={{ ml: 1, color: 'text.secondary', fontSize: 11 }}>
()
</Box>
</Box>
}
sx={{ margin: 0 }}
/>
)}
/>
</Stack>
</Stack>
</AccordionDetails>