mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-05 08:06:15 +00:00
9 lines
152 B
Python
9 lines
152 B
Python
from enum import Enum
|
|
|
|
|
|
class ChunkEnum(str, Enum):
|
|
THINK = "think"
|
|
ANSWER = "answer"
|
|
TOOL = "tool"
|
|
USAGE = "usage"
|
|
ERROR = "error"
|