Package nl.dannyj.mistral
Class MistralClient
java.lang.Object
nl.dannyj.mistral.MistralClient
The MistralClient is the main class that interacts with all components of this library.
It initializes all the necessary components and provides methods to interact with the Mistral AI API.
-
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor that initializes the MistralClient with the API key from the environment variable "MISTRAL_API_KEY".MistralClient
(@NonNull String apiKey) Constructor that initializes the MistralClient with a provided API key.MistralClient
(@NonNull String apiKey, @NonNull com.fasterxml.jackson.databind.ObjectMapper objectMapper) Constructor that initializes the MistralClient with a provided API key and object mapper.MistralClient
(@NonNull String apiKey, @NonNull okhttp3.OkHttpClient httpClient) Constructor that initializes the MistralClient with a provided API key and HTTP client.MistralClient
(@NonNull String apiKey, @NonNull okhttp3.OkHttpClient httpClient, @NonNull com.fasterxml.jackson.databind.ObjectMapper objectMapper) Constructor that initializes the MistralClient with a provided API key, HTTP client, and object mapper. -
Method Summary
Modifier and TypeMethodDescriptioncreateChatCompletion
(@NonNull ChatCompletionRequest request) Use the Mistral AI API to create a chat completion (an assistant reply to the conversation).createChatCompletionAsync
(@NonNull ChatCompletionRequest request) Use the Mistral AI API to create a chat completion (an assistant reply to the conversation).void
createChatCompletionStream
(@NonNull ChatCompletionRequest request, @NonNull ChatCompletionChunkCallback callback) createEmbedding
(@NonNull EmbeddingRequest request) This method is used to create an embedding using the Mistral AI API.createEmbeddingAsync
(@NonNull EmbeddingRequest request) This method is used to create an embedding using the Mistral AI API.okhttp3.OkHttpClient
com.fasterxml.jackson.databind.ObjectMapper
Lists all models available according to the Mistral AI API.Lists all models available according to the Mistral AI API.void
void
setHttpClient
(okhttp3.OkHttpClient httpClient) void
setMistralService
(MistralService mistralService) void
setObjectMapper
(com.fasterxml.jackson.databind.ObjectMapper objectMapper)
-
Constructor Details
-
MistralClient
Constructor that initializes the MistralClient with a provided API key.- Parameters:
apiKey
- The API key to be used for the Mistral AI API
-
MistralClient
public MistralClient()Default constructor that initializes the MistralClient with the API key from the environment variable "MISTRAL_API_KEY". -
MistralClient
public MistralClient(@NonNull @NonNull String apiKey, @NonNull @NonNull okhttp3.OkHttpClient httpClient, @NonNull @NonNull com.fasterxml.jackson.databind.ObjectMapper objectMapper) Constructor that initializes the MistralClient with a provided API key, HTTP client, and object mapper.- Parameters:
apiKey
- The API key to be used for the Mistral AI APIhttpClient
- The OkHttpClient to be used for making requests to the Mistral AI APIobjectMapper
- The Jackson ObjectMapper to be used for serializing and deserializing JSON
-
MistralClient
public MistralClient(@NonNull @NonNull String apiKey, @NonNull @NonNull okhttp3.OkHttpClient httpClient) Constructor that initializes the MistralClient with a provided API key and HTTP client.- Parameters:
apiKey
- The API key to be used for the Mistral AI APIhttpClient
- The OkHttpClient to be used for making requests to the Mistral AI API
-
MistralClient
public MistralClient(@NonNull @NonNull String apiKey, @NonNull @NonNull com.fasterxml.jackson.databind.ObjectMapper objectMapper) Constructor that initializes the MistralClient with a provided API key and object mapper.- Parameters:
apiKey
- The API key to be used for the Mistral AI APIobjectMapper
- The Jackson ObjectMapper to be used for serializing and deserializing JSON
-
-
Method Details
-
createChatCompletion
Use the Mistral AI API to create a chat completion (an assistant reply to the conversation). This is a blocking method.- Parameters:
request
- The request to create a chat completion. SeeChatCompletionRequest
.- Returns:
- The response from the Mistral AI API containing the generated message. See
ChatCompletionResponse
. - Throws:
jakarta.validation.ConstraintViolationException
- if the request does not pass validationUnexpectedResponseException
- if an unexpected response is received from the Mistral AI APIIllegalArgumentException
- if the first message role is not 'user' or 'system'
-
createChatCompletionAsync
public CompletableFuture<ChatCompletionResponse> createChatCompletionAsync(@NonNull @NonNull ChatCompletionRequest request) Use the Mistral AI API to create a chat completion (an assistant reply to the conversation). This is a non-blocking/asynchronous method.- Parameters:
request
- The request to create a chat completion. SeeChatCompletionRequest
.- Returns:
- A CompletableFuture that will complete with generated message from the Mistral AI API. See
ChatCompletionResponse
. - Throws:
jakarta.validation.ConstraintViolationException
- if the request does not pass validationUnexpectedResponseException
- if an unexpected response is received from the Mistral AI APIIllegalArgumentException
- if the first message role is not 'user' or 'system'
-
createEmbedding
This method is used to create an embedding using the Mistral AI API. The embeddings for the input strings. See the mistral documentation for more details on embeddings. This is a blocking method.- Parameters:
request
- The request to create an embedding. SeeEmbeddingRequest
.- Returns:
- The response from the Mistral AI API containing the generated embedding. See
EmbeddingResponse
. - Throws:
jakarta.validation.ConstraintViolationException
- if the request does not pass validationUnexpectedResponseException
- if an unexpected response is received from the Mistral AI API
-
createEmbeddingAsync
public CompletableFuture<EmbeddingResponse> createEmbeddingAsync(@NonNull @NonNull EmbeddingRequest request) This method is used to create an embedding using the Mistral AI API. The embeddings for the input strings. See the mistral documentation for more details on embeddings. This is a non-blocking/asynchronous method.- Parameters:
request
- The request to create an embedding. SeeEmbeddingRequest
.- Returns:
- A CompletableFuture that will complete with the generated embedding from the Mistral AI API. See
EmbeddingResponse
. - Throws:
jakarta.validation.ConstraintViolationException
- if the request does not pass validationUnexpectedResponseException
- if an unexpected response is received from the Mistral AI API
-
listModels
Lists all models available according to the Mistral AI API. This is a blocking method.- Returns:
- The response from the Mistral AI API containing the list of models. See
ListModelsResponse
. - Throws:
UnexpectedResponseException
- if an unexpected response is received from the Mistral AI API
-
listModelsAsync
Lists all models available according to the Mistral AI API. This is a non-blocking/asynchronous method.- Returns:
- A CompletableFuture that will complete with the list of models from the Mistral AI API. See
ListModelsResponse
. - Throws:
UnexpectedResponseException
- if an unexpected response is received from the Mistral AI API
-
createChatCompletionStream
public void createChatCompletionStream(@NonNull @NonNull ChatCompletionRequest request, @NonNull @NonNull ChatCompletionChunkCallback callback) -
setApiKey
-
setHttpClient
public void setHttpClient(okhttp3.OkHttpClient httpClient) -
setObjectMapper
public void setObjectMapper(com.fasterxml.jackson.databind.ObjectMapper objectMapper) -
setMistralService
-
getApiKey
-
getHttpClient
public okhttp3.OkHttpClient getHttpClient() -
getObjectMapper
public com.fasterxml.jackson.databind.ObjectMapper getObjectMapper() -
getMistralService
-