mirror of
https://github.com/chaitin/MonkeyCode.git
synced 2026-02-07 01:03:24 +08:00
chore: 移除不支持的设置
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user