mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-09-06 06:46:54 +00:00

### What problem does this PR solve? [https://github.com/infiniflow/ragflow/issues/7180](https://github.com/infiniflow/ragflow/issues/7180) When creating a knowledge base, support the enter key ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)
164 lines
4.7 KiB
TypeScript
164 lines
4.7 KiB
TypeScript
import { useTranslate } from '@/hooks/common-hooks';
|
|
import { IModalProps } from '@/interfaces/common';
|
|
import { IAddLlmRequestBody } from '@/interfaces/request/llm';
|
|
import { Form, Input, InputNumber, Modal, Select } from 'antd';
|
|
import omit from 'lodash/omit';
|
|
|
|
type FieldType = IAddLlmRequestBody & {
|
|
vision: boolean;
|
|
spark_api_password: string;
|
|
spark_app_id: string;
|
|
spark_api_secret: string;
|
|
spark_api_key: string;
|
|
};
|
|
|
|
const { Option } = Select;
|
|
|
|
const SparkModal = ({
|
|
visible,
|
|
hideModal,
|
|
onOk,
|
|
loading,
|
|
llmFactory,
|
|
}: IModalProps<IAddLlmRequestBody> & { llmFactory: string }) => {
|
|
const [form] = Form.useForm<FieldType>();
|
|
|
|
const { t } = useTranslate('setting');
|
|
|
|
const handleOk = async () => {
|
|
const values = await form.validateFields();
|
|
const modelType =
|
|
values.model_type === 'chat' && values.vision
|
|
? 'image2text'
|
|
: values.model_type;
|
|
|
|
const data = {
|
|
...omit(values, ['vision']),
|
|
model_type: modelType,
|
|
llm_factory: llmFactory,
|
|
max_tokens: values.max_tokens,
|
|
};
|
|
console.info(data);
|
|
|
|
onOk?.(data);
|
|
};
|
|
|
|
const handleKeyDown = async (e: React.KeyboardEvent) => {
|
|
if (e.key === 'Enter') {
|
|
await handleOk();
|
|
}
|
|
};
|
|
|
|
return (
|
|
<Modal
|
|
title={t('addLlmTitle', { name: llmFactory })}
|
|
open={visible}
|
|
onOk={handleOk}
|
|
onCancel={hideModal}
|
|
okButtonProps={{ loading }}
|
|
confirmLoading={loading}
|
|
>
|
|
<Form>
|
|
<Form.Item<FieldType>
|
|
label={t('modelType')}
|
|
name="model_type"
|
|
initialValue={'chat'}
|
|
rules={[{ required: true, message: t('modelTypeMessage') }]}
|
|
>
|
|
<Select placeholder={t('modelTypeMessage')}>
|
|
<Option value="chat">chat</Option>
|
|
<Option value="tts">tts</Option>
|
|
</Select>
|
|
</Form.Item>
|
|
<Form.Item<FieldType>
|
|
label={t('modelName')}
|
|
name="llm_name"
|
|
rules={[{ required: true, message: t('SparkModelNameMessage') }]}
|
|
>
|
|
<Input
|
|
placeholder={t('modelNameMessage')}
|
|
onKeyDown={handleKeyDown}
|
|
/>
|
|
</Form.Item>
|
|
<Form.Item<FieldType>
|
|
label={t('addSparkAPIPassword')}
|
|
name="spark_api_password"
|
|
rules={[{ required: true, message: t('SparkAPIPasswordMessage') }]}
|
|
>
|
|
<Input
|
|
placeholder={t('SparkAPIPasswordMessage')}
|
|
onKeyDown={handleKeyDown}
|
|
/>
|
|
</Form.Item>
|
|
<Form.Item noStyle dependencies={['model_type']}>
|
|
{({ getFieldValue }) =>
|
|
getFieldValue('model_type') === 'tts' && (
|
|
<Form.Item<FieldType>
|
|
label={t('addSparkAPPID')}
|
|
name="spark_app_id"
|
|
rules={[{ required: true, message: t('SparkAPPIDMessage') }]}
|
|
>
|
|
<Input placeholder={t('SparkAPPIDMessage')} />
|
|
</Form.Item>
|
|
)
|
|
}
|
|
</Form.Item>
|
|
<Form.Item noStyle dependencies={['model_type']}>
|
|
{({ getFieldValue }) =>
|
|
getFieldValue('model_type') === 'tts' && (
|
|
<Form.Item<FieldType>
|
|
label={t('addSparkAPISecret')}
|
|
name="spark_api_secret"
|
|
rules={[
|
|
{ required: true, message: t('SparkAPISecretMessage') },
|
|
]}
|
|
>
|
|
<Input placeholder={t('SparkAPISecretMessage')} />
|
|
</Form.Item>
|
|
)
|
|
}
|
|
</Form.Item>
|
|
<Form.Item noStyle dependencies={['model_type']}>
|
|
{({ getFieldValue }) =>
|
|
getFieldValue('model_type') === 'tts' && (
|
|
<Form.Item<FieldType>
|
|
label={t('addSparkAPIKey')}
|
|
name="spark_api_key"
|
|
rules={[{ required: true, message: t('SparkAPIKeyMessage') }]}
|
|
>
|
|
<Input placeholder={t('SparkAPIKeyMessage')} />
|
|
</Form.Item>
|
|
)
|
|
}
|
|
</Form.Item>
|
|
<Form.Item<FieldType>
|
|
label={t('maxTokens')}
|
|
name="max_tokens"
|
|
rules={[
|
|
{ required: true, message: t('maxTokensMessage') },
|
|
{
|
|
type: 'number',
|
|
message: t('maxTokensInvalidMessage'),
|
|
},
|
|
({ getFieldValue }) => ({
|
|
validator(_, value) {
|
|
if (value < 0) {
|
|
return Promise.reject(new Error(t('maxTokensMinMessage')));
|
|
}
|
|
return Promise.resolve();
|
|
},
|
|
}),
|
|
]}
|
|
>
|
|
<InputNumber
|
|
placeholder={t('maxTokensTip')}
|
|
style={{ width: '100%' }}
|
|
/>
|
|
</Form.Item>
|
|
</Form>
|
|
</Modal>
|
|
);
|
|
};
|
|
|
|
export default SparkModal;
|