Spaces:
Build error
Build error
File size: 170 Bytes
345000b | 1 2 3 4 5 6 7 | def prepare_jd_chunks(jd_text: str) -> list[str]:
return [
line.strip()
for line in jd_text.split("\n")
if len(line.strip()) > 20
]
|