com.github.tjake.jlama.net.openai.model.ChatCompletionStreamOptions Maven / Gradle / Ivy
/*
* OpenAI API
* The OpenAI REST API. Please see https://platform.openai.com/docs/api-reference for more details.
*
* The version of the OpenAPI document: 2.1.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.github.tjake.jlama.net.openai.model;
import java.util.Objects;
import java.util.Map;
import java.util.HashMap;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import jakarta.validation.constraints.*;
import jakarta.validation.Valid;
import org.hibernate.validator.constraints.*;
import com.github.tjake.jlama.net.openai.JSON;
/**
* Options for streaming response. Only set this when you set `stream: true`.
*/
@JsonPropertyOrder({
ChatCompletionStreamOptions.JSON_PROPERTY_INCLUDE_USAGE
})
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ChatCompletionStreamOptions {
public static final String JSON_PROPERTY_INCLUDE_USAGE = "include_usage";
private Boolean includeUsage;
public ChatCompletionStreamOptions() {
}
public ChatCompletionStreamOptions includeUsage(Boolean includeUsage) {
this.includeUsage = includeUsage;
return this;
}
/**
* If set, an additional chunk will be streamed before the `data: [DONE]` message. The `usage` field on this chunk shows the token usage statistics for the entire request, and the `choices` field will always be an empty array. All other chunks will also include a `usage` field, but with a null value.
* @return includeUsage
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_INCLUDE_USAGE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Boolean getIncludeUsage() {
return includeUsage;
}
@JsonProperty(JSON_PROPERTY_INCLUDE_USAGE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setIncludeUsage(Boolean includeUsage) {
this.includeUsage = includeUsage;
}
/**
* Return true if this ChatCompletionStreamOptions object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ChatCompletionStreamOptions chatCompletionStreamOptions = (ChatCompletionStreamOptions) o;
return Objects.equals(this.includeUsage, chatCompletionStreamOptions.includeUsage);
}
@Override
public int hashCode() {
return Objects.hash(includeUsage);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ChatCompletionStreamOptions {\n");
sb.append(" includeUsage: ").append(toIndentedString(includeUsage)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}