Feat: Add UserFillUpForm component #3221 (#8508)

### What problem does this PR solve?

Feat: Add UserFillUpForm component #3221

### Type of change


- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
balibabu
2025-06-26 14:55:51 +08:00
committed by GitHub
parent 6d256ff0f5
commit 42a570a64d
8 changed files with 228 additions and 2 deletions

View File

@ -86,6 +86,7 @@ export enum Operator {
Agent = 'Agent',
Tool = 'Tool',
TavilySearch = 'TavilySearch',
UserFillUp = 'UserFillUp',
}
export const SwitchLogicOperatorOptions = ['and', 'or'];
@ -696,6 +697,12 @@ export const initialAgentValues = {
},
};
export const initialUserFillUpValues = {
enable_tips: true,
tips: '',
inputs: [],
};
export enum TavilySearchDepth {
Basic = 'basic',
Advanced = 'advanced',
@ -860,6 +867,7 @@ export const NodeMap = {
[Operator.Agent]: 'agentNode',
[Operator.Tool]: 'toolNode',
[Operator.TavilySearch]: 'ragNode',
[Operator.UserFillUp]: 'ragNode',
};
export enum BeginQueryType {