11 changed files with 135 additions and 20 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.AnthropicProviderConfig; |
|||
|
|||
public record AnthropicChatModel( |
|||
AnthropicProviderConfig providerConfig, |
|||
Config modelConfig |
|||
) implements AiChatModel<AnthropicChatModel.Config> { |
|||
|
|||
public record Config( |
|||
String modelId, |
|||
Double temperature, |
|||
Integer timeoutSeconds, |
|||
Integer maxRetries |
|||
) implements AiChatModelConfig<AnthropicChatModel.Config> { |
|||
|
|||
@Override |
|||
public AnthropicChatModel.Config withTemperature(Double temperature) { |
|||
return new Config(modelId, temperature, timeoutSeconds, maxRetries); |
|||
} |
|||
|
|||
@Override |
|||
public AnthropicChatModel.Config withTimeoutSeconds(Integer timeoutSeconds) { |
|||
return new Config(modelId, temperature, timeoutSeconds, maxRetries); |
|||
} |
|||
|
|||
@Override |
|||
public AnthropicChatModel.Config withMaxRetries(Integer maxRetries) { |
|||
return new Config(modelId, temperature, timeoutSeconds, maxRetries); |
|||
} |
|||
|
|||
} |
|||
|
|||
@Override |
|||
public ChatModel configure(Langchain4jChatModelConfigurer configurer) { |
|||
return configurer.configureChatModel(this); |
|||
} |
|||
|
|||
@Override |
|||
public AnthropicChatModel withModelConfig(AnthropicChatModel.Config config) { |
|||
return new AnthropicChatModel(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 AnthropicProviderConfig(String apiKey) implements AiProviderConfig { |
|||
|
|||
@Override |
|||
public AiProvider provider() { |
|||
return AiProvider.ANTHROPIC; |
|||
} |
|||
|
|||
} |
|||
Loading…
Reference in new issue