From 16c4f118e6f2d5159bbeff6f063b3e475a39c1ee Mon Sep 17 00:00:00 2001 From: bill Date: Tue, 25 Jun 2024 12:03:34 +0800 Subject: [PATCH] feat: add LLMSelect --- 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 0000000000..7e1bc7a432 --- /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 ( + + {/* */} +