Files
life-echo/api/app/features/memory/chunker.py

7 lines
264 B
Python
Raw Normal View History

"""Transcript chunker — split raw text into retrieval-ready chunks (skeleton)."""
def chunk_transcript(text: str, *, max_tokens: int = 512, overlap: int = 64) -> list[str]:
"""Split transcript text into overlapping chunks."""
raise NotImplementedError