Files
DB-GPT/pilot/common/schema.py
aries_ckt 682b1468d1 style:format code
format code
2023-06-27 22:20:21 +08:00

15 lines
239 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"