ee.carlrobert.llm.client.ollama.completion.response.OllamaResponseFormat 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.ollama.completion.response;
import com.fasterxml.jackson.annotation.JsonValue;
public enum OllamaResponseFormat {
JSON("json");
private final String value;
OllamaResponseFormat(String value) {
this.value = value;
}
@JsonValue
public String getValue() {
return value;
}
}