---
title: LlmRole
description: "LLM-DataDist的角色"
url: https://www.hiascend.com/document/detail/zh/canncommercial/latest/others/llmdatadistdev/llmcrv1_42_20.html
sourcePath: /source/zh/canncommercial/900/others/llmdatadistdev/llmcrv1_42_20.html
indexId: d03e60255169bbea7595c7c67857768c947626ca52b2f7d2d30bb478ace424f370
---
# LlmRole

LLM-DataDist的角色

```
enum class LlmRole : int32_t {
  kPrompt = 1,      // 角色为Prompt
  kDecoder = 2,     // 角色为Decoder
  kMix = 3,         // 角色为Mix
  kEnd              // 无效值
}
```
