PlanExe / src /markdown_util /remove_bold_formatting.py
Simon Strandgaard
Snapshot of PlanExe commit 773f9ca98123b5751e6b16be192818b572af1aa0
1bfe7f5
raw
history blame contribute delete
382 Bytes
import re
def remove_bold_formatting(text: str) -> str:
"""
Remove bold formatting from the text.
When processing long texts with LLMs, the token count is a limiting factor.
This function removes the bold formatting from the text to reduce the token count.
"""
text = re.sub(r'\*\*([^*]+)\*\*', r'\1', text)
return re.sub(r'__([^_]+?)__', r'\1', text)