Package nl.dannyj.mistral.services
Class HttpService
java.lang.Object
nl.dannyj.mistral.services.HttpService
The HttpService class is responsible for making HTTP requests to the Mistral AI API.
It uses the OkHttpClient from the MistralClient to execute these requests.
-
Constructor Summary
ConstructorsConstructorDescriptionHttpService
(@NonNull MistralClient client) Constructor that initializes the HttpService with a provided MistralClient. -
Method Summary
Modifier and TypeMethodDescriptionMakes a GET request to the specified URL path.Makes a POST request to the specified URL path with the provided body.void
streamPost
(@NonNull String urlPath, @NonNull String body, okhttp3.Callback callBack) Makes a streaming POST request to the specified URL path with the provided body.
-
Constructor Details
-
HttpService
Constructor that initializes the HttpService with a provided MistralClient.- Parameters:
client
- The MistralClient to be used for making requests to the Mistral AI API
-
-
Method Details
-
get
Makes a GET request to the specified URL path.- Parameters:
urlPath
- The URL path to make the GET request to- Returns:
- The response body as a string
-
post
Makes a POST request to the specified URL path with the provided body.- Parameters:
urlPath
- The URL path to make the POST request tobody
- The JSON body of the POST request- Returns:
- The response body as a string
-
streamPost
public void streamPost(@NonNull @NonNull String urlPath, @NonNull @NonNull String body, okhttp3.Callback callBack) Makes a streaming POST request to the specified URL path with the provided body.- Parameters:
urlPath
- The URL path to make the POST request tobody
- The JSON body of the POST requestcallBack
- The callback to handle chunks received during streaming
-