Feat: The bottom anchor of the agent node is only displayed when there is a downstream node #9869 (#10611)

### What problem does this PR solve?

Feat: The bottom anchor of the agent node is only displayed when there
is a downstream node #9869

### Type of change


- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
balibabu
2025-10-16 17:47:55 +08:00
committed by GitHub
parent e76db6e222
commit 70ffe2b4e8
7 changed files with 194 additions and 8 deletions

View File

@ -161,7 +161,7 @@ export type IIterationNode = BaseNode;
export type IIterationStartNode = BaseNode;
export type IKeywordNode = BaseNode;
export type ICodeNode = BaseNode<ICodeForm>;
export type IAgentNode = BaseNode;
export type IAgentNode<T = any> = BaseNode<T>;
export type RAGFlowNodeType =
| IBeginNode