mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-23 23:16:58 +08:00
### What problem does this PR solve? Feat: Add LlmSettingFieldItems component #3221 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
44 lines
1.2 KiB
TypeScript
44 lines
1.2 KiB
TypeScript
import { LlmSettingFieldItems } from '@/components/llm-setting-items/next';
|
|
import {
|
|
FormControl,
|
|
FormField,
|
|
FormItem,
|
|
FormLabel,
|
|
FormMessage,
|
|
} from '@/components/ui/form';
|
|
import { Textarea } from '@/components/ui/textarea';
|
|
import { useTranslate } from '@/hooks/common-hooks';
|
|
import { useFormContext } from 'react-hook-form';
|
|
import { Subhead } from './subhead';
|
|
|
|
export function ChatModelSettings() {
|
|
const { t } = useTranslate('chat');
|
|
const form = useFormContext();
|
|
|
|
return (
|
|
<section>
|
|
<Subhead>Model Setting</Subhead>
|
|
<div className="space-y-8">
|
|
<FormField
|
|
control={form.control}
|
|
name="prompt_config.system"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>{t('system')}</FormLabel>
|
|
<FormControl>
|
|
<Textarea
|
|
placeholder="Tell us a little bit about yourself"
|
|
className="resize-none"
|
|
{...field}
|
|
/>
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
<LlmSettingFieldItems></LlmSettingFieldItems>
|
|
</div>
|
|
</section>
|
|
);
|
|
}
|