1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
| package cc.mrbird.febs.ai.strategy.enumerates;
|
| import lombok.Getter;
|
| /**
| * @author Administrator
| */
|
| @Getter
| public enum LlmStrategyContextEnum {
|
|
| LLM_LING_TONG_PROMPT("LLM_LING_TONG_PROMPT","灵通角色设定PROMPT"),
|
| LLM_STRATEGY("LLM_STRATEGY","系统设置AI模型平台"),
|
| /**
| * 流式响应
| */
| THINK("思考过程","THINK"),
| CONTENT("响应内容","CONTENT");
|
| private final String code;
| private final String name;
|
| LlmStrategyContextEnum(String code,String name) {
|
| this.code = code;
| this.name = name;
| }
|
| }
|
|