Feat: Add invoke and github operators #3221 (#9112)

### What problem does this PR solve?

Feat: Add invoke and github operators #3221

### Type of change


- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
balibabu
2025-07-30 12:48:55 +08:00
committed by GitHub
parent 021e8b57ae
commit 523e61ae18
18 changed files with 850 additions and 248 deletions

View File

@ -126,7 +126,7 @@ function AgentForm({ node }: INextOperatorForm) {
name={`sys_prompt`}
render={({ field }) => (
<FormItem className="flex-1">
<FormLabel>Prompt</FormLabel>
<FormLabel>System Prompt</FormLabel>
<FormControl>
<PromptEditor
{...field}

View File

@ -39,13 +39,7 @@ const Menus = [
},
{
label: 'Developer',
list: [
Operator.GitHub,
Operator.ExeSQL,
Operator.Invoke,
Operator.Code,
Operator.Retrieval,
],
list: [Operator.GitHub, Operator.ExeSQL, Operator.Code, Operator.Retrieval],
},
];