mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-23 23:16:58 +08:00
### What problem does this PR solve? Feature: Added data source functionality ### Type of change - [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
@ -13,6 +13,7 @@ export enum RunningStatus {
|
||||
CANCEL = '2', // need to refresh
|
||||
DONE = '3', // need to refresh
|
||||
FAIL = '4', // need to refresh
|
||||
SCHEDULE = '5',
|
||||
}
|
||||
|
||||
export const RunningStatusMap = {
|
||||
@ -21,6 +22,7 @@ export const RunningStatusMap = {
|
||||
[RunningStatus.CANCEL]: 'Cancel',
|
||||
[RunningStatus.DONE]: 'Success',
|
||||
[RunningStatus.FAIL]: 'Failed',
|
||||
[RunningStatus.SCHEDULE]: 'Schedule',
|
||||
};
|
||||
|
||||
export enum ModelVariableType {
|
||||
|
||||
Reference in New Issue
Block a user