mirror of https://github.com/hpcaitech/ColossalAI
7 lines
88 B
Python
7 lines
88 B
Python
from enum import Enum
|
|||
|
|||
|
|||
class DocAction(str, Enum):
|
|||
ADD = "add"
|
|||
CLEAR = "clear"
|