Feat: Convert the inputs parameter of the begin operator #3221 (#8081)

### What problem does this PR solve?

Feat: Convert the inputs parameter of the begin operator #3221

### Type of change


- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
balibabu
2025-06-05 16:29:48 +08:00
committed by GitHub
parent 6953ae89c4
commit 6488f22540
5 changed files with 49 additions and 39 deletions

View File

@ -30,8 +30,8 @@ import { ReactComponent as YahooFinanceIcon } from '@/assets/svg/yahoo-finance.s
import { CodeTemplateStrMap, ProgrammingLanguage } from '@/constants/agent';
export enum AgentDialogueMode {
Conversational = 'Conversational',
Task = 'Task',
Conversational = 'conversational',
Task = 'task',
}
import {
@ -781,6 +781,7 @@ export const RestrictedUpstreamMap = {
[Operator.IterationStart]: [Operator.Begin],
[Operator.Code]: [Operator.Begin],
[Operator.WaitingDialogue]: [Operator.Begin],
[Operator.Agent]: [Operator.Begin],
};
export const NodeMap = {