balibabu
feat: add LLMSelect (#1270)
70b1cb8
raw
history blame
551 Bytes
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}>
{/* <Button>Click me</Button> */}
<Select
defaultValue="lucy"
style={{ width: '100%' }}
dropdownStyle={{ display: 'none' }}
/>
</Popover>
);
};
export default LLMSelect;