提示词分组
| 30 | |
| 31 | # ======================== 提示词分组枚举 ======================== |
| 32 | class PromptGroup(Enum): |
| 33 | """提示词分组""" |
| 34 | IMAGE = "image" # 图片类(需要转base64) |
| 35 | ARROW = "arrow" # 箭头类(需要方向检测) |
| 36 | BASIC_SHAPE = "shape" # 基本图形(需要取色矢量化) |
| 37 | BACKGROUND = "background" # 背景/容器类 |
| 38 | |
| 39 | |
| 40 | @dataclass |
nothing calls this directly
no outgoing calls
no test coverage detected