mirror of
https://git.mirrors.martin98.com/https://github.com/infiniflow/ragflow.git
synced 2025-06-04 11:24:00 +08:00
15 lines
255 B
TypeScript
15 lines
255 B
TypeScript
export enum KnowledgeRouteKey {
|
|
Dataset = 'dataset',
|
|
Testing = 'testing',
|
|
Configuration = 'configuration',
|
|
TempTesting = 'tempTesting',
|
|
}
|
|
|
|
export enum RunningStatus {
|
|
UNSTART = '0',
|
|
RUNNING = '1',
|
|
CANCEL = '2',
|
|
DONE = '3',
|
|
FAIL = '4',
|
|
}
|