cognee/cognitive_architecture/shared/chunk_strategy.py
2023-12-16 15:25:32 +01:00

8 lines
172 B
Python

from enum import Enum
class ChunkStrategy(Enum):
EXACT = 'exact'
PARAGRAPH = 'paragraph'
SENTENCE = 'sentence'
VANILLA = 'vanilla'
SUMMARY = 'summary'