瀏覽代碼

fix: Add model by ollama in model provider page, user can't choose the model in chat window. #2479 (#2529)

### What problem does this PR solve?

fix: Add model by ollama in model provider page, user can't choose the
model in chat window. #2479

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
tags/v0.12.0
balibabu 1 年之前
父節點
當前提交
f6ceb43e36
沒有連結到貢獻者的電子郵件帳戶。
共有 2 個檔案被更改,包括 9 行新增1 行删除
  1. 8
    0
      web/src/components/llm-select/index.tsx
  2. 1
    1
      web/src/hooks/llm-hooks.ts

+ 8
- 0
web/src/components/llm-select/index.tsx 查看文件

@@ -1,3 +1,5 @@
import { LlmModelType } from '@/constants/knowledge';
import { useSelectLlmOptionsByModelType } from '@/hooks/llm-hooks';
import { Popover, Select } from 'antd';
import LlmSettingItems from '../llm-setting-items';

@@ -8,6 +10,8 @@ interface IProps {
}

const LLMSelect = ({ id, value, onChange }: IProps) => {
const modelOptions = useSelectLlmOptionsByModelType();

const content = (
<div style={{ width: 400 }}>
<LlmSettingItems
@@ -25,6 +29,10 @@ const LLMSelect = ({ id, value, onChange }: IProps) => {
destroyTooltipOnHide
>
<Select
options={[
...modelOptions[LlmModelType.Chat],
...modelOptions[LlmModelType.Image2text],
]}
style={{ width: '100%' }}
dropdownStyle={{ display: 'none' }}
id={id}

+ 1
- 1
web/src/hooks/llm-hooks.ts 查看文件

@@ -71,7 +71,7 @@ export const useSelectLlmOptionsByModelType = () => {
)
.map((x) => ({
label: x.llm_name,
value: x.llm_name,
value: `${x.llm_name}@${x.fid}`,
disabled: !x.available,
})),
};

Loading…
取消
儲存