mirror of
https://github.com/amithkoujalgi/ollama4j.git
synced 2025-11-04 18:40:40 +01:00
- Replaced instances of `OllamaAPI` with `Ollama` across the codebase for consistency. - Updated example code snippets in documentation to reflect the new class name. - Enhanced metrics collection setup in the documentation. - Added integration tests for the new `Ollama` class to ensure functionality remains intact.
26 lines
594 B
Markdown
26 lines
594 B
Markdown
---
|
|
sidebar_position: 3
|
|
---
|
|
|
|
# Basic Auth
|
|
|
|
This API lets you set the basic authentication for the Ollama client. This would help in scenarios where
|
|
Ollama server would be setup behind a gateway/reverse proxy with basic auth.
|
|
|
|
After configuring basic authentication, all subsequent requests will include the Basic Auth header.
|
|
|
|
```java
|
|
import io.github.ollama4j.Ollama;
|
|
|
|
public class Main {
|
|
|
|
public static void main(String[] args) {
|
|
|
|
String host = "http://localhost:11434/";
|
|
|
|
Ollama ollama = new Ollama(host);
|
|
|
|
ollama.setBasicAuth("username", "password");
|
|
}
|
|
}
|
|
``` |