项目文件夹

文件
2026-07-13 13:08:41 +08:00

9 行
133 B
Python

from enum import Enum
class Verbosity(str, Enum):
CONCISE = "concise"
STANDARD = "standard"
TEXT_HEAVY = "text-heavy"