This commit is contained in:
Amith Koujalgi
2023-10-27 12:06:44 +05:30
parent a3fa018fcc
commit e7351359a3
9 changed files with 44 additions and 21 deletions

View File

@@ -1,4 +1,4 @@
package org.ollama4j;
package io.github.amithkoujalgi.ollama4j;
public class Main {
public static void main(String[] args) throws Exception {

View File

@@ -1,7 +1,6 @@
package org.ollama4j;
package io.github.amithkoujalgi.ollama4j;
import com.google.gson.Gson;
import org.apache.hc.client5.http.HttpResponseException;
import org.apache.hc.client5.http.classic.methods.HttpPost;
import org.apache.hc.client5.http.impl.classic.CloseableHttpClient;
import org.apache.hc.client5.http.impl.classic.CloseableHttpResponse;

View File

@@ -1,4 +1,4 @@
package org.ollama4j;
package io.github.amithkoujalgi.ollama4j;
import com.google.gson.Gson;

View File

@@ -1,4 +1,4 @@
package org.ollama4j;
package io.github.amithkoujalgi.ollama4j;
public class OllamaBaseException extends Exception {

View File

@@ -1,4 +1,4 @@
package org.ollama4j;
package io.github.amithkoujalgi.ollama4j;
public enum OllamaModel {
LLAMA2("llama2"), MISTRAL("mistral"), MEDLLAMA2("medllama2");

View File

@@ -1,4 +1,4 @@
package org.ollama4j;
package io.github.amithkoujalgi.ollama4j;
import com.google.gson.Gson;

View File

@@ -1,4 +1,4 @@
package org.ollama4j;
package io.github.amithkoujalgi.ollama4j;
import java.util.List;