ee.carlrobert.llm.client.azure.AzureCompletionRequestParams Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of llm-client Show documentation
Show all versions of llm-client Show documentation
Java http client wrapped around the OkHttp3 library
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;
}
}