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

ee.carlrobert.llm.client.llama.completion.LlamaCompletionResponse Maven / Gradle / Ivy

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

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

@JsonIgnoreProperties(ignoreUnknown = true)
public class LlamaCompletionResponse {

  private String content;
  private boolean stop;

  public String getContent() {
    return content;
  }

  public void setContent(String content) {
    this.content = content;
  }

  public boolean isStop() {
    return stop;
  }

  public void setStop(boolean stop) {
    this.stop = stop;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy