mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
### What problem does this PR solve? feat: click on a blank area of the canvas to hide the form drawer #918 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
@ -203,9 +203,9 @@ export const CategorizeAnchorPointPositions = [
|
||||
export const RestrictedUpstreamMap = {
|
||||
[Operator.Begin]: [],
|
||||
[Operator.Categorize]: [Operator.Begin, Operator.Categorize, Operator.Answer],
|
||||
[Operator.Answer]: [],
|
||||
[Operator.Retrieval]: [],
|
||||
[Operator.Generate]: [],
|
||||
[Operator.Answer]: [Operator.Begin, Operator.Answer, Operator.Message],
|
||||
[Operator.Retrieval]: [Operator.Begin, Operator.Relevant],
|
||||
[Operator.Generate]: [Operator.Begin],
|
||||
[Operator.Message]: [
|
||||
Operator.Begin,
|
||||
Operator.Message,
|
||||
@ -214,8 +214,14 @@ export const RestrictedUpstreamMap = {
|
||||
Operator.RewriteQuestion,
|
||||
Operator.Categorize,
|
||||
],
|
||||
[Operator.Relevant]: [],
|
||||
[Operator.RewriteQuestion]: [],
|
||||
[Operator.Relevant]: [Operator.Begin, Operator.Answer],
|
||||
[Operator.RewriteQuestion]: [
|
||||
Operator.Begin,
|
||||
Operator.Message,
|
||||
Operator.Generate,
|
||||
Operator.RewriteQuestion,
|
||||
Operator.Categorize,
|
||||
],
|
||||
};
|
||||
|
||||
export const NodeMap = {
|
||||
|
||||
Reference in New Issue
Block a user