diff --git a/src/main/java/io/github/amithkoujalgi/ollama4j/core/models/OllamaAsyncResultCallback.java b/src/main/java/io/github/amithkoujalgi/ollama4j/core/models/OllamaAsyncResultCallback.java index b412f31..74b8c49 100644 --- a/src/main/java/io/github/amithkoujalgi/ollama4j/core/models/OllamaAsyncResultCallback.java +++ b/src/main/java/io/github/amithkoujalgi/ollama4j/core/models/OllamaAsyncResultCallback.java @@ -123,9 +123,9 @@ public class OllamaAsyncResultCallback extends Thread { } /** - * Returns the final response when the execution completes. Does not return intermediate results. + * Returns the final completion/response when the execution completes. Does not return intermediate results. * - * @return String - response text + * @return String completion/response text */ public String getResponse() { return result; diff --git a/src/main/java/io/github/amithkoujalgi/ollama4j/core/models/OllamaResult.java b/src/main/java/io/github/amithkoujalgi/ollama4j/core/models/OllamaResult.java index 831dd3d..1276f5f 100644 --- a/src/main/java/io/github/amithkoujalgi/ollama4j/core/models/OllamaResult.java +++ b/src/main/java/io/github/amithkoujalgi/ollama4j/core/models/OllamaResult.java @@ -13,9 +13,9 @@ import lombok.Getter; public class OllamaResult { /** * -- GETTER -- - * Get the response text + * Get the completion/response text * - * @return String - response text + * @return String completion/response text */ private final String response;