mirror of
https://github.com/hpcaitech/ColossalAI.git
synced 2025-05-12 10:27:44 +00:00
7 lines
88 B
Python
7 lines
88 B
Python
from enum import Enum
|
|
|
|
|
|
class DocAction(str, Enum):
|
|
ADD = "add"
|
|
CLEAR = "clear"
|