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

ee.carlrobert.llm.client.anthropic.completion.ClaudeCompletionErrorDetails 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.JsonIgnoreProperties;
import ee.carlrobert.llm.client.openai.completion.ErrorDetails;

@JsonIgnoreProperties(ignoreUnknown = true)
public class ClaudeCompletionErrorDetails {

  private String type;
  private ErrorDetails error;

  public String getType() {
    return type;
  }

  public void setType(String type) {
    this.type = type;
  }

  public ErrorDetails getError() {
    return error;
  }

  public void setError(ErrorDetails error) {
    this.error = error;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy