Ollama4j
A Java library (wrapper/binding) for Ollama server.
Loading...
Searching...
No Matches
Constants.java
Go to the documentation of this file.
1package io.github.ollama4j.utils;
2
3public final class Constants {
4 public static final class HttpConstants {
5 private HttpConstants() {
6 }
7
8 public static final String APPLICATION_JSON = "application/json";
9 public static final String APPLICATION_XML = "application/xml";
10 public static final String TEXT_PLAIN = "text/plain";
11 public static final String HEADER_KEY_CONTENT_TYPE = "Content-Type";
12 public static final String HEADER_KEY_ACCEPT = "Accept";
13 }
14}