mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-07-24 17:36:47 +08:00
17 lines
384 B
TypeScript
17 lines
384 B
TypeScript
export const enum CompilationTemplateKind {
|
|
Artifacts = 'artifacts',
|
|
KnowledgeGraph = 'knowledge_graph',
|
|
Timeline = 'timeline',
|
|
PageIndex = 'page_index',
|
|
Tree = 'tree',
|
|
Empty = 'empty',
|
|
MindMap = 'mind_map',
|
|
SessionGraph = 'session_graph',
|
|
SessionEssence = 'session_essence',
|
|
}
|
|
|
|
export const enum CompilationTemplateScope {
|
|
File = 'file',
|
|
Dataset = 'dataset',
|
|
}
|