瀏覽代碼

Feat: Add model id to ExeSql operator form. #1739 (#4333)

### What problem does this PR solve?

Feat: Add model id to ExeSql operator form. #1739

### Type of change


- [x] New Feature (non-breaking change which adds functionality)
tags/v0.16.0
balibabu 10 月之前
父節點
當前提交
5083d92998
沒有連結到貢獻者的電子郵件帳戶。
共有 3 個檔案被更改,包括 10 行新增1 行删除
  1. 1
    0
      web/src/pages/flow/constant.tsx
  2. 8
    0
      web/src/pages/flow/form/exesql-form/index.tsx
  3. 1
    1
      web/src/pages/flow/hooks.tsx

+ 1
- 0
web/src/pages/flow/constant.tsx 查看文件

@@ -531,6 +531,7 @@ export const initialQWeatherValues = {
};

export const initialExeSqlValues = {
...initialLlmBaseValues,
db_type: 'mysql',
database: '',
username: '',

+ 8
- 0
web/src/pages/flow/form/exesql-form/index.tsx 查看文件

@@ -1,3 +1,4 @@
import LLMSelect from '@/components/llm-select';
import TopNItem from '@/components/top-n-item';
import { useTranslate } from '@/hooks/common-hooks';
import { useTestDbConnect } from '@/hooks/flow-hooks';
@@ -25,6 +26,13 @@ const ExeSQLForm = ({ onValuesChange, form, node }: IOperatorForm) => {
layout={'vertical'}
>
<DynamicInputVariable node={node}></DynamicInputVariable>
<Form.Item
name={'llm_id'}
label={t('model', { keyPrefix: 'chat' })}
tooltip={t('modelTip', { keyPrefix: 'chat' })}
>
<LLMSelect></LLMSelect>
</Form.Item>
<Form.Item
label={t('dbType')}
name={'db_type'}

+ 1
- 1
web/src/pages/flow/hooks.tsx 查看文件

@@ -129,7 +129,7 @@ export const useInitializeOperatorParams = () => {
[Operator.GitHub]: initialGithubValues,
[Operator.BaiduFanyi]: initialBaiduFanyiValues,
[Operator.QWeather]: initialQWeatherValues,
[Operator.ExeSQL]: initialExeSqlValues,
[Operator.ExeSQL]: { ...initialExeSqlValues, llm_id: llmId },
[Operator.Switch]: initialSwitchValues,
[Operator.WenCai]: initialWenCaiValues,
[Operator.AkShare]: initialAkShareValues,

Loading…
取消
儲存