Research-Stack/1-Distributed-Systems/agents/claw/src/interactiveHelpers.py

5 lines
129 B
Python

from __future__ import annotations
def bulletize(items: list[str]) -> str:
return '\n'.join(f'- {item}' for item in items)