feat: Add delimiter field to naive parsing method #1909 (#1911)

### What problem does this PR solve?

feat: Add delimiter field to naive parsing method #1909
### Type of change


- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
balibabu
2024-08-12 15:53:25 +08:00
committed by GitHub
parent ad48e8d915
commit 6baba54e9e
6 changed files with 46 additions and 1 deletions

View File

@ -1,3 +1,4 @@
import Delimiter from '@/components/delimiter';
import EntityTypesItem from '@/components/entity-types-item';
import LayoutRecognize from '@/components/layout-recognize';
import MaxTokenNumber from '@/components/max-token-number';
@ -111,6 +112,7 @@ const ConfigurationForm = ({ form }: { form: FormInstance }) => {
{parserId === 'naive' && (
<>
<MaxTokenNumber></MaxTokenNumber>
<Delimiter></Delimiter>
<LayoutRecognize></LayoutRecognize>
</>
)}