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

ee.carlrobert.llm.client.anthropic.completion.ClaudeMessageTextContent Maven / Gradle / Ivy

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

import com.fasterxml.jackson.annotation.JsonTypeName;

@JsonTypeName("text")
public class ClaudeMessageTextContent extends ClaudeMessageContent {

  private String text;

  public ClaudeMessageTextContent() {
  }

  public ClaudeMessageTextContent(String text) {
    this.text = text;
  }

  public String getText() {
    return text;
  }

  public void setText(String text) {
    this.text = text;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy