LlmRole
LLM-DataDist的角色
1 2 3 4 5 6 | enum class LlmRole : int32_t {
kPrompt = 1, // 角色为Prompt
kDecoder = 2, // 角色为Decoder
kMix = 3, // 角色为Mix
kEnd // 无效值
}
|
父主题: 数据结构
LLM-DataDist的角色
1 2 3 4 5 6 | enum class LlmRole : int32_t {
kPrompt = 1, // 角色为Prompt
kDecoder = 2, // 角色为Decoder
kMix = 3, // 角色为Mix
kEnd // 无效值
}
|