Files
ragflow/web/src/pages/dataflow-result/constant.ts
Magicbook1108 69264b3a70 Feat: Refact pipeline (#13826)
### What problem does this PR solve?

### Type of change

- [x] New Feature (non-breaking change which adds functionality)
- [x] Refactoring

---------

Co-authored-by: Zhichang Yu <yuzhichang@gmail.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-03 19:26:45 +08:00

26 lines
575 B
TypeScript

export enum ChunkTextMode {
Full = 'full',
Ellipse = 'ellipse',
}
export enum TimelineNodeType {
begin = 'file',
parser = 'parser',
contextGenerator = 'extractor',
titleChunker = 'titleChunker',
tokenChunker = 'tokenChunker',
tokenizer = 'tokenizer',
end = 'end',
}
export enum PipelineResultSearchParams {
DocumentId = 'doc_id',
KnowledgeId = 'knowledgeId',
Type = 'type',
IsReadOnly = 'is_read_only',
AgentId = 'agent_id',
AgentTitle = 'agent_title',
CreatedBy = 'created_by', // Who uploaded the file
DocumentExtension = 'extension',
}