mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-10-21 13:00:12 +00:00

### What problem does this PR solve? feat: Add DynamicInputVariable to RetrievalForm #1739 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
22 lines
600 B
TypeScript
22 lines
600 B
TypeScript
import TopNItem from '@/components/top-n-item';
|
|
import { Form } from 'antd';
|
|
import { IOperatorForm } from '../../interface';
|
|
import DynamicInputVariable from '../components/dynamic-input-variable';
|
|
|
|
const AkShareForm = ({ onValuesChange, form, node }: IOperatorForm) => {
|
|
return (
|
|
<Form
|
|
name="basic"
|
|
autoComplete="off"
|
|
form={form}
|
|
onValuesChange={onValuesChange}
|
|
layout={'vertical'}
|
|
>
|
|
<DynamicInputVariable nodeId={node?.id}></DynamicInputVariable>
|
|
<TopNItem initialValue={10} max={99}></TopNItem>
|
|
</Form>
|
|
);
|
|
};
|
|
|
|
export default AkShareForm;
|