ee.carlrobert.llm.client.anthropic.completion.ClaudeMessageContent 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.anthropic.completion;
import com.fasterxml.jackson.annotation.JsonSubTypes;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
@JsonTypeInfo(
use = JsonTypeInfo.Id.NAME,
property = "type")
@JsonSubTypes({
@JsonSubTypes.Type(value = ClaudeMessageTextContent.class, name = "text"),
@JsonSubTypes.Type(value = ClaudeMessageImageContent.class, name = "image")})
public abstract class ClaudeMessageContent {
}