项目文件夹

文件
wehub-resource-sync a2cb1f9821
CI / test (push) Has been cancelled
Wiki / validate (push) Has been cancelled
Deploy Wiki / Deploy to Cloudflare Pages (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:03:55 +08:00

17 行
507 B
Python

"""Small, pure helpers shared across CLI components.
Everything here is stateless and side-effect free — safe to import from any
module in ``agent/cli``. Larger or stateful helpers belong in their own module
(see ``cli/stream.py`` for the streaming renderer).
"""
from cli.utils.format import abbreviate_num, format_duration, format_tokens
from cli.utils.thinking_verbs import pick_thinking_verb
__all__ = [
"abbreviate_num",
"format_duration",
"format_tokens",
"pick_thinking_verb",
]