cognee/iterations/level_2/shared/chunk_strategy.py

7 lines
148 B
Python

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