All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ee.carlrobert.llm.client.azure.AzureCompletionRequestParams Maven / Gradle / Ivy

There is a newer version: 0.8.28
Show newest version
package ee.carlrobert.llm.client.azure;

public class AzureCompletionRequestParams {

  private final String resourceName;
  private final String deploymentId;
  private final String apiVersion;


  public AzureCompletionRequestParams(
      String resourceName,
      String completionDeploymentId,
      String apiVersion) {
    this.resourceName = resourceName;
    this.deploymentId = completionDeploymentId;
    this.apiVersion = apiVersion;
  }

  public String getResourceName() {
    return resourceName;
  }

  public String getDeploymentId() {
    return deploymentId;
  }

  public String getApiVersion() {
    return apiVersion;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy