Added generateEmbeddings API

This commit is contained in:
Amith Koujalgi
2023-11-12 21:14:54 +05:30
parent e78609727e
commit 7933154462
3 changed files with 21 additions and 5 deletions

View File

@@ -175,6 +175,20 @@ public class Main {
}
```
#### Generate embeddings:
```java
public class Main {
public static void main(String[] args) throws Exception {
String host = "http://localhost:11434/";
OllamaAPI ollamaAPI = new OllamaAPI(host);
ollamaAPI.setVerbose(true);
List<Double> doubleList = ollamaAPI.generateEmbeddings(OllamaModelType.LLAMA2, "Here is an article about llamas...");
doubleList.forEach(System.out::println);
}
}
```
#### Ask a question to the model with ollama4j
##### Using sync API: