Fix: Align part of Go provider APIs with Python APIs (#16823)

This commit is contained in:
Lynn
2026-07-13 11:20:02 +08:00
committed by GitHub
parent 3c0f8fc192
commit b0cac0ac9d
10 changed files with 498 additions and 21 deletions

View File

@@ -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',

View File

@@ -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>

View File

@@ -29,7 +29,9 @@ export function LLMSelectForm() {
return (
<Form {...form}>
<LargeModelFormFieldWithoutFilter ownerTenantId={data?.tenant_id}></LargeModelFormFieldWithoutFilter>
<LargeModelFormFieldWithoutFilter
ownerTenantId={data?.tenant_id}
></LargeModelFormFieldWithoutFilter>
</Form>
);
}