def prepare_jd_chunks(jd_text: str) -> list[str]: return [ line.strip() for line in jd_text.split("\n") if len(line.strip()) > 20 ]