Files
ragflow_python/web/src/constants/knowledge.ts

15 lines
255 B
TypeScript
Raw Normal View History

export enum KnowledgeRouteKey {
Dataset = 'dataset',
Testing = 'testing',
Configuration = 'configuration',
TempTesting = 'tempTesting',
}
export enum RunningStatus {
UNSTART = '0',
RUNNING = '1',
CANCEL = '2',
DONE = '3',
FAIL = '4',
}