Files
ragflow_python/web/src/components/llm-select/index.tsx

19 lines
461 B
TypeScript
Raw Normal View History

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}>
<Select style={{ width: '100%' }} dropdownStyle={{ display: 'none' }} />
</Popover>
);
};
export default LLMSelect;