8 lines
172 B
Python
8 lines
172 B
Python
from enum import Enum
|
|
|
|
class ChunkStrategy(Enum):
|
|
EXACT = 'exact'
|
|
PARAGRAPH = 'paragraph'
|
|
SENTENCE = 'sentence'
|
|
VANILLA = 'vanilla'
|
|
SUMMARY = 'summary'
|