Spaces:
Running
Running
| # src/summarization/utils.py | |
| import re | |
| def split_sentences(text): | |
| return re.split(r'(?<=[.!?])\s+', text) | |
| # src/summarization/utils.py | |
| import re | |
| def split_sentences(text): | |
| return re.split(r'(?<=[.!?])\s+', text) | |