ReMe/reme4/enumeration/chunk_enum.py
jinli.yl c8e96b5ae8 up
2026-05-15 23:17:49 +08:00

21 lines
328 B
Python

"""Chunk enumeration module."""
from enum import Enum
class ChunkEnum(str, Enum):
"""Enumeration of possible chunk categories for stream processing."""
THINK = "think"
CONTENT = "content"
TOOL_CALL = "tool_call"
TOOL_RESULT = "tool_result"
USAGE = "usage"
ERROR = "error"
DONE = "done"