From 91c536145f64a34c3d87ac0724973e1c0bfb4400 Mon Sep 17 00:00:00 2001
From: wujingjing <gersonwu@qq.com>
Date: 星期四, 12 十二月 2024 14:39:29 +0800
Subject: [PATCH] agentNames

---
 src/components/vue-flow/VueFlowConstant.ts |   24 ++++++++++++++++++++++--
 1 files changed, 22 insertions(+), 2 deletions(-)

diff --git a/src/components/vue-flow/VueFlowConstant.ts b/src/components/vue-flow/VueFlowConstant.ts
index 85d8d86..5461236 100644
--- a/src/components/vue-flow/VueFlowConstant.ts
+++ b/src/components/vue-flow/VueFlowConstant.ts
@@ -1,3 +1,23 @@
 export class VueFlowConstant {
-    static PARAMS_KEY = 'input';
-}
\ No newline at end of file
+	static GROUP_PARAMS_KEY = 'group_params';
+	static PARAMS_KEY = 'params';
+
+	static LLM_MODEL_LIST = [
+		{
+			label: 'gpt-3.5-turbo',
+			value: 'gpt-3.5-turbo',
+		},
+		{
+			label: 'gpt-4',
+			value: 'gpt-4',
+		},
+		{
+			label: 'gpt-4-32k',
+			value: 'gpt-4-32k',
+		},
+		{
+			label: 'gpt-4-turbo',
+			value: 'gpt-4-turbo',
+		},
+	];
+}

--
Gitblit v1.9.3