mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-02-06 18:45:08 +08:00
Fix: In the agent loop, if the await response is selected as the variable, the operator cannot be selected. #12656 (#12657)
### What problem does this PR solve? Fix: In the agent loop, if the await response is selected as the variable, the operator cannot be selected. #12656 ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
@ -1075,3 +1075,13 @@ export enum WebhookStatus {
|
||||
Live = 'live',
|
||||
Stopped = 'stopped',
|
||||
}
|
||||
|
||||
// Map BeginQueryType to TypesWithArray
|
||||
export const BeginQueryTypeMap = {
|
||||
[BeginQueryType.Line]: TypesWithArray.String,
|
||||
[BeginQueryType.Paragraph]: TypesWithArray.String,
|
||||
[BeginQueryType.Options]: TypesWithArray.ArrayString,
|
||||
[BeginQueryType.File]: 'File',
|
||||
[BeginQueryType.Integer]: TypesWithArray.Number,
|
||||
[BeginQueryType.Boolean]: TypesWithArray.Boolean,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user