ee.carlrobert.llm.client.openai.completion.request.OpenAIMessageTextContent 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.openai.completion.request;
import com.fasterxml.jackson.annotation.JsonTypeName;
@JsonTypeName("text")
public class OpenAIMessageTextContent extends OpenAIMessageContent {
private String text;
public OpenAIMessageTextContent() {
}
public OpenAIMessageTextContent(String text) {
this.text = text;
}
public String getText() {
return text;
}
public void setText(String text) {
this.text = text;
}
}