From 384c2cf0412b8c43c37c058c1011a423f1672b01 Mon Sep 17 00:00:00 2001 From: Amith Koujalgi Date: Wed, 8 Nov 2023 14:28:37 +0530 Subject: [PATCH] added Javadocs --- .../io/github/amithkoujalgi/ollama4j/core/OllamaAPI.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/io/github/amithkoujalgi/ollama4j/core/OllamaAPI.java b/src/main/java/io/github/amithkoujalgi/ollama4j/core/OllamaAPI.java index bdde73e..ba46ac1 100644 --- a/src/main/java/io/github/amithkoujalgi/ollama4j/core/OllamaAPI.java +++ b/src/main/java/io/github/amithkoujalgi/ollama4j/core/OllamaAPI.java @@ -247,9 +247,9 @@ public class OllamaAPI { * Ask a question to a model running on Ollama server and get a callback handle that can be used to check for status and get the response from the model later. * This would be a async/non-blocking call. * - * @param ollamaModelType the ollama model type - * @param promptText the prompt text - * @return the ollama async result callback + * @param ollamaModelType the ollama model to ask the question to + * @param promptText the prompt/question text + * @return the ollama async result callback handle * @throws IOException */ public OllamaAsyncResultCallback askAsync(String ollamaModelType, String promptText) throws IOException {