Просмотр исходного кода

【处理】GoogleGemir 先注释代码,不然跑不起来

cherishsince 11 месяцев назад
Родитель
Сommit
d695219534

+ 8 - 8
yudao-module-ai/yudao-spring-boot-starter-ai/src/main/java/cn/iocoder/yudao/framework/ai/core/factory/AiClientFactoryImpl.java

@@ -60,8 +60,8 @@ public class AiClientFactoryImpl implements AiClientFactory {
                     return buildXingHuoChatClient(apiKey);
                 case QIAN_WEN:
                     return buildQianWenChatClient(apiKey);
-                case GEMIR:
-                    return buildGoogleGemir(apiKey);
+//                case GEMIR:
+//                    return buildGoogleGemir(apiKey);
                 default:
                     throw new IllegalArgumentException(StrUtil.format("未知平台({})", platform));
             }
@@ -170,11 +170,11 @@ public class AiClientFactoryImpl implements AiClientFactory {
     }
 
 
-    private static VertexAiGeminiChatClient buildGoogleGemir(String key) {
-        List<String> keys = StrUtil.split(key, '|');
-        Assert.equals(keys.size(), 2, "VertexAiGeminiChatClient 的密钥需要 (projectId|location) 格式");
-        VertexAI vertexApi =  new VertexAI(keys.get(0), keys.get(1));
-        return new VertexAiGeminiChatClient(vertexApi);
-    }
+//    private static VertexAiGeminiChatClient buildGoogleGemir(String key) {
+//        List<String> keys = StrUtil.split(key, '|');
+//        Assert.equals(keys.size(), 2, "VertexAiGeminiChatClient 的密钥需要 (projectId|location) 格式");
+//        VertexAI vertexApi =  new VertexAI(keys.get(0), keys.get(1));
+//        return new VertexAiGeminiChatClient(vertexApi);
+//    }
 
 }