Fixed javadoc

This commit is contained in:
Amith Koujalgi 2023-12-30 14:17:36 +05:30
parent c8d7cbbc2c
commit 14d18d731f
2 changed files with 4 additions and 4 deletions

View File

@ -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() { public String getResponse() {
return result; return result;

View File

@ -13,9 +13,9 @@ import lombok.Getter;
public class OllamaResult { public class OllamaResult {
/** /**
* -- GETTER -- * -- GETTER --
* Get the response text * Get the completion/response text
* *
* @return String - response text * @return String completion/response text
*/ */
private final String response; private final String response;