---
title: LoraOperation枚举类
description: "LoraOperation枚举类，表示LoRA请求的类型。"
url: https://www.hiascend.com/document/detail/zh/mindie/latest/mindiellm/llmdev/mindie_llm0153.html
sourcePath: /source/zh/mindie/310/mindiellm/llmdev/mindie_llm0153.html
indexId: f407e74c9d1a9215582fe111a2bf10d45656ace059d89768e70208685ab77c8f58
---
# LoraOperation枚举类

#### 枚举类功能

LoraOperation枚举类，表示LoRA请求的类型。


#### 枚举类格式

```
enum class LoraOperation {
LOAD = 0,
UNLOAD = 1,
QUERY = 2,
};
```


#### 枚举值

| 枚举名 | 说明 |
| --- | --- |
| LOAD | 请求加载LoRA的类型。 |
| UNLOAD | 请求卸载LoRA的类型。 |
| QUERY | 请求查询可以使用的LoRA的类型。 |
