Files
DB-GPT/pilot/common/schema.py
2023-06-25 14:46:46 +08:00

14 lines
238 B
Python

from enum import auto, Enum
from typing import List, Any
class SeparatorStyle(Enum):
SINGLE = "###"
TWO = "</s>"
THREE = auto()
FOUR = auto()
class ExampleType(Enum):
ONE_SHOT = "one_shot"
FEW_SHOT = "few_shot"