From 0be7409af386d325a8269eac1e8568cb36418528 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=8F=E5=82=85=E5=93=A5?= Date: Tue, 29 Oct 2024 10:16:16 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=A8=A1=E5=9E=8B=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/cn/bugstack/chatglm/session/Configuration.java | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/main/java/cn/bugstack/chatglm/session/Configuration.java b/src/main/java/cn/bugstack/chatglm/session/Configuration.java index 07ec3c3..a1b27bc 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; } -- GitLab