MCPcopy Create free account
hub / github.com/MiuLab/Taiwan-LLM / SeparatorStyle

Class SeparatorStyle

evaluation/conversation.py:13–29  ·  view source on GitHub ↗

Separator styles.

Source from the content-addressed store, hash-verified

11
12
13class SeparatorStyle(IntEnum):
14 """Separator styles."""
15
16 ADD_COLON_SINGLE = auto()
17 ADD_COLON_TWO = auto()
18 ADD_COLON_SPACE_SINGLE = auto()
19 NO_COLON_SINGLE = auto()
20 NO_COLON_TWO = auto()
21 ADD_NEW_LINE_SINGLE = auto()
22 LLAMA2 = auto()
23 CHATGLM = auto()
24 CHATML = auto()
25 CHATINTERN = auto()
26 DOLLY = auto()
27 RWKV = auto()
28 PHOENIX = auto()
29 ROBIN = auto()
30
31
32@dataclasses.dataclass

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected