Ollama4j
A Java library (wrapper/binding) for Ollama server.
Loading...
Searching...
No Matches
io.github.ollama4j.OllamaAPI Class Reference

Public Member Functions

 OllamaAPI ()
 
 OllamaAPI (String host)
 
void setBasicAuth (String username, String password)
 
boolean ping ()
 
ModelsProcessResponse ps () throws IOException, InterruptedException, OllamaBaseException
 
List< ModellistModels () throws OllamaBaseException, IOException, InterruptedException, URISyntaxException
 
List< LibraryModellistModelsFromLibrary () throws OllamaBaseException, IOException, InterruptedException, URISyntaxException
 
LibraryModelDetail getLibraryModelDetails (LibraryModel libraryModel) throws OllamaBaseException, IOException, InterruptedException, URISyntaxException
 
LibraryModelTag findModelTagFromLibrary (String modelName, String tag) throws OllamaBaseException, IOException, URISyntaxException, InterruptedException
 
void pullModel (String modelName) throws OllamaBaseException, IOException, URISyntaxException, InterruptedException
 
void pullModel (LibraryModelTag libraryModelTag) throws OllamaBaseException, IOException, URISyntaxException, InterruptedException
 
ModelDetail getModelDetails (String modelName) throws IOException, OllamaBaseException, InterruptedException, URISyntaxException
 
void createModelWithFilePath (String modelName, String modelFilePath) throws IOException, InterruptedException, OllamaBaseException, URISyntaxException
 
void createModelWithModelFileContents (String modelName, String modelFileContents) throws IOException, InterruptedException, OllamaBaseException, URISyntaxException
 
void deleteModel (String modelName, boolean ignoreIfNotPresent) throws IOException, InterruptedException, OllamaBaseException, URISyntaxException
 
List< Double > generateEmbeddings (String model, String prompt) throws IOException, InterruptedException, OllamaBaseException
 
List< Double > generateEmbeddings (OllamaEmbeddingsRequestModel modelRequest) throws IOException, InterruptedException, OllamaBaseException
 
OllamaEmbedResponseModel embed (String model, List< String > inputs) throws IOException, InterruptedException, OllamaBaseException
 
OllamaEmbedResponseModel embed (OllamaEmbedRequestModel modelRequest) throws IOException, InterruptedException, OllamaBaseException
 
OllamaResult generate (String model, String prompt, boolean raw, Options options, OllamaStreamHandler streamHandler) throws OllamaBaseException, IOException, InterruptedException
 
OllamaResult generate (String model, String prompt, boolean raw, Options options) throws OllamaBaseException, IOException, InterruptedException
 
OllamaToolsResult generateWithTools (String model, String prompt, Options options) throws OllamaBaseException, IOException, InterruptedException, ToolInvocationException
 
OllamaAsyncResultStreamer generateAsync (String model, String prompt, boolean raw)
 
OllamaResult generateWithImageFiles (String model, String prompt, List< File > imageFiles, Options options, OllamaStreamHandler streamHandler) throws OllamaBaseException, IOException, InterruptedException
 
OllamaResult generateWithImageFiles (String model, String prompt, List< File > imageFiles, Options options) throws OllamaBaseException, IOException, InterruptedException
 
OllamaResult generateWithImageURLs (String model, String prompt, List< String > imageURLs, Options options, OllamaStreamHandler streamHandler) throws OllamaBaseException, IOException, InterruptedException, URISyntaxException
 
OllamaResult generateWithImageURLs (String model, String prompt, List< String > imageURLs, Options options) throws OllamaBaseException, IOException, InterruptedException, URISyntaxException
 
OllamaChatResult chat (String model, List< OllamaChatMessage > messages) throws OllamaBaseException, IOException, InterruptedException
 
OllamaChatResult chat (OllamaChatRequest request) throws OllamaBaseException, IOException, InterruptedException
 
OllamaChatResult chat (OllamaChatRequest request, OllamaStreamHandler streamHandler) throws OllamaBaseException, IOException, InterruptedException
 
void registerTool (Tools.ToolSpecification toolSpecification)
 
OllamaChatMessageRole addCustomRole (String roleName)
 
List< OllamaChatMessageRolelistRoles ()
 
OllamaChatMessageRole getRole (String roleName) throws RoleNotFoundException
 

Detailed Description

The base Ollama API class.

Definition at line 46 of file OllamaAPI.java.

Constructor & Destructor Documentation

◆ OllamaAPI() [1/2]

io.github.ollama4j.OllamaAPI.OllamaAPI ( )

Instantiates the Ollama API with default Ollama host: http://localhost:11434

Definition at line 69 of file OllamaAPI.java.

◆ OllamaAPI() [2/2]

io.github.ollama4j.OllamaAPI.OllamaAPI ( String host)

Instantiates the Ollama API with specified Ollama host address.

Parameters
hostthe host address of Ollama server

Definition at line 78 of file OllamaAPI.java.

Member Function Documentation

◆ addCustomRole()

OllamaChatMessageRole io.github.ollama4j.OllamaAPI.addCustomRole ( String roleName)

Adds a custom role.

Parameters
roleNamethe name of the custom role to be added
Returns
the newly created OllamaChatMessageRole

Definition at line 790 of file OllamaAPI.java.

◆ chat() [1/3]

OllamaChatResult io.github.ollama4j.OllamaAPI.chat ( OllamaChatRequest request) throws OllamaBaseException, IOException, InterruptedException

Ask a question to a model using an OllamaChatRequest. This can be constructed using an OllamaChatRequestBuilder.

Hint: the OllamaChatRequestModel#getStream() property is not implemented.

Parameters
requestrequest object to be sent to the server
Returns
OllamaChatResult
Exceptions
OllamaBaseExceptionany response code than 200 has been returned
IOExceptionin case the responseStream can not be read
InterruptedExceptionin case the server is not reachable or network issues happen
OllamaBaseExceptionif the response indicates an error status
IOExceptionif an I/O error occurs during the HTTP request
InterruptedExceptionif the operation is interrupted

Definition at line 749 of file OllamaAPI.java.

◆ chat() [2/3]

OllamaChatResult io.github.ollama4j.OllamaAPI.chat ( OllamaChatRequest request,
OllamaStreamHandler streamHandler ) throws OllamaBaseException, IOException, InterruptedException

Ask a question to a model using an OllamaChatRequest. This can be constructed using an OllamaChatRequestBuilder.

Hint: the OllamaChatRequestModel#getStream() property is not implemented.

Parameters
requestrequest object to be sent to the server
streamHandlercallback handler to handle the last message from stream (caution: all previous messages from stream will be concatenated)
Returns
OllamaChatResult
Exceptions
OllamaBaseExceptionany response code than 200 has been returned
IOExceptionin case the responseStream can not be read
InterruptedExceptionin case the server is not reachable or network issues happen
OllamaBaseExceptionif the response indicates an error status
IOExceptionif an I/O error occurs during the HTTP request
InterruptedExceptionif the operation is interrupted

Definition at line 768 of file OllamaAPI.java.

◆ chat() [3/3]

OllamaChatResult io.github.ollama4j.OllamaAPI.chat ( String model,
List< OllamaChatMessage > messages ) throws OllamaBaseException, IOException, InterruptedException

Ask a question to a model based on a given message stack (i.e. a chat history). Creates a synchronous call to the api 'api/chat'.

Parameters
modelthe ollama model to ask the question to
messageschat history / message stack to send to the model
Returns
OllamaChatResult containing the api response and the message history including the newly aqcuired assistant response.
Exceptions
OllamaBaseExceptionany response code than 200 has been returned
IOExceptionin case the responseStream can not be read
InterruptedExceptionin case the server is not reachable or network issues happen
OllamaBaseExceptionif the response indicates an error status
IOExceptionif an I/O error occurs during the HTTP request
InterruptedExceptionif the operation is interrupted

Definition at line 730 of file OllamaAPI.java.

◆ createModelWithFilePath()

void io.github.ollama4j.OllamaAPI.createModelWithFilePath ( String modelName,
String modelFilePath ) throws IOException, InterruptedException, OllamaBaseException, URISyntaxException

Create a custom model from a model file. Read more about custom model file creation here.

Parameters
modelNamethe name of the custom model to be created.
modelFilePaththe path to model file that exists on the Ollama server.
Exceptions
OllamaBaseExceptionif the response indicates an error status
IOExceptionif an I/O error occurs during the HTTP request
InterruptedExceptionif the operation is interrupted
URISyntaxExceptionif the URI for the request is malformed

Definition at line 383 of file OllamaAPI.java.

◆ createModelWithModelFileContents()

void io.github.ollama4j.OllamaAPI.createModelWithModelFileContents ( String modelName,
String modelFileContents ) throws IOException, InterruptedException, OllamaBaseException, URISyntaxException

Create a custom model from a model file. Read more about custom model file creation here.

Parameters
modelNamethe name of the custom model to be created.
modelFileContentsthe path to model file that exists on the Ollama server.
Exceptions
OllamaBaseExceptionif the response indicates an error status
IOExceptionif an I/O error occurs during the HTTP request
InterruptedExceptionif the operation is interrupted
URISyntaxExceptionif the URI for the request is malformed

Definition at line 415 of file OllamaAPI.java.

◆ deleteModel()

void io.github.ollama4j.OllamaAPI.deleteModel ( String modelName,
boolean ignoreIfNotPresent ) throws IOException, InterruptedException, OllamaBaseException, URISyntaxException

Delete a model from Ollama server.

Parameters
modelNamethe name of the model to be deleted.
ignoreIfNotPresentignore errors if the specified model is not present on Ollama server.
Exceptions
OllamaBaseExceptionif the response indicates an error status
IOExceptionif an I/O error occurs during the HTTP request
InterruptedExceptionif the operation is interrupted
URISyntaxExceptionif the URI for the request is malformed

Definition at line 444 of file OllamaAPI.java.

◆ embed() [1/2]

OllamaEmbedResponseModel io.github.ollama4j.OllamaAPI.embed ( OllamaEmbedRequestModel modelRequest) throws IOException, InterruptedException, OllamaBaseException

Generate embeddings using a OllamaEmbedRequestModel.

Parameters
modelRequestrequest for '/api/embed' endpoint
Returns
embeddings
Exceptions
OllamaBaseExceptionif the response indicates an error status
IOExceptionif an I/O error occurs during the HTTP request
InterruptedExceptionif the operation is interrupted

Definition at line 527 of file OllamaAPI.java.

◆ embed() [2/2]

OllamaEmbedResponseModel io.github.ollama4j.OllamaAPI.embed ( String model,
List< String > inputs ) throws IOException, InterruptedException, OllamaBaseException

Generate embeddings for a given text from a model

Parameters
modelname of model to generate embeddings from
inputstext/s to generate embeddings for
Returns
embeddings
Exceptions
OllamaBaseExceptionif the response indicates an error status
IOExceptionif an I/O error occurs during the HTTP request
InterruptedExceptionif the operation is interrupted

Definition at line 514 of file OllamaAPI.java.

◆ findModelTagFromLibrary()

LibraryModelTag io.github.ollama4j.OllamaAPI.findModelTagFromLibrary ( String modelName,
String tag ) throws OllamaBaseException, IOException, URISyntaxException, InterruptedException

Finds a specific model using model name and tag from Ollama library.

This method retrieves the model from the Ollama library by its name, then fetches its tags. It searches through the tags of the model to find one that matches the specified tag name. If the model or the tag is not found, it throws a NoSuchElementException.

Parameters
modelNameThe name of the model to search for in the library.
tagThe tag name to search for within the specified model.
Returns
The LibraryModelTag associated with the specified model and tag.
Exceptions
OllamaBaseExceptionIf there is a problem with the Ollama library operations.
IOExceptionIf an I/O error occurs during the operation.
URISyntaxExceptionIf there is an error with the URI syntax.
InterruptedExceptionIf the operation is interrupted.
NoSuchElementExceptionIf the model or the tag is not found.

Definition at line 289 of file OllamaAPI.java.

◆ generate() [1/2]

OllamaResult io.github.ollama4j.OllamaAPI.generate ( String model,
String prompt,
boolean raw,
Options options ) throws OllamaBaseException, IOException, InterruptedException

Generates response using the specified AI model and prompt (in blocking mode).

Uses generate(String, String, boolean, Options, OllamaStreamHandler)

Parameters
modelThe name or identifier of the AI model to use for generating the response.
promptThe input text or prompt to provide to the AI model.
rawIn some cases, you may wish to bypass the templating system and provide a full prompt. In this case, you can use the raw parameter to disable templating. Also note that raw mode will not return a context.
optionsAdditional options or configurations to use when generating the response.
Returns
OllamaResult
Exceptions
OllamaBaseExceptionif the response indicates an error status
IOExceptionif an I/O error occurs during the HTTP request
InterruptedExceptionif the operation is interrupted

Definition at line 581 of file OllamaAPI.java.

◆ generate() [2/2]

OllamaResult io.github.ollama4j.OllamaAPI.generate ( String model,
String prompt,
boolean raw,
Options options,
OllamaStreamHandler streamHandler ) throws OllamaBaseException, IOException, InterruptedException

Generate response for a question to a model running on Ollama server. This is a sync/blocking call.

Parameters
modelthe ollama model to ask the question to
promptthe prompt/question text
optionsthe Options object - More details on the options
streamHandleroptional callback consumer that will be applied every time a streamed response is received. If not set, the stream parameter of the request is set to false.
Returns
OllamaResult that includes response text and time taken for response
Exceptions
OllamaBaseExceptionif the response indicates an error status
IOExceptionif an I/O error occurs during the HTTP request
InterruptedExceptionif the operation is interrupted

Definition at line 560 of file OllamaAPI.java.

◆ generateAsync()

OllamaAsyncResultStreamer io.github.ollama4j.OllamaAPI.generateAsync ( String model,
String prompt,
boolean raw )

Generate response for a question to a model running on Ollama server and get a callback handle that can be used to check for status and get the response from the model later. This would be an async/non-blocking call.

Parameters
modelthe ollama model to ask the question to
promptthe prompt/question text
Returns
the ollama async result callback handle

Definition at line 627 of file OllamaAPI.java.

◆ generateEmbeddings() [1/2]

List< Double > io.github.ollama4j.OllamaAPI.generateEmbeddings ( OllamaEmbeddingsRequestModel modelRequest) throws IOException, InterruptedException, OllamaBaseException

Generate embeddings using a OllamaEmbeddingsRequestModel.

Parameters
modelRequestrequest for '/api/embeddings' endpoint
Returns
embeddings
Exceptions
OllamaBaseExceptionif the response indicates an error status
IOExceptionif an I/O error occurs during the HTTP request
InterruptedExceptionif the operation is interrupted
Deprecated
Use embed(OllamaEmbedRequestModel) instead.

Definition at line 487 of file OllamaAPI.java.

◆ generateEmbeddings() [2/2]

List< Double > io.github.ollama4j.OllamaAPI.generateEmbeddings ( String model,
String prompt ) throws IOException, InterruptedException, OllamaBaseException

Generate embeddings for a given text from a model

Parameters
modelname of model to generate embeddings from
prompttext to generate embeddings for
Returns
embeddings
Exceptions
OllamaBaseExceptionif the response indicates an error status
IOExceptionif an I/O error occurs during the HTTP request
InterruptedExceptionif the operation is interrupted
Deprecated
Use embed(String, List) instead.

Definition at line 472 of file OllamaAPI.java.

◆ generateWithImageFiles() [1/2]

OllamaResult io.github.ollama4j.OllamaAPI.generateWithImageFiles ( String model,
String prompt,
List< File > imageFiles,
Options options ) throws OllamaBaseException, IOException, InterruptedException

Convenience method to call Ollama API without streaming responses.

Uses generateWithImageFiles(String, String, List, Options, OllamaStreamHandler)

Exceptions
OllamaBaseExceptionif the response indicates an error status
IOExceptionif an I/O error occurs during the HTTP request
InterruptedExceptionif the operation is interrupted

Definition at line 671 of file OllamaAPI.java.

◆ generateWithImageFiles() [2/2]

OllamaResult io.github.ollama4j.OllamaAPI.generateWithImageFiles ( String model,
String prompt,
List< File > imageFiles,
Options options,
OllamaStreamHandler streamHandler ) throws OllamaBaseException, IOException, InterruptedException

With one or more image files, ask a question to a model running on Ollama server. This is a sync/blocking call.

Parameters
modelthe ollama model to ask the question to
promptthe prompt/question text
imageFilesthe list of image files to use for the question
optionsthe Options object - More details on the options
streamHandleroptional callback consumer that will be applied every time a streamed response is received. If not set, the stream parameter of the request is set to false.
Returns
OllamaResult that includes response text and time taken for response
Exceptions
OllamaBaseExceptionif the response indicates an error status
IOExceptionif an I/O error occurs during the HTTP request
InterruptedExceptionif the operation is interrupted

Definition at line 652 of file OllamaAPI.java.

◆ generateWithImageURLs() [1/2]

