10 changed files with 140 additions and 5 deletions
@ -0,0 +1,60 @@ |
|||
/** |
|||
* Copyright © 2016-2025 The Thingsboard Authors |
|||
* |
|||
* Licensed under the Apache License, Version 2.0 (the "License"); |
|||
* you may not use this file except in compliance with the License. |
|||
* You may obtain a copy of the License at |
|||
* |
|||
* http://www.apache.org/licenses/LICENSE-2.0
|
|||
* |
|||
* Unless required by applicable law or agreed to in writing, software |
|||
* distributed under the License is distributed on an "AS IS" BASIS, |
|||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|||
* See the License for the specific language governing permissions and |
|||
* limitations under the License. |
|||
*/ |
|||
package org.thingsboard.server.common.data.ai.model.chat; |
|||
|
|||
import dev.langchain4j.model.chat.ChatModel; |
|||
import org.thingsboard.server.common.data.ai.provider.AmazonBedrockProviderConfig; |
|||
|
|||
public record AmazonBedrockChatModel( |
|||
AmazonBedrockProviderConfig providerConfig, |
|||
Config modelConfig |
|||
) implements AiChatModel<AmazonBedrockChatModel.Config> { |
|||
|
|||
public record Config( |
|||
String modelId, |
|||
Double temperature, |
|||
Integer timeoutSeconds, |
|||
Integer maxRetries |
|||
) implements AiChatModelConfig<AmazonBedrockChatModel.Config> { |
|||
|
|||
@Override |
|||
public AmazonBedrockChatModel.Config withTemperature(Double temperature) { |
|||
return new Config(modelId, temperature, timeoutSeconds, maxRetries); |
|||
} |
|||
|
|||
@Override |
|||
public AmazonBedrockChatModel.Config withTimeoutSeconds(Integer timeoutSeconds) { |
|||
return new Config(modelId, temperature, timeoutSeconds, maxRetries); |
|||
} |
|||
|
|||
@Override |
|||
public AmazonBedrockChatModel.Config withMaxRetries(Integer maxRetries) { |
|||
return new Config(modelId, temperature, timeoutSeconds, maxRetries); |
|||
} |
|||
|
|||
} |
|||
|
|||
@Override |
|||
public ChatModel configure(Langchain4jChatModelConfigurer configurer) { |
|||
return configurer.configureChatModel(this); |
|||
} |
|||
|
|||
@Override |
|||
public AmazonBedrockChatModel withModelConfig(AmazonBedrockChatModel.Config config) { |
|||
return new AmazonBedrockChatModel(providerConfig, config); |
|||
} |
|||
|
|||
} |
|||
@ -0,0 +1,25 @@ |
|||
/** |
|||
* Copyright © 2016-2025 The Thingsboard Authors |
|||
* |
|||
* Licensed under the Apache License, Version 2.0 (the "License"); |
|||
* you may not use this file except in compliance with the License. |
|||
* You may obtain a copy of the License at |
|||
* |
|||
* http://www.apache.org/licenses/LICENSE-2.0
|
|||
* |
|||
* Unless required by applicable law or agreed to in writing, software |
|||
* distributed under the License is distributed on an "AS IS" BASIS, |
|||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|||
* See the License for the specific language governing permissions and |
|||
* limitations under the License. |
|||
*/ |
|||
package org.thingsboard.server.common.data.ai.provider; |
|||
|
|||
public record AmazonBedrockProviderConfig(String region, String accessKeyId, String secretAccessKey) implements AiProviderConfig { |
|||
|
|||
@Override |
|||
public AiProvider provider() { |
|||
return AiProvider.AMAZON_BEDROCK; |
|||
} |
|||
|
|||
} |
|||
Loading…
Reference in new issue