diff --git a/web/src/hooks/llmHooks.ts b/web/src/hooks/llmHooks.ts index 7c3e2437da55875c7f39e8ed6b4d26937e839ee3..3e2e75709fbeb37dcc79fe4126366ee2750d17f0 100644 --- a/web/src/hooks/llmHooks.ts +++ b/web/src/hooks/llmHooks.ts @@ -163,7 +163,7 @@ export interface IApiKeySavingParams { api_key: string; llm_name?: string; model_type?: string; - api_base?: string; + base_url?: string; } export const useSaveApiKey = () => { diff --git a/web/src/pages/user-setting/setting-model/api-key-modal/index.tsx b/web/src/pages/user-setting/setting-model/api-key-modal/index.tsx index d35186ee5aa1ff6466163dbd9a4b9414830f5727..b77d68e95333c2518e4956e97296b18497ce9c95 100644 --- a/web/src/pages/user-setting/setting-model/api-key-modal/index.tsx +++ b/web/src/pages/user-setting/setting-model/api-key-modal/index.tsx @@ -5,17 +5,20 @@ import { useEffect } from 'react'; interface IProps extends Omit<IModalManagerChildrenProps, 'showModal'> { loading: boolean; initialValue: string; - onOk: (name: string) => void; + llmFactory: string; + onOk: (name: string, baseUrl: string) => void; showModal?(): void; } type FieldType = { api_key?: string; + base_url?: string; }; const ApiKeyModal = ({ visible, hideModal, + llmFactory, loading, initialValue, onOk, @@ -25,7 +28,7 @@ const ApiKeyModal = ({ const handleOk = async () => { const ret = await form.validateFields(); - return onOk(ret.api_key); + return onOk(ret.api_key, ret.base_url); }; const handleCancel = () => { @@ -55,8 +58,8 @@ const ApiKeyModal = ({ > <Form name="basic" - labelCol={{ span: 4 }} - wrapperCol={{ span: 20 }} + labelCol={{ span: 6 }} + wrapperCol={{ span: 18 }} style={{ maxWidth: 600 }} onFinish={onFinish} onFinishFailed={onFinishFailed} @@ -71,6 +74,16 @@ const ApiKeyModal = ({ > <Input /> </Form.Item> + {llmFactory === 'OpenAI' && ( + <Form.Item<FieldType> + label="Base-Url" + name="base_url" + tooltip="The API key can be obtained by registering the corresponding LLM supplier." + rules={[{ required: true, message: 'Please input base url!' }]} + > + <Input /> + </Form.Item> + )} </Form> </Modal> ); diff --git a/web/src/pages/user-setting/setting-model/hooks.ts b/web/src/pages/user-setting/setting-model/hooks.ts index af400bb62e19a501e5ef73c32289bbcdaa32ce5c..f36aa02d6bc80a219f18bb1e10a62a373b3d1ef7 100644 --- a/web/src/pages/user-setting/setting-model/hooks.ts +++ b/web/src/pages/user-setting/setting-model/hooks.ts @@ -28,8 +28,12 @@ export const useSubmitApiKey = () => { } = useSetModalState(); const onApiKeySavingOk = useCallback( - async (apiKey: string) => { - const ret = await saveApiKey({ ...savingParams, api_key: apiKey }); + async (apiKey: string, baseUrl: string) => { + const ret = await saveApiKey({ + ...savingParams, + api_key: apiKey, + base_url: baseUrl, + }); if (ret === 0) { hideApiKeyModal(); @@ -53,6 +57,7 @@ export const useSubmitApiKey = () => { return { saveApiKeyLoading: loading, initialApiKey: '', + llmFactory: savingParams.llm_factory, onApiKeySavingOk, apiKeyVisible, hideApiKeyModal, diff --git a/web/src/pages/user-setting/setting-model/index.tsx b/web/src/pages/user-setting/setting-model/index.tsx index 7186a59141b923d53237d83e50a62875d3813986..17c7e15747e3c78c91f27eaee53aff5ebceb358d 100644 --- a/web/src/pages/user-setting/setting-model/index.tsx +++ b/web/src/pages/user-setting/setting-model/index.tsx @@ -120,6 +120,7 @@ const UserSettingModel = () => { const { saveApiKeyLoading, initialApiKey, + llmFactory, onApiKeySavingOk, apiKeyVisible, hideApiKeyModal, @@ -215,6 +216,7 @@ const UserSettingModel = () => { loading={saveApiKeyLoading} initialValue={initialApiKey} onOk={onApiKeySavingOk} + llmFactory={llmFactory} ></ApiKeyModal> <SystemModelSettingModal visible={systemSettingVisible}