diff --git a/src/main/java/cn/bugstack/chatglm/session/Configuration.java b/src/main/java/cn/bugstack/chatglm/session/Configuration.java index 07ec3c3a959f5d5e3981171997c3ffc747903c6d..a1b27bc1a24039aeea5c585b8301dc30a470a7df 100644 --- a/src/main/java/cn/bugstack/chatglm/session/Configuration.java +++ b/src/main/java/cn/bugstack/chatglm/session/Configuration.java @@ -98,6 +98,14 @@ public class Configuration { this.executorGroup.put(Model.GLM_3_5_TURBO, glmExecutor); this.executorGroup.put(Model.GLM_4, glmExecutor); this.executorGroup.put(Model.GLM_4V, glmExecutor); + this.executorGroup.put(Model.GLM_4_Plus, glmExecutor); + this.executorGroup.put(Model.GLM_4_0520, glmExecutor); + this.executorGroup.put(Model.GLM_4_Lng, glmExecutor); + this.executorGroup.put(Model.GLM_4_AirX, glmExecutor); + this.executorGroup.put(Model.GLM_4_Air, glmExecutor); + this.executorGroup.put(Model.GLM_4_FlashX, glmExecutor); + this.executorGroup.put(Model.GLM_4_Flash, glmExecutor); + this.executorGroup.put(Model.GLM_4_AllTools, glmExecutor); this.executorGroup.put(Model.COGVIEW_3, glmExecutor); return this.executorGroup; }