Feat: Translate the fields of the parsing operator #9869 (#10079)

### What problem does this PR solve?

Feat: Translate the fields of the parsing operator #9869

### Type of change


- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
balibabu
2025-09-15 11:24:19 +08:00
committed by GitHub
parent d8ef22db68
commit 2b50de3186
8 changed files with 72 additions and 24 deletions

View File

@ -18,7 +18,7 @@ export function LLMFormField({ options, name }: LLMFormFieldProps) {
]);
return (
<RAGFlowFormItem name={name || 'llm_id'} label={t('model')}>
<RAGFlowFormItem name={name || 'llm_id'} label={t('chat.model')}>
<SelectWithSearch options={options || modelOptions}></SelectWithSearch>
</RAGFlowFormItem>
);