ee.carlrobert.llm.client.openai.completion.request.OpenAIChatCompletionStandardMessage 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;
public class OpenAIChatCompletionStandardMessage implements OpenAIChatCompletionMessage {
private final String role;
private final String content;
public OpenAIChatCompletionStandardMessage(String role, String content) {
this.role = role;
this.content = content;
}
public String getRole() {
return role;
}
public String getContent() {
return content;
}
}