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