mirror of
https://github.com/csunny/DB-GPT.git
synced 2026-01-15 14:56:03 +00:00
14 lines
238 B
Python
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"
|