mirror of
https://gitee.com/huangge1199_admin/vue-pro.git
synced 2025-01-31 09:30:05 +08:00
【处理】GoogleGemir 先注释代码,不然跑不起来
This commit is contained in:
parent
ca4ee3be1f
commit
d695219534
@ -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);
|
||||
// }
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user