7 lines
148 B
Python
7 lines
148 B
Python
from enum import Enum
|
|
|
|
class ChunkStrategy(Enum):
|
|
EXACT = 'exact'
|
|
PARAGRAPH = 'paragraph'
|
|
SENTENCE = 'sentence'
|
|
VANILLA = 'vanilla'
|