Spaces:
Sleeping
Sleeping
File size: 318 Bytes
a60c0af | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | """Utility helpers for normalizing agent generated text."""
from __future__ import annotations
import re
def strip_tool_calls(text: str) -> str:
"""Remove tool call markers from text."""
if not text:
return text
pattern = re.compile(r"\[TOOL_CALL:[^\]]+\]")
return pattern.sub("", text)
|