From d1ea429bdd3d973fbf2b3c86c0602921fe6f4cbd Mon Sep 17 00:00:00 2001 From: balibabu Date: Tue, 25 Jun 2024 12:09:07 +0800 Subject: [PATCH] feat: add LLMSelect (#1270) ### What problem does this PR solve? feat: add LLMSelect #918 ### Type of change - [x] New Feature (non-breaking change which adds functionality) --- web/src/components/llm-select/index.tsx | 23 ++++++++++++++++++++ web/src/pages/flow/categorize-form/index.tsx | 11 ++++++++++ web/src/pages/flow/constant.tsx | 8 +++++++ web/src/pages/flow/flow-drawer/index.tsx | 2 ++ 4 files changed, 44 insertions(+) create mode 100644 web/src/components/llm-select/index.tsx create mode 100644 web/src/pages/flow/categorize-form/index.tsx diff --git a/web/src/components/llm-select/index.tsx b/web/src/components/llm-select/index.tsx new file mode 100644 index 000000000..7e1bc7a43 --- /dev/null +++ b/web/src/components/llm-select/index.tsx @@ -0,0 +1,23 @@ +import { Popover, Select } from 'antd'; +import LlmSettingItems from '../llm-setting-items'; + +const LLMSelect = () => { + const content = ( +
+ {}}> +
+ ); + + return ( + + {/* */} +