All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ee.carlrobert.llm.client.you.completion.YouCompletionRequestMessage Maven / Gradle / Ivy

There is a newer version: 0.8.28
Show newest version
package ee.carlrobert.llm.client.you.completion;

public class YouCompletionRequestMessage {

  private final String question;
  private final String answer;

  public YouCompletionRequestMessage(String question, String answer) {
    this.question = question;
    this.answer = answer;
  }

  public String getQuestion() {
    return question;
  }

  public String getAnswer() {
    return answer;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy