src/main/java/cc/mrbird/febs/ai/strategy/LlmStrategyEnum.java
@@ -23,4 +23,13 @@ this.name = name; this.value = value; } public static String getName(int code) { for (LlmStrategyEnum c : LlmStrategyEnum.values()) { if (c.code == code) { return c.name; } } return null; } }