10 lines
228 B
Python
10 lines
228 B
Python
from enum import Enum
|
|
|
|
|
|
class ChunkStrategy(Enum):
|
|
"""Chunking strategies for the vector database."""
|
|
EXACT = "exact"
|
|
PARAGRAPH = "paragraph"
|
|
SENTENCE = "sentence"
|
|
VANILLA = "vanilla"
|
|
SUMMARY = "summary"
|