forked from Mirror/ollama4j
- Removed deprecated methods and unused imports from `OllamaAPI`. - Updated method signatures to improve clarity and consistency. - Refactored embedding request handling to utilize `OllamaEmbedRequestModel`. - Adjusted integration tests to reflect changes in method usage and removed obsolete tests. - Enhanced code readability by standardizing formatting and comments across various classes.
11 lines
230 B
Java
11 lines
230 B
Java
package io.github.ollama4j.models.request;
|
|
|
|
public abstract class Auth {
|
|
/**
|
|
* Get authentication header value.
|
|
*
|
|
* @return authentication header value
|
|
*/
|
|
public abstract String getAuthHeaderValue();
|
|
}
|