2024-06-25 12:09:07 +08:00
|
|
|
import { Popover, Select } from 'antd';
|
|
|
|
|
import LlmSettingItems from '../llm-setting-items';
|
|
|
|
|
|
|
|
|
|
const LLMSelect = () => {
|
|
|
|
|
const content = (
|
|
|
|
|
<div>
|
|
|
|
|
<LlmSettingItems handleParametersChange={() => {}}></LlmSettingItems>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<Popover content={content} trigger="click" placement="left" arrow={false}>
|
2024-06-25 16:17:12 +08:00
|
|
|
<Select style={{ width: '100%' }} dropdownStyle={{ display: 'none' }} />
|
2024-06-25 12:09:07 +08:00
|
|
|
</Popover>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default LLMSelect;
|