com.github.tjake.jlama.net.openai.model.ChatCompletionRequestToolMessage 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;
/**
* ChatCompletionRequestToolMessage
*/
@JsonPropertyOrder({
ChatCompletionRequestToolMessage.JSON_PROPERTY_ROLE,
ChatCompletionRequestToolMessage.JSON_PROPERTY_CONTENT,
ChatCompletionRequestToolMessage.JSON_PROPERTY_TOOL_CALL_ID
})
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.7.0")
public class ChatCompletionRequestToolMessage {
public static final String JSON_PROPERTY_ROLE = "role";
private String role = "tool";
public static final String JSON_PROPERTY_CONTENT = "content";
private String content;
public static final String JSON_PROPERTY_TOOL_CALL_ID = "tool_call_id";
private String toolCallId;
public ChatCompletionRequestToolMessage() {
}
public ChatCompletionRequestToolMessage role(String role) {
this.role = role;
return this;
}
/**
* The role of the messages author, in this case `tool`.
* @return role
*/
@jakarta.annotation.Nonnull
@NotNull
@JsonProperty(JSON_PROPERTY_ROLE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getRole() {
return role;
}
@JsonProperty(JSON_PROPERTY_ROLE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setRole(String role) {
this.role = role;
}
public ChatCompletionRequestToolMessage content(String content) {
this.content = content;
return this;
}
/**
* The contents of the tool message.
* @return content
*/
@jakarta.annotation.Nonnull
@NotNull
@JsonProperty(JSON_PROPERTY_CONTENT)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getContent() {
return content;
}
@JsonProperty(JSON_PROPERTY_CONTENT)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setContent(String content) {
this.content = content;
}
public ChatCompletionRequestToolMessage toolCallId(String toolCallId) {
this.toolCallId = toolCallId;
return this;
}
/**
* Tool call that this message is responding to.
* @return toolCallId
*/
@jakarta.annotation.Nonnull
@NotNull
@JsonProperty(JSON_PROPERTY_TOOL_CALL_ID)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public String getToolCallId() {
return toolCallId;
}
@JsonProperty(JSON_PROPERTY_TOOL_CALL_ID)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public void setToolCallId(String toolCallId) {
this.toolCallId = toolCallId;
}
/**
* Return true if this ChatCompletionRequestToolMessage object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ChatCompletionRequestToolMessage chatCompletionRequestToolMessage = (ChatCompletionRequestToolMessage) o;
return Objects.equals(this.role, chatCompletionRequestToolMessage.role) &&
Objects.equals(this.content, chatCompletionRequestToolMessage.content) &&
Objects.equals(this.toolCallId, chatCompletionRequestToolMessage.toolCallId);
}
@Override
public int hashCode() {
return Objects.hash(role, content, toolCallId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ChatCompletionRequestToolMessage {\n");
sb.append(" role: ").append(toIndentedString(role)).append("\n");
sb.append(" content: ").append(toIndentedString(content)).append("\n");
sb.append(" toolCallId: ").append(toIndentedString(toolCallId)).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 ");
}
}