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

9 lines
270 B
Python
Raw Normal View History

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