OllamaResult io.github.ollama4j.OllamaAPI.generateWithImageURLs ( String model,
String prompt,
List< String > imageURLs,
Options options ) throws OllamaBaseException, IOException, InterruptedException, URISyntaxException

Convenience method to call Ollama API without streaming responses.

Uses generateWithImageURLs(String, String, List, Options, OllamaStreamHandler)

Exceptions
OllamaBaseExceptionif the response indicates an error status
IOExceptionif an I/O error occurs during the HTTP request
InterruptedExceptionif the operation is interrupted
URISyntaxExceptionif the URI for the request is malformed

Definition at line 712 of file OllamaAPI.java.

◆ generateWithImageURLs() [2/2]

OllamaResult io.github.ollama4j.OllamaAPI.generateWithImageURLs ( String model,
String prompt,
List< String > imageURLs,
Options options,
OllamaStreamHandler streamHandler ) throws OllamaBaseException, IOException, InterruptedException, URISyntaxException

With one or more image URLs, ask a question to a model running on Ollama server. This is a sync/blocking call.

Parameters
modelthe ollama model to ask the question to
promptthe prompt/question text
imageURLsthe list of image URLs to use for the question
optionsthe Options object - More details on the options
streamHandleroptional callback consumer that will be applied every time a streamed response is received. If not set, the stream parameter of the request is set to false.
Returns
OllamaResult that includes response text and time taken for response
Exceptions
OllamaBaseExceptionif the response indicates an error status
IOExceptionif an I/O error occurs during the HTTP request
InterruptedExceptionif the operation is interrupted
URISyntaxExceptionif the URI for the request is malformed

Definition at line 692 of file OllamaAPI.java.

◆ generateWithTools()

OllamaToolsResult io.github.ollama4j.OllamaAPI.generateWithTools ( String model,
String prompt,
Options options ) throws OllamaBaseException, IOException, InterruptedException, ToolInvocationException

Generates response using the specified AI model and prompt (in blocking mode), and then invokes a set of tools on the generated response.

Parameters
modelThe name or identifier of the AI model to use for generating the response.
promptThe input text or prompt to provide to the AI model.
optionsAdditional options or configurations to use when generating the response.
Returns
OllamaToolsResult An OllamaToolsResult object containing the response from the AI model and the results of invoking the tools on that output.
Exceptions
OllamaBaseExceptionif the response indicates an error status
IOExceptionif an I/O error occurs during the HTTP request
InterruptedExceptionif the operation is interrupted

Definition at line 597 of file OllamaAPI.java.

◆ getLibraryModelDetails()

LibraryModelDetail io.github.ollama4j.OllamaAPI.getLibraryModelDetails ( LibraryModel libraryModel) throws OllamaBaseException, IOException, InterruptedException, URISyntaxException

Fetches the tags associated with a specific model from Ollama library. This method fetches the available model tags directly from Ollama library model page, including model tag name, size and time when model was last updated into a list of LibraryModelTag objects.

Parameters
libraryModelthe LibraryModel object which contains the name of the library model for which the tags need to be fetched.
Returns
a list of LibraryModelTag objects containing the extracted tags and their associated metadata.
Exceptions
OllamaBaseExceptionif the HTTP response status code indicates an error (i.e., not 200 OK), or if there is any other issue during the request or response processing.
IOExceptionif an input/output exception occurs during the HTTP request or response handling.
InterruptedExceptionif the thread is interrupted while waiting for the HTTP response.
URISyntaxExceptionif the URI format is incorrect or invalid.

Definition at line 236 of file OllamaAPI.java.

◆ getModelDetails()

ModelDetail io.github.ollama4j.OllamaAPI.getModelDetails ( String modelName) throws IOException, OllamaBaseException, InterruptedException, URISyntaxException

Gets model details from the Ollama server.

Parameters
modelNamethe model
Returns
the model details
Exceptions
OllamaBaseExceptionif the response indicates an error status
IOExceptionif an I/O error occurs during the HTTP request
InterruptedExceptionif the operation is interrupted
URISyntaxExceptionif the URI for the request is malformed

Definition at line 357 of file OllamaAPI.java.

◆ getRole()

OllamaChatMessageRole io.github.ollama4j.OllamaAPI.getRole ( String roleName) throws RoleNotFoundException

Retrieves a specific role by name.

