Updated readme

This commit is contained in:
Amith Koujalgi 2023-11-12 23:06:06 +05:30
parent 7933154462
commit 4f70d1ee80

View File

@ -154,7 +154,7 @@ Response:
```java ```java
public class Main { public class Main {
public static void main(String[] args) throws Exception { public static void main(String[] args) {
String host = "http://localhost:11434/"; String host = "http://localhost:11434/";
OllamaAPI ollamaAPI = new OllamaAPI(host); OllamaAPI ollamaAPI = new OllamaAPI(host);
ollamaAPI.createModel("mycustommodel", "/path/to/modelfile/on/ollama-server"); ollamaAPI.createModel("mycustommodel", "/path/to/modelfile/on/ollama-server");
@ -166,7 +166,7 @@ public class Main {
```java ```java
public class Main { public class Main {
public static void main(String[] args) throws Exception { public static void main(String[] args) {
String host = "http://localhost:11434/"; String host = "http://localhost:11434/";
OllamaAPI ollamaAPI = new OllamaAPI(host); OllamaAPI ollamaAPI = new OllamaAPI(host);
ollamaAPI.setVerbose(false); ollamaAPI.setVerbose(false);
@ -179,12 +179,11 @@ public class Main {
```java ```java
public class Main { public class Main {
public static void main(String[] args) throws Exception { public static void main(String[] args) {
String host = "http://localhost:11434/"; String host = "http://localhost:11434/";
OllamaAPI ollamaAPI = new OllamaAPI(host); OllamaAPI ollamaAPI = new OllamaAPI(host);
ollamaAPI.setVerbose(true); List<Double> embeddings = ollamaAPI.generateEmbeddings(OllamaModelType.LLAMA2, "Here is an article about llamas...");
List<Double> doubleList = ollamaAPI.generateEmbeddings(OllamaModelType.LLAMA2, "Here is an article about llamas..."); embeddings.forEach(System.out::println);
doubleList.forEach(System.out::println);
} }
} }
``` ```
@ -236,7 +235,7 @@ You'd then get a response from the model:
```java ```java
public class Main { public class Main {
public static void main(String[] args) throws Exception { public static void main(String[] args) {
String host = "http://localhost:11434/"; String host = "http://localhost:11434/";
OllamaAPI ollamaAPI = new OllamaAPI(host); OllamaAPI ollamaAPI = new OllamaAPI(host);
@ -269,7 +268,7 @@ You'd then get a response from the model:
```java ```java
public class Main { public class Main {
public static void main(String[] args) throws Exception { public static void main(String[] args) {
String host = "http://localhost:11434/"; String host = "http://localhost:11434/";
OllamaAPI ollamaAPI = new OllamaAPI(host); OllamaAPI ollamaAPI = new OllamaAPI(host);
@ -297,7 +296,7 @@ GROUP BY customers.name;
```java ```java
public class Main { public class Main {
public static void main(String[] args) throws Exception { public static void main(String[] args) {
String host = "http://localhost:11434/"; String host = "http://localhost:11434/";
OllamaAPI ollamaAPI = new OllamaAPI(host); OllamaAPI ollamaAPI = new OllamaAPI(host);