File size: 551 Bytes
70b1cb8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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;