Parameters
roleNamethe name of the role to retrieve
Returns
the OllamaChatMessageRole associated with the given name
Exceptions
RoleNotFoundExceptionif the role with the specified name does not exist

Definition at line 810 of file OllamaAPI.java.

◆ listModels()

List< Model > io.github.ollama4j.OllamaAPI.listModels ( ) throws OllamaBaseException, IOException, InterruptedException, URISyntaxException

Lists available models from the Ollama server.

Returns
a list of models available on the server
Exceptions
OllamaBaseExceptionif the response indicates an error status
IOExceptionif an I/O error occurs during the HTTP request
InterruptedExceptionif the operation is interrupted
URISyntaxExceptionif the URI for the request is malformed

Definition at line 159 of file OllamaAPI.java.

◆ listModelsFromLibrary()

List< LibraryModel > io.github.ollama4j.OllamaAPI.listModelsFromLibrary ( ) throws OllamaBaseException, IOException, InterruptedException, URISyntaxException

Retrieves a list of models from the Ollama library. This method fetches the available models directly from Ollama library page, including model details such as the name, pull count, popular tags, tag count, and the time when model was updated.

Returns
A list of LibraryModel objects representing the models available in the Ollama library.
Exceptions
OllamaBaseExceptionIf the HTTP request fails or the response is not successful (non-200 status code).
IOExceptionIf an I/O error occurs during the HTTP request or response processing.
InterruptedExceptionIf the thread executing the request is interrupted.
URISyntaxExceptionIf there is an error creating the URI for the HTTP request.

Definition at line 183 of file OllamaAPI.java.

◆ listRoles()

List< OllamaChatMessageRole > io.github.ollama4j.OllamaAPI.listRoles ( )

Lists all available roles.

Returns
a list of available OllamaChatMessageRole objects

Definition at line 799 of file OllamaAPI.java.

◆ ping()

boolean io.github.ollama4j.OllamaAPI.ping ( )

API to check the reachability of Ollama server.

Returns
true if the server is reachable, false otherwise.

Definition at line 101 of file OllamaAPI.java.

◆ ps()

ModelsProcessResponse io.github.ollama4j.OllamaAPI.ps ( ) throws IOException, InterruptedException, OllamaBaseException

Provides a list of running models and details about each model currently loaded into memory.

Returns
ModelsProcessResponse containing details about the running models
Exceptions
IOExceptionif an I/O error occurs during the HTTP request
InterruptedExceptionif the operation is interrupted
OllamaBaseExceptionif the response indicates an error status

Definition at line 130 of file OllamaAPI.java.

◆ pullModel() [1/2]

void io.github.ollama4j.OllamaAPI.pullModel ( LibraryModelTag libraryModelTag) throws OllamaBaseException, IOException, URISyntaxException, InterruptedException

Pulls a model using the specified Ollama library model tag. The model is identified by a name and a tag, which are combined into a single identifier in the format "name:tag" to pull the corresponding model.

Parameters
libraryModelTagthe LibraryModelTag object containing the name and tag of the model to be pulled.
Exceptions
OllamaBaseExceptionif the response indicates an error status
IOExceptionif an I/O error occurs during the HTTP request
InterruptedExceptionif the operation is interrupted
URISyntaxExceptionif the URI for the request is malformed

Definition at line 342 of file OllamaAPI.java.

◆ pullModel() [2/2]

void io.github.ollama4j.OllamaAPI.pullModel ( String modelName) throws OllamaBaseException, IOException, URISyntaxException, InterruptedException

Pull a model on the Ollama server from the list of available models.

Parameters
modelNamethe name of the model
Exceptions
OllamaBaseExceptionif the response indicates an error status
IOExceptionif an I/O error occurs during the HTTP request
InterruptedExceptionif the operation is interrupted
URISyntaxExceptionif the URI for the request is malformed

Definition at line 307 of file OllamaAPI.java.

◆ registerTool()

void io.github.ollama4j.OllamaAPI.registerTool ( Tools.ToolSpecification toolSpecification)

Definition at line 780 of file OllamaAPI.java.

◆ setBasicAuth()

void io.github.ollama4j.OllamaAPI.setBasicAuth ( String username,
String password )

Set basic authentication for accessing Ollama server that's behind a reverse-proxy/gateway.

Parameters
usernamethe username
passwordthe password

Definition at line 92 of file OllamaAPI.java.


The documentation for this class was generated from the following file: