Class HttpService

java.lang.Object
nl.dannyj.mistral.services.HttpService

public class HttpService extends Object
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

    Constructors
    Constructor
    Description
    HttpService(@NonNull MistralClient client)
    Constructor that initializes the HttpService with a provided MistralClient.
  • Method Summary

    Modifier and Type
    Method
    Description
    get(@NonNull String urlPath)
    Makes a GET request to the specified URL path.
    post(@NonNull String urlPath, @NonNull String body)
    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.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • HttpService

      public HttpService(@NonNull @NonNull MistralClient client)
      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

      public String get(@NonNull @NonNull String urlPath)
      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

      public String post(@NonNull @NonNull String urlPath, @NonNull @NonNull String body)
      Makes a POST request to the specified URL path with the provided body.
      Parameters:
      urlPath - The URL path to make the POST request to
      body - 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 to
      body - The JSON body of the POST request
      callBack - The callback to handle chunks received during streaming