Source code for agent_inspect.user_proxy.utils
[docs]
def ensure_full_stop(text: str) -> str:
text = text.rstrip()
return text if text.endswith('.') else text + '.'
[docs]
def ensure_full_stop(text: str) -> str:
text = text.rstrip()
return text if text.endswith('.') else text + '.'