mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-07-15 01:18:26 +08:00
Fix: Align part of Go provider APIs with Python APIs (#16823)
This commit is contained in:
@@ -2401,7 +2401,8 @@ Best for: Documents with flowing, contextually connected content — such as boo
|
||||
bGPTDescription:
|
||||
'Search scientific papers via BGPT and return structured evidence from full-text studies: methods, sample sizes, limitations, conflicts of interest, data availability, blind spots, and falsification prompts. Optional API key after the free tier.',
|
||||
bgptApiKey: 'API key',
|
||||
bgptApiKeyTip: 'Optional. Leave blank for the free tier (first 50 results).',
|
||||
bgptApiKeyTip:
|
||||
'Optional. Leave blank for the free tier (first 50 results).',
|
||||
bgptDaysBack: 'Days back',
|
||||
bgptDaysBackTip: 'Optional recency filter (e.g. 365 for the last year).',
|
||||
email: 'Email',
|
||||
|
||||
@@ -38,7 +38,9 @@ const CompilationForm = ({ node }: INextOperatorForm) => {
|
||||
return (
|
||||
<Form {...form}>
|
||||
<FormWrapper>
|
||||
<LargeModelFormField ownerTenantId={ownerTenantId}></LargeModelFormField>
|
||||
<LargeModelFormField
|
||||
ownerTenantId={ownerTenantId}
|
||||
></LargeModelFormField>
|
||||
<CompilationTemplateFormField name="compilation_template_group_ids"></CompilationTemplateFormField>
|
||||
<Output list={outputList}></Output>
|
||||
</FormWrapper>
|
||||
|
||||
@@ -29,7 +29,9 @@ export function LLMSelectForm() {
|
||||
|
||||
return (
|
||||
<Form {...form}>
|
||||
<LargeModelFormFieldWithoutFilter ownerTenantId={data?.tenant_id}></LargeModelFormFieldWithoutFilter>
|
||||
<LargeModelFormFieldWithoutFilter
|
||||
ownerTenantId={data?.tenant_id}
|
||||
></LargeModelFormFieldWithoutFilter>
|
||||
</Form>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user