mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-07-12 14:45:42 +08:00
### 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>
26 lines
575 B
TypeScript
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',
|
|
}
|