Package dev.langchain4j.model.bedrock
Class BedrockAnthropicMessageChatModel
java.lang.Object
dev.langchain4j.model.bedrock.internal.AbstractSharedBedrockChatModel
dev.langchain4j.model.bedrock.internal.AbstractBedrockChatModel<BedrockAnthropicMessageChatModelResponse>
dev.langchain4j.model.bedrock.BedrockAnthropicMessageChatModel
- All Implemented Interfaces:
ChatLanguageModel
@Deprecated(forRemoval=true,
since="1.0.0-beta2")
public class BedrockAnthropicMessageChatModel
extends AbstractBedrockChatModel<BedrockAnthropicMessageChatModelResponse>
Deprecated, for removal: This API element is subject to removal in a future version.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic enum
Deprecated, for removal: This API element is subject to removal in a future version.Bedrock Anthropic model ids. -
Field Summary
Fields inherited from class dev.langchain4j.model.bedrock.internal.AbstractSharedBedrockChatModel
ASSISTANT_PROMPT, assistantPrompt, credentialsProvider, HUMAN_PROMPT, humanPrompt, listeners, maxRetries, maxTokens, region, stopSequences, temperature, timeout, topP
-
Constructor Summary
ConstructorsConstructorDescriptionDeprecated, for removal: This API element is subject to removal in a future version. -
Method Summary
Modifier and TypeMethodDescriptionchat
(ChatRequest chatRequest) Deprecated, for removal: This API element is subject to removal in a future version.This is the main API to interact with the chat model.generate
(List<ChatMessage> messages) Deprecated, for removal: This API element is subject to removal in a future version.protected String
Deprecated, for removal: This API element is subject to removal in a future version.Get model idgetRequestParameters
(String prompt) Deprecated, for removal: This API element is subject to removal in a future version.Get request parametersDeprecated, for removal: This API element is subject to removal in a future version.Get response class typeMethods inherited from class dev.langchain4j.model.bedrock.internal.AbstractBedrockChatModel
getClient, listeners, of, provider, toAiMessage
Methods inherited from class dev.langchain4j.model.bedrock.internal.AbstractSharedBedrockChatModel
chatMessageToString, convertMessagesToAwsBody, createModelListenerRequest, createModelListenerRequest, createModelListenerResponse, listenerErrorResponse
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface dev.langchain4j.model.chat.ChatLanguageModel
chat, chat, chat, defaultRequestParameters, doChat, supportedCapabilities
-
Constructor Details
-
BedrockAnthropicMessageChatModel
public BedrockAnthropicMessageChatModel()Deprecated, for removal: This API element is subject to removal in a future version.
-
-
Method Details
-
getModelId
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from class:AbstractSharedBedrockChatModel
Get model id- Specified by:
getModelId
in classAbstractSharedBedrockChatModel
- Returns:
- model id
-
getRequestParameters
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from class:AbstractBedrockChatModel
Get request parameters- Specified by:
getRequestParameters
in classAbstractBedrockChatModel<BedrockAnthropicMessageChatModelResponse>
- Parameters:
prompt
- prompt- Returns:
- request body
-
chat
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:ChatLanguageModel
This is the main API to interact with the chat model. A temporary default implementation of this method is necessary until allChatLanguageModel
implementations adopt it. It should be removed once that occurs.- Specified by:
chat
in interfaceChatLanguageModel
- Overrides:
chat
in classAbstractBedrockChatModel<BedrockAnthropicMessageChatModelResponse>
- Parameters:
chatRequest
- aChatRequest
, containing all the inputs to the LLM- Returns:
- a
ChatResponse
, containing all the outputs from the LLM
-
generate
Deprecated, for removal: This API element is subject to removal in a future version.- Overrides:
generate
in classAbstractBedrockChatModel<BedrockAnthropicMessageChatModelResponse>
-
getResponseClassType
Deprecated, for removal: This API element is subject to removal in a future version.Description copied from class:AbstractBedrockChatModel
Get response class type- Specified by:
getResponseClassType
in classAbstractBedrockChatModel<BedrockAnthropicMessageChatModelResponse>
- Returns:
- response class type
-
BedrockChatModel
instead