2024-02-02 09:35:21 +08:00
|
|
|
export enum KnowledgeRouteKey {
|
|
|
|
|
Dataset = 'dataset',
|
|
|
|
|
Testing = 'testing',
|
2024-02-02 18:49:54 +08:00
|
|
|
Configuration = 'configuration',
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export enum RunningStatus {
|
2024-02-18 18:18:20 +08:00
|
|
|
UNSTART = '0', // need to run
|
|
|
|
|
RUNNING = '1', // need to cancel
|
|
|
|
|
CANCEL = '2', // need to refresh
|
|
|
|
|
DONE = '3', // need to refresh
|
|
|
|
|
FAIL = '4', // need to refresh
|
2024-02-02 09:35:21 +08:00
|
|
|
}